From 49915b11a5754676bf488fba7713bd1ebaf4c754 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 18 Jul 2023 12:17:45 -0700 Subject: [PATCH 1/4] Add ghx vert tests for kusuda and xing. --- model/simulationtests/ghx_vertical_kusuda.rb | 139 +++++++++++++++++++ model/simulationtests/ghx_vertical_xing.rb | 138 ++++++++++++++++++ 2 files changed, 277 insertions(+) create mode 100644 model/simulationtests/ghx_vertical_kusuda.rb create mode 100644 model/simulationtests/ghx_vertical_xing.rb diff --git a/model/simulationtests/ghx_vertical_kusuda.rb b/model/simulationtests/ghx_vertical_kusuda.rb new file mode 100644 index 000000000..9963c0531 --- /dev/null +++ b/model/simulationtests/ghx_vertical_kusuda.rb @@ -0,0 +1,139 @@ +# frozen_string_literal: true + +require 'openstudio' +require_relative 'lib/baseline_model' + +model = BaselineModel.new + +# No zones, just a LoadProfile:Plant + +# add design days to the model (Chicago) +model.add_design_days + +USE_PIPE_INDOOR = false + +# Add a hot water plant to supply the water to air heat pump +# This could be baked into HVAC templates in the future +condenserWaterPlant = OpenStudio::Model::PlantLoop.new(model) +condenserWaterPlant.setName('Condenser Water Plant') + +sizingPlant = condenserWaterPlant.sizingPlant() +sizingPlant.setLoopType('Heating') +sizingPlant.setDesignLoopExitTemperature(30.0) +sizingPlant.setLoopDesignTemperatureDifference(11.0) + +condenserWaterOutletNode = condenserWaterPlant.supplyOutletNode +condenserWaterInletNode = condenserWaterPlant.supplyInletNode + +pump = OpenStudio::Model::PumpVariableSpeed.new(model) +pump.addToNode(condenserWaterInletNode) + +hGroundHX1 = nil +if Gem::Version.new(OpenStudio.openStudioVersion) > Gem::Version.new('3.6.1') + kusudaAchenbach = OpenStudio::Model::SiteGroundTemperatureUndisturbedKusudaAchenbach.new(model) + kusudaAchenbach.setSoilThermalConductivity(0.692626) + kusudaAchenbach.setSoilDensity(920.0) + kusudaAchenbach.setSoilSpecificHeat(0.234700E+07 / 920.0) + kusudaAchenbach.setAverageSoilSurfaceTemperature(13.375) + kusudaAchenbach.setAverageAmplitudeofSurfaceTemperature(3.2) + kusudaAchenbach.setPhaseShiftofMinimumSurfaceTemperature(8.0) + hGroundHX1 = OpenStudio::Model::GroundHeatExchangerVertical.new(model, kusudaAchenbach) +else + hGroundHX1 = OpenStudio::Model::GroundHeatExchangerVertical.new(model) +end +condenserWaterPlant.addSupplyBranchForComponent(hGroundHX1) + +if USE_PIPE_INDOOR + pipe_mat = OpenStudio::Model::StandardOpaqueMaterial.new(model, 'Smooth', 3.00E-03, 45.31, 7833.0, 500.0) + pipe_mat.setThermalAbsorptance(OpenStudio::OptionalDouble.new(0.9)) + pipe_mat.setSolarAbsorptance(OpenStudio::OptionalDouble.new(0.5)) + pipe_mat.setVisibleAbsorptance(OpenStudio::OptionalDouble.new(0.5)) + pipe_const = OpenStudio::Model::Construction.new(model) + pipe_const.insertLayer(0, pipe_mat) + + pipe = OpenStudio::Model::PipeIndoor.new(model) + pipe.setAmbientTemperatureZone(zone) + pipe.setConstruction(pipe_const) + condenserWaterPlant.addSupplyBranchForComponent(pipe) + + pipe2 = OpenStudio::Model::PipeIndoor.new(model) + pipe2.setAmbientTemperatureZone(zone) + pipe2.setConstruction(pipe_const) + pipe2.addToNode(condenserWaterOutletNode) + + pipe3 = OpenStudio::Model::PipeIndoor.new(model) + pipe3.setAmbientTemperatureZone(zone) + pipe3.setConstruction(pipe_const) + pipe3.addToNode(condenserWaterPlant.demandInletNode) + + pipe4 = OpenStudio::Model::PipeIndoor.new(model) + pipe4.setAmbientTemperatureZone(zone) + pipe4.setConstruction(pipe_const) + pipe4.addToNode(condenserWaterPlant.demandOutletNode) + + pipe5 = OpenStudio::Model::PipeIndoor.new(model) + pipe5.setAmbientTemperatureZone(zone) + pipe5.setConstruction(pipe_const) + condenserWaterPlant.addDemandBranchForComponent(pipe5) +end + +## Make a condenser Water temperature schedule + +osTime = OpenStudio::Time.new(0, 24, 0, 0) + +condenserWaterTempSchedule = OpenStudio::Model::ScheduleRuleset.new(model) +condenserWaterTempSchedule.setName('Condenser Water Temperature') + +### Winter Design Day +condenserWaterTempScheduleWinter = OpenStudio::Model::ScheduleDay.new(model) +condenserWaterTempSchedule.setWinterDesignDaySchedule(condenserWaterTempScheduleWinter) +condenserWaterTempSchedule.winterDesignDaySchedule.setName('Condenser Water Temperature Winter Design Day') +condenserWaterTempSchedule.winterDesignDaySchedule.addValue(osTime, 24) + +### Summer Design Day +condenserWaterTempScheduleSummer = OpenStudio::Model::ScheduleDay.new(model) +condenserWaterTempSchedule.setSummerDesignDaySchedule(condenserWaterTempScheduleSummer) +condenserWaterTempSchedule.summerDesignDaySchedule.setName('Condenser Water Temperature Summer Design Day') +condenserWaterTempSchedule.summerDesignDaySchedule.addValue(osTime, 24) + +### All other days +condenserWaterTempSchedule.defaultDaySchedule.setName('Condenser Water Temperature Default') +condenserWaterTempSchedule.defaultDaySchedule.addValue(osTime, 24) + +condenserWaterSPM = OpenStudio::Model::SetpointManagerScheduled.new(model, condenserWaterTempSchedule) +condenserWaterSPM.addToNode(condenserWaterOutletNode) + +condenserWaterPlant.setMaximumLoopTemperature(80.0) +condenserWaterPlant.setMaximumLoopFlowRate(0.004) +condenserWaterPlant.setFluidType('PropyleneGlycol') +condenserWaterPlant.setGlycolConcentration(70) + +pump.setRatedFlowRate(0.004) +pump.setRatedPumpHead(5000.0) +pump.setRatedPowerConsumption(25.0) +pump.setFractionofMotorInefficienciestoFluidStream(0.0) +pump.setPumpControlType('Intermittent') + +# Load Profile +loadProfile = OpenStudio::Model::LoadProfilePlant.new(model) +loadProfile.setPeakFlowRate(0.004) + +flowFracSchedule = OpenStudio::Model::ScheduleConstant.new(model) +flowFracSchedule.setName('FlowFracSchedule') +flowFracSchedule.setValue(1.0) +loadProfile.setFlowRateFractionSchedule(flowFracSchedule) + +loadSchedule = OpenStudio::Model::ScheduleRuleset.new(model) +loadSchedule.setName('LoadSchedule') +loadSchedule.defaultDaySchedule.addValue(osTime, 2000.0) +loadSchedule_may_to_sept_rule = OpenStudio::Model::ScheduleRule.new(loadSchedule) +loadSchedule_may_to_sept_rule.setStartDate(OpenStudio::Date.new('May'.to_MonthOfYear, 1)) +loadSchedule_may_to_sept_rule.setEndDate(OpenStudio::Date.new('September'.to_MonthOfYear, 30)) +loadSchedule_may_to_sept_rule.daySchedule.addValue(osTime, -3000.0) +loadProfile.setLoadSchedule(loadSchedule) + +condenserWaterPlant.addDemandBranchForComponent(loadProfile) + +# save the OpenStudio model (.osm) +model.save_openstudio_osm({ 'osm_save_directory' => Dir.pwd, + 'osm_name' => 'in.osm' }) diff --git a/model/simulationtests/ghx_vertical_xing.rb b/model/simulationtests/ghx_vertical_xing.rb new file mode 100644 index 000000000..16090629d --- /dev/null +++ b/model/simulationtests/ghx_vertical_xing.rb @@ -0,0 +1,138 @@ +# frozen_string_literal: true + +require 'openstudio' +require_relative 'lib/baseline_model' + +model = BaselineModel.new + +# No zones, just a LoadProfile:Plant + +# add design days to the model (Chicago) +model.add_design_days + +USE_PIPE_INDOOR = false + +raise 'Cannot use XING on 3.5.1 and below' if Gem::Version.new(OpenStudio.openStudioVersion) <= Gem::Version.new('3.5.1') + +# Add a hot water plant to supply the water to air heat pump +# This could be baked into HVAC templates in the future +condenserWaterPlant = OpenStudio::Model::PlantLoop.new(model) +condenserWaterPlant.setName('Condenser Water Plant') + +sizingPlant = condenserWaterPlant.sizingPlant() +sizingPlant.setLoopType('Heating') +sizingPlant.setDesignLoopExitTemperature(30.0) +sizingPlant.setLoopDesignTemperatureDifference(11.0) + +condenserWaterOutletNode = condenserWaterPlant.supplyOutletNode +condenserWaterInletNode = condenserWaterPlant.supplyInletNode + +pump = OpenStudio::Model::PumpVariableSpeed.new(model) +pump.addToNode(condenserWaterInletNode) + +xing = OpenStudio::Model::SiteGroundTemperatureUndisturbedXing.new(model) +xing.setSoilThermalConductivity(1.08) +xing.setSoilDensity(962) +xing.setSoilSpecificHeat(2576) +xing.setAverageSoilSurfaceTemperature(11.1) +xing.setSoilSurfaceTemperatureAmplitude1(13.4) +xing.setSoilSurfaceTemperatureAmplitude2(0.7) +xing.setPhaseShiftofTemperatureAmplitude1(25) +xing.setPhaseShiftofTemperatureAmplitude2(30) +hGroundHX2 = OpenStudio::Model::GroundHeatExchangerVertical.new(model, xing) +condenserWaterPlant.addSupplyBranchForComponent(hGroundHX2) + +if USE_PIPE_INDOOR + pipe_mat = OpenStudio::Model::StandardOpaqueMaterial.new(model, 'Smooth', 3.00E-03, 45.31, 7833.0, 500.0) + pipe_mat.setThermalAbsorptance(OpenStudio::OptionalDouble.new(0.9)) + pipe_mat.setSolarAbsorptance(OpenStudio::OptionalDouble.new(0.5)) + pipe_mat.setVisibleAbsorptance(OpenStudio::OptionalDouble.new(0.5)) + pipe_const = OpenStudio::Model::Construction.new(model) + pipe_const.insertLayer(0, pipe_mat) + + pipe = OpenStudio::Model::PipeIndoor.new(model) + pipe.setAmbientTemperatureZone(zone) + pipe.setConstruction(pipe_const) + condenserWaterPlant.addSupplyBranchForComponent(pipe) + + pipe2 = OpenStudio::Model::PipeIndoor.new(model) + pipe2.setAmbientTemperatureZone(zone) + pipe2.setConstruction(pipe_const) + pipe2.addToNode(condenserWaterOutletNode) + + pipe3 = OpenStudio::Model::PipeIndoor.new(model) + pipe3.setAmbientTemperatureZone(zone) + pipe3.setConstruction(pipe_const) + pipe3.addToNode(condenserWaterPlant.demandInletNode) + + pipe4 = OpenStudio::Model::PipeIndoor.new(model) + pipe4.setAmbientTemperatureZone(zone) + pipe4.setConstruction(pipe_const) + pipe4.addToNode(condenserWaterPlant.demandOutletNode) + + pipe5 = OpenStudio::Model::PipeIndoor.new(model) + pipe5.setAmbientTemperatureZone(zone) + pipe5.setConstruction(pipe_const) + condenserWaterPlant.addDemandBranchForComponent(pipe5) +end + +## Make a condenser Water temperature schedule + +osTime = OpenStudio::Time.new(0, 24, 0, 0) + +condenserWaterTempSchedule = OpenStudio::Model::ScheduleRuleset.new(model) +condenserWaterTempSchedule.setName('Condenser Water Temperature') + +### Winter Design Day +condenserWaterTempScheduleWinter = OpenStudio::Model::ScheduleDay.new(model) +condenserWaterTempSchedule.setWinterDesignDaySchedule(condenserWaterTempScheduleWinter) +condenserWaterTempSchedule.winterDesignDaySchedule.setName('Condenser Water Temperature Winter Design Day') +condenserWaterTempSchedule.winterDesignDaySchedule.addValue(osTime, 24) + +### Summer Design Day +condenserWaterTempScheduleSummer = OpenStudio::Model::ScheduleDay.new(model) +condenserWaterTempSchedule.setSummerDesignDaySchedule(condenserWaterTempScheduleSummer) +condenserWaterTempSchedule.summerDesignDaySchedule.setName('Condenser Water Temperature Summer Design Day') +condenserWaterTempSchedule.summerDesignDaySchedule.addValue(osTime, 24) + +### All other days +condenserWaterTempSchedule.defaultDaySchedule.setName('Condenser Water Temperature Default') +condenserWaterTempSchedule.defaultDaySchedule.addValue(osTime, 24) + +condenserWaterSPM = OpenStudio::Model::SetpointManagerScheduled.new(model, condenserWaterTempSchedule) +condenserWaterSPM.addToNode(condenserWaterOutletNode) + +condenserWaterPlant.setMaximumLoopTemperature(80.0) +condenserWaterPlant.setMaximumLoopFlowRate(0.004) +condenserWaterPlant.setFluidType('PropyleneGlycol') +condenserWaterPlant.setGlycolConcentration(70) + +pump.setRatedFlowRate(0.004) +pump.setRatedPumpHead(5000.0) +pump.setRatedPowerConsumption(25.0) +pump.setFractionofMotorInefficienciestoFluidStream(0.0) +pump.setPumpControlType('Intermittent') + +# Load Profile +loadProfile = OpenStudio::Model::LoadProfilePlant.new(model) +loadProfile.setPeakFlowRate(0.004) + +flowFracSchedule = OpenStudio::Model::ScheduleConstant.new(model) +flowFracSchedule.setName('FlowFracSchedule') +flowFracSchedule.setValue(1.0) +loadProfile.setFlowRateFractionSchedule(flowFracSchedule) + +loadSchedule = OpenStudio::Model::ScheduleRuleset.new(model) +loadSchedule.setName('LoadSchedule') +loadSchedule.defaultDaySchedule.addValue(osTime, 2000.0) +loadSchedule_may_to_sept_rule = OpenStudio::Model::ScheduleRule.new(loadSchedule) +loadSchedule_may_to_sept_rule.setStartDate(OpenStudio::Date.new('May'.to_MonthOfYear, 1)) +loadSchedule_may_to_sept_rule.setEndDate(OpenStudio::Date.new('September'.to_MonthOfYear, 30)) +loadSchedule_may_to_sept_rule.daySchedule.addValue(osTime, -3000.0) +loadProfile.setLoadSchedule(loadSchedule) + +condenserWaterPlant.addDemandBranchForComponent(loadProfile) + +# save the OpenStudio model (.osm) +model.save_openstudio_osm({ 'osm_save_directory' => Dir.pwd, + 'osm_name' => 'in.osm' }) From 00badd1f7c8481aa17b0ff3d7d04c1114f42ec4e Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 18 Jul 2023 12:17:53 -0700 Subject: [PATCH 2/4] Add calls in model_tests. --- model_tests.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/model_tests.rb b/model_tests.rb index 83801194b..90344fbf3 100644 --- a/model_tests.rb +++ b/model_tests.rb @@ -814,6 +814,24 @@ def test_ghx_horizontal_trench_xing_osm result = sim_test('ghx_horizontal_trench_xing.osm') end + def test_ghx_vertical_kusuda_rb + result = sim_test('ghx_vertical_kusuda.rb') + end + + # TODO: To be added in the next official release after: 3.6.1 + # def test_ghx_vertical_kusuda_osm + # result = sim_test('ghx_vertical_kusuda.osm') + # end + + def test_ghx_vertical_xing_rb + result = sim_test('ghx_vertical_xing.rb') + end + + # TODO: To be added in the next official release after: 3.6.1 + # def test_ghx_vertical_xing_osm + # result = sim_test('ghx_vertical_xing.osm') + # end + def test_coil_waterheating_desuperheater_osm result = sim_test('coil_waterheating_desuperheater.osm') end From 507ba18e1777082b0a967342fac3503759a27334 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Tue, 7 May 2024 13:00:23 +0200 Subject: [PATCH 3/4] rubocop --- model_tests.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/model_tests.rb b/model_tests.rb index 90344fbf3..a5da11265 100644 --- a/model_tests.rb +++ b/model_tests.rb @@ -820,7 +820,7 @@ def test_ghx_vertical_kusuda_rb # TODO: To be added in the next official release after: 3.6.1 # def test_ghx_vertical_kusuda_osm - # result = sim_test('ghx_vertical_kusuda.osm') + # result = sim_test('ghx_vertical_kusuda.osm') # end def test_ghx_vertical_xing_rb @@ -829,7 +829,7 @@ def test_ghx_vertical_xing_rb # TODO: To be added in the next official release after: 3.6.1 # def test_ghx_vertical_xing_osm - # result = sim_test('ghx_vertical_xing.osm') + # result = sim_test('ghx_vertical_xing.osm') # end def test_coil_waterheating_desuperheater_osm From 0b92cfa7ad1d551bd17879f5e65c8fa40c3fa670 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Tue, 7 May 2024 13:11:18 +0200 Subject: [PATCH 4/4] Add a python version of the test + an OSM from 3.7.0 + commit OSW with 3.7.0 --- .../ghx_horizontal_trench_kusuda.py | 10 +- .../ghx_horizontal_trench_xing.py | 10 +- model/simulationtests/ghx_vertical_kusuda.osm | 646 +++++++ model/simulationtests/ghx_vertical_kusuda.py | 137 ++ model/simulationtests/ghx_vertical_xing.osm | 648 +++++++ model/simulationtests/ghx_vertical_xing.py | 137 ++ model_tests.rb | 22 +- test/ghx_vertical_kusuda.osm_3.7.0_out.osw | 1614 +++++++++++++++++ test/ghx_vertical_kusuda.py_3.7.0_out.osw | 1614 +++++++++++++++++ test/ghx_vertical_kusuda.rb_3.7.0_out.osw | 1614 +++++++++++++++++ test/ghx_vertical_xing.osm_3.7.0_out.osw | 1614 +++++++++++++++++ test/ghx_vertical_xing.py_3.7.0_out.osw | 1614 +++++++++++++++++ test/ghx_vertical_xing.rb_3.7.0_out.osw | 1614 +++++++++++++++++ 13 files changed, 11276 insertions(+), 18 deletions(-) create mode 100644 model/simulationtests/ghx_vertical_kusuda.osm create mode 100644 model/simulationtests/ghx_vertical_kusuda.py create mode 100644 model/simulationtests/ghx_vertical_xing.osm create mode 100644 model/simulationtests/ghx_vertical_xing.py create mode 100644 test/ghx_vertical_kusuda.osm_3.7.0_out.osw create mode 100644 test/ghx_vertical_kusuda.py_3.7.0_out.osw create mode 100644 test/ghx_vertical_kusuda.rb_3.7.0_out.osw create mode 100644 test/ghx_vertical_xing.osm_3.7.0_out.osw create mode 100644 test/ghx_vertical_xing.py_3.7.0_out.osw create mode 100644 test/ghx_vertical_xing.rb_3.7.0_out.osw diff --git a/model/simulationtests/ghx_horizontal_trench_kusuda.py b/model/simulationtests/ghx_horizontal_trench_kusuda.py index bdc84b543..a905bca76 100644 --- a/model/simulationtests/ghx_horizontal_trench_kusuda.py +++ b/model/simulationtests/ghx_horizontal_trench_kusuda.py @@ -61,27 +61,27 @@ pipe_const.insertLayer(0, pipe_mat) pipe = openstudio.model.PipeIndoor(model) - pipe.setAmbientTemperatureZone(zone()) + pipe.setAmbientTemperatureZone(zone) pipe.setConstruction(pipe_const) condenserWaterPlant.addSupplyBranchForComponent(pipe) pipe2 = openstudio.model.PipeIndoor(model) - pipe2.setAmbientTemperatureZone(zone()) + pipe2.setAmbientTemperatureZone(zone) pipe2.setConstruction(pipe_const) pipe2.addToNode(condenserWaterOutletNode) pipe3 = openstudio.model.PipeIndoor(model) - pipe3.setAmbientTemperatureZone(zone()) + pipe3.setAmbientTemperatureZone(zone) pipe3.setConstruction(pipe_const) pipe3.addToNode(condenserWaterPlant.demandInletNode()) pipe4 = openstudio.model.PipeIndoor(model) - pipe4.setAmbientTemperatureZone(zone()) + pipe4.setAmbientTemperatureZone(zone) pipe4.setConstruction(pipe_const) pipe4.addToNode(condenserWaterPlant.demandOutletNode()) pipe5 = openstudio.model.PipeIndoor(model) - pipe5.setAmbientTemperatureZone(zone()) + pipe5.setAmbientTemperatureZone(zone) pipe5.setConstruction(pipe_const) condenserWaterPlant.addDemandBranchForComponent(pipe5) diff --git a/model/simulationtests/ghx_horizontal_trench_xing.py b/model/simulationtests/ghx_horizontal_trench_xing.py index 7db9367ce..bcba43765 100644 --- a/model/simulationtests/ghx_horizontal_trench_xing.py +++ b/model/simulationtests/ghx_horizontal_trench_xing.py @@ -55,27 +55,27 @@ pipe_const.insertLayer(0, pipe_mat) pipe = openstudio.model.PipeIndoor(model) - pipe.setAmbientTemperatureZone(zone()) + pipe.setAmbientTemperatureZone(zone) pipe.setConstruction(pipe_const) condenserWaterPlant.addSupplyBranchForComponent(pipe) pipe2 = openstudio.model.PipeIndoor(model) - pipe2.setAmbientTemperatureZone(zone()) + pipe2.setAmbientTemperatureZone(zone) pipe2.setConstruction(pipe_const) pipe2.addToNode(condenserWaterOutletNode) pipe3 = openstudio.model.PipeIndoor(model) - pipe3.setAmbientTemperatureZone(zone()) + pipe3.setAmbientTemperatureZone(zone) pipe3.setConstruction(pipe_const) pipe3.addToNode(condenserWaterPlant.demandInletNode()) pipe4 = openstudio.model.PipeIndoor(model) - pipe4.setAmbientTemperatureZone(zone()) + pipe4.setAmbientTemperatureZone(zone) pipe4.setConstruction(pipe_const) pipe4.addToNode(condenserWaterPlant.demandOutletNode()) pipe5 = openstudio.model.PipeIndoor(model) - pipe5.setAmbientTemperatureZone(zone()) + pipe5.setAmbientTemperatureZone(zone) pipe5.setConstruction(pipe_const) condenserWaterPlant.addDemandBranchForComponent(pipe5) diff --git a/model/simulationtests/ghx_vertical_kusuda.osm b/model/simulationtests/ghx_vertical_kusuda.osm new file mode 100644 index 000000000..0052ce87f --- /dev/null +++ b/model/simulationtests/ghx_vertical_kusuda.osm @@ -0,0 +1,646 @@ + +OS:Version, + {6524a987-6771-4a4e-bf11-d18f345331e9}, !- Handle + 3.7.0; !- Version Identifier + +OS:SizingPeriod:DesignDay, + {6e2c8b41-4b16-4c6f-904a-4eb32fe6afc1}, !- Handle + Chicago Ohare Intl Ap Ann Htg 99.6% Condns DB, !- Name + -20, !- Maximum Dry-Bulb Temperature {C} + 0, !- Daily Dry-Bulb Temperature Range {deltaC} + 98934, !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + 0, !- Sky Clearness + No, !- Rain Indicator + No, !- Snow Indicator + 21, !- Day of Month + 1, !- Month + WinterDesignDay, !- Day Type + No, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Condition Type + , !- Humidity Condition Day Schedule Name + -20, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + ASHRAEClearSky; !- Solar Model Indicator + +OS:SizingPeriod:DesignDay, + {3c04883a-6d75-44cc-accd-ad313fa434e7}, !- Handle + Chicago Ohare Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name + 33.3, !- Maximum Dry-Bulb Temperature {C} + 10.5, !- Daily Dry-Bulb Temperature Range {deltaC} + 98934, !- Barometric Pressure {Pa} + 5.2, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + , !- Sky Clearness + No, !- Rain Indicator + No, !- Snow Indicator + 21, !- Day of Month + 7, !- Month + SummerDesignDay, !- Day Type + No, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Condition Type + , !- Humidity Condition Day Schedule Name + 23.7, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.455, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance {dimensionless} + 2.05; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} + +OS:SimulationControl, + {4337023e-f068-4853-ac8e-78ec7a7f1a7f}, !- Handle + , !- Do Zone Sizing Calculation + , !- Do System Sizing Calculation + , !- Do Plant Sizing Calculation + No, !- Run Simulation for Sizing Periods + Yes; !- Run Simulation for Weather File Run Periods + +OS:Timestep, + {f0a6f8c4-3179-41a4-afa0-295f8b7522e8}, !- Handle + 4; !- Number of Timesteps per Hour + +OS:PlantLoop, + {eb5a7b84-64f9-4632-8b50-9a33022b2864}, !- Handle + Condenser Water Plant, !- Name + PropyleneGlycol, !- Fluid Type + 70, !- Glycol Concentration + , !- User Defined Fluid Type + , !- Plant Equipment Operation Heating Load + , !- Plant Equipment Operation Cooling Load + , !- Primary Plant Equipment Operation Scheme + {c1e5e8ed-2f88-4ed5-bf39-c37919666a39}, !- Loop Temperature Setpoint Node Name + 80, !- Maximum Loop Temperature {C} + , !- Minimum Loop Temperature {C} + 0.004, !- Maximum Loop Flow Rate {m3/s} + , !- Minimum Loop Flow Rate {m3/s} + Autocalculate, !- Plant Loop Volume {m3} + {4563411f-4fec-46c2-b4eb-103c29cfd01c}, !- Plant Side Inlet Node Name + {f99aa5e7-c29b-4a7e-a189-2a45a315423a}, !- Plant Side Outlet Node Name + , !- Plant Side Branch List Name + {4db51c45-7306-43af-8db9-4e4ac62ea107}, !- Demand Side Inlet Node Name + {55099e95-95bf-473f-9fce-1f41d99858e0}, !- Demand Side Outlet Node Name + , !- Demand Side Branch List Name + , !- Demand Side Connector List Name + Optimal, !- Load Distribution Scheme + {09d897f0-6b3f-46bc-a0ab-c80e02504e98}, !- Availability Manager List Name + , !- Plant Loop Demand Calculation Scheme + , !- Common Pipe Simulation + , !- Pressure Simulation Type + , !- Plant Equipment Operation Heating Load Schedule + , !- Plant Equipment Operation Cooling Load Schedule + , !- Primary Plant Equipment Operation Scheme Schedule + , !- Component Setpoint Operation Scheme Schedule + {66834767-3c44-4ffb-9fc3-85d191e702a5}, !- Demand Mixer Name + {7c751e0a-fad0-40db-ae9b-12cd22887fff}, !- Demand Splitter Name + {b96cf3f1-86c8-40c3-a5e9-5ed22c799c7f}, !- Supply Mixer Name + {d7c16770-b6e3-4095-bbed-d9035f8595a4}; !- Supply Splitter Name + +OS:Node, + {1b92c605-d1fe-4f58-854d-1c963c65a857}, !- Handle + Node 1, !- Name + {4563411f-4fec-46c2-b4eb-103c29cfd01c}, !- Inlet Port + {b598cf19-5328-4063-9224-0e4f4569df11}; !- Outlet Port + +OS:Node, + {c1e5e8ed-2f88-4ed5-bf39-c37919666a39}, !- Handle + Node 2, !- Name + {b91105cd-b0b2-4fd1-86dd-f2ec0e524c54}, !- Inlet Port + {f99aa5e7-c29b-4a7e-a189-2a45a315423a}; !- Outlet Port + +OS:Node, + {a5076be6-327c-4cbb-82ca-e150c318aede}, !- Handle + Node 3, !- Name + {36d3248c-1112-48fa-a3ee-34f5597dd858}, !- Inlet Port + {cffc0b59-4caa-45e5-a649-1ce1423ac488}; !- Outlet Port + +OS:Connector:Mixer, + {b96cf3f1-86c8-40c3-a5e9-5ed22c799c7f}, !- Handle + Connector Mixer 1, !- Name + {b91105cd-b0b2-4fd1-86dd-f2ec0e524c54}, !- Outlet Branch Name + {da180ba8-76ba-4120-8d96-da9c88da7de4}; !- Inlet Branch Name 1 + +OS:Connector:Splitter, + {d7c16770-b6e3-4095-bbed-d9035f8595a4}, !- Handle + Connector Splitter 1, !- Name + {3f8f20bf-6807-4a41-8d39-7d5862054a9d}, !- Inlet Branch Name + {36d3248c-1112-48fa-a3ee-34f5597dd858}; !- Outlet Branch Name 1 + +OS:Connection, + {4563411f-4fec-46c2-b4eb-103c29cfd01c}, !- Handle + {eb5a7b84-64f9-4632-8b50-9a33022b2864}, !- Source Object + 14, !- Outlet Port + {1b92c605-d1fe-4f58-854d-1c963c65a857}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {36d3248c-1112-48fa-a3ee-34f5597dd858}, !- Handle + {d7c16770-b6e3-4095-bbed-d9035f8595a4}, !- Source Object + 3, !- Outlet Port + {a5076be6-327c-4cbb-82ca-e150c318aede}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b91105cd-b0b2-4fd1-86dd-f2ec0e524c54}, !- Handle + {b96cf3f1-86c8-40c3-a5e9-5ed22c799c7f}, !- Source Object + 2, !- Outlet Port + {c1e5e8ed-2f88-4ed5-bf39-c37919666a39}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f99aa5e7-c29b-4a7e-a189-2a45a315423a}, !- Handle + {c1e5e8ed-2f88-4ed5-bf39-c37919666a39}, !- Source Object + 3, !- Outlet Port + {eb5a7b84-64f9-4632-8b50-9a33022b2864}, !- Target Object + 15; !- Inlet Port + +OS:Node, + {ced5f9f5-b08a-46fe-9aa2-6fae4d6c358f}, !- Handle + Node 4, !- Name + {4db51c45-7306-43af-8db9-4e4ac62ea107}, !- Inlet Port + {ce6021fc-f2f6-4a02-85c6-59018467c86c}; !- Outlet Port + +OS:Node, + {dcce25ab-b77f-4204-b28d-0a07c77084b0}, !- Handle + Node 5, !- Name + {68ea4578-b3f4-4da5-a738-9b3923a3f639}, !- Inlet Port + {55099e95-95bf-473f-9fce-1f41d99858e0}; !- Outlet Port + +OS:Node, + {441099ba-2775-4cb7-9222-8329b072b81f}, !- Handle + Node 6, !- Name + {7c8dc582-3ea8-4216-9161-f927f1ebdb85}, !- Inlet Port + {9a1aba92-a964-480e-9449-b5621d60e39f}; !- Outlet Port + +OS:Connector:Mixer, + {66834767-3c44-4ffb-9fc3-85d191e702a5}, !- Handle + Connector Mixer 2, !- Name + {68ea4578-b3f4-4da5-a738-9b3923a3f639}, !- Outlet Branch Name + {f51a5192-2f36-4245-86d1-6cb012d2539d}; !- Inlet Branch Name 1 + +OS:Connector:Splitter, + {7c751e0a-fad0-40db-ae9b-12cd22887fff}, !- Handle + Connector Splitter 2, !- Name + {ce6021fc-f2f6-4a02-85c6-59018467c86c}, !- Inlet Branch Name + {7c8dc582-3ea8-4216-9161-f927f1ebdb85}; !- Outlet Branch Name 1 + +OS:Connection, + {4db51c45-7306-43af-8db9-4e4ac62ea107}, !- Handle + {eb5a7b84-64f9-4632-8b50-9a33022b2864}, !- Source Object + 17, !- Outlet Port + {ced5f9f5-b08a-46fe-9aa2-6fae4d6c358f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ce6021fc-f2f6-4a02-85c6-59018467c86c}, !- Handle + {ced5f9f5-b08a-46fe-9aa2-6fae4d6c358f}, !- Source Object + 3, !- Outlet Port + {7c751e0a-fad0-40db-ae9b-12cd22887fff}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7c8dc582-3ea8-4216-9161-f927f1ebdb85}, !- Handle + {7c751e0a-fad0-40db-ae9b-12cd22887fff}, !- Source Object + 3, !- Outlet Port + {441099ba-2775-4cb7-9222-8329b072b81f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {68ea4578-b3f4-4da5-a738-9b3923a3f639}, !- Handle + {66834767-3c44-4ffb-9fc3-85d191e702a5}, !- Source Object + 2, !- Outlet Port + {dcce25ab-b77f-4204-b28d-0a07c77084b0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {55099e95-95bf-473f-9fce-1f41d99858e0}, !- Handle + {dcce25ab-b77f-4204-b28d-0a07c77084b0}, !- Source Object + 3, !- Outlet Port + {eb5a7b84-64f9-4632-8b50-9a33022b2864}, !- Target Object + 18; !- Inlet Port + +OS:Sizing:Plant, + {8a767aee-a423-4ca2-84b5-f321bde479b4}, !- Handle + {eb5a7b84-64f9-4632-8b50-9a33022b2864}, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 30, !- Design Loop Exit Temperature {C} + 11, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:AvailabilityManagerAssignmentList, + {09d897f0-6b3f-46bc-a0ab-c80e02504e98}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name + +OS:Pump:VariableSpeed, + {9e5250c6-e6b3-493b-9347-148614d1ff69}, !- Handle + Pump Variable Speed 1, !- Name + {b598cf19-5328-4063-9224-0e4f4569df11}, !- Inlet Node Name + {c0a8825b-e965-4a01-a227-8f34ab356371}, !- Outlet Node Name + 0.004, !- Rated Flow Rate {m3/s} + 5000, !- Rated Pump Head {Pa} + 25, !- Rated Power Consumption {W} + , !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + , !- Coefficient 1 of the Part Load Performance Curve + , !- Coefficient 2 of the Part Load Performance Curve + , !- Coefficient 3 of the Part Load Performance Curve + , !- Coefficient 4 of the Part Load Performance Curve + , !- Minimum Flow Rate {m3/s} + Intermittent, !- Pump Control Type + , !- Pump Flow Rate Schedule Name + , !- Pump Curve Name + , !- Impeller Diameter {m} + , !- VFD Control Type + , !- Pump RPM Schedule Name + , !- Minimum Pressure Schedule {Pa} + , !- Maximum Pressure Schedule {Pa} + , !- Minimum RPM Schedule {rev/min} + , !- Maximum RPM Schedule {rev/min} + , !- Zone Name + 0.5, !- Skin Loss Radiative Fraction + PowerPerFlowPerPressure, !- Design Power Sizing Method + 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} + 1.282051282, !- Design Shaft Power per Unit Flow Rate per Unit Head {W-s/m3-Pa} + 0, !- Design Minimum Flow Rate Fraction + General; !- End-Use Subcategory + +OS:Node, + {70f32cee-a2e2-4419-ad6d-c5d254f663ea}, !- Handle + Node 7, !- Name + {c0a8825b-e965-4a01-a227-8f34ab356371}, !- Inlet Port + {3f8f20bf-6807-4a41-8d39-7d5862054a9d}; !- Outlet Port + +OS:Connection, + {b598cf19-5328-4063-9224-0e4f4569df11}, !- Handle + {1b92c605-d1fe-4f58-854d-1c963c65a857}, !- Source Object + 3, !- Outlet Port + {9e5250c6-e6b3-493b-9347-148614d1ff69}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c0a8825b-e965-4a01-a227-8f34ab356371}, !- Handle + {9e5250c6-e6b3-493b-9347-148614d1ff69}, !- Source Object + 3, !- Outlet Port + {70f32cee-a2e2-4419-ad6d-c5d254f663ea}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3f8f20bf-6807-4a41-8d39-7d5862054a9d}, !- Handle + {70f32cee-a2e2-4419-ad6d-c5d254f663ea}, !- Source Object + 3, !- Outlet Port + {d7c16770-b6e3-4095-bbed-d9035f8595a4}, !- Target Object + 2; !- Inlet Port + +OS:Site:GroundTemperature:Undisturbed:KusudaAchenbach, + {3eceaa5e-ae38-4665-925d-2852d19bbf9a}, !- Handle + Site Ground Temperature Undisturbed Kusuda Achenbach 1, !- Name + 0.692626, !- Soil Thermal Conductivity {W/m-K} + 920, !- Soil Density {kg/m3} + 2551.08695652174, !- Soil Specific Heat {J/kg-K} + 13.375, !- Average Soil Surface Temperature {C} + 3.2, !- Average Amplitude of Surface Temperature {deltaC} + 8; !- Phase Shift of Minimum Surface Temperature {days} + +OS:GroundHeatExchanger:Vertical, + {86210af6-9dd7-447e-9eba-17ace5020101}, !- Handle + Ground Heat Exchanger Vertical 1, !- Name + {cffc0b59-4caa-45e5-a649-1ce1423ac488}, !- Inlet Node Name + {eae2b10f-4278-4425-b57f-ccceb7ddac3a}, !- Outlet Node Name + 0.0033, !- Design Flow Rate {m3/s} + 120, !- Number of Bore Holes + 76.2, !- Bore Hole Length {m} + 0.063508, !- Bore Hole Radius {m} + 0.692626, !- Ground Thermal Conductivity {W/m-K} + 2347000, !- Ground Thermal Heat Capacity {J/m3-K} + 13.375, !- Ground Temperature {C} + 0.692626, !- Grout Thermal Conductivity {W/m-K} + 0.391312, !- Pipe Thermal Conductivity {W/m-K} + 0.0266667, !- Pipe Out Diameter {m} + 0.0253977, !- U-Tube Distance {m} + 0.00241285, !- Pipe Thickness {m} + 2, !- Maximum Length of Simulation + {3eceaa5e-ae38-4665-925d-2852d19bbf9a}, !- Undisturbed Ground Temperature Model + 0.0005, !- G-Function Reference Ratio {dimensionless} + -15.2996, !- G-Function Ln(T/Ts) Value 1 + -0.348322, !- G-Function G Value 1 + -14.201, !- G-Function Ln(T/Ts) Value 2 + 0.022208, !- G-Function G Value 2 + -13.2202, !- G-Function Ln(T/Ts) Value 3 + 0.412345, !- G-Function G Value 3 + -12.2086, !- G-Function Ln(T/Ts) Value 4 + 0.867498, !- G-Function G Value 4 + -11.1888, !- G-Function Ln(T/Ts) Value 5 + 1.357839, !- G-Function G Value 5 + -10.1816, !- G-Function Ln(T/Ts) Value 6 + 1.852024, !- G-Function G Value 6 + -9.1815, !- G-Function Ln(T/Ts) Value 7 + 2.345656, !- G-Function G Value 7 + -8.6809, !- G-Function Ln(T/Ts) Value 8 + 2.593958, !- G-Function G Value 8 + -8.5, !- G-Function Ln(T/Ts) Value 9 + 2.679, !- G-Function G Value 9 + -7.8, !- G-Function Ln(T/Ts) Value 10 + 3.023, !- G-Function G Value 10 + -7.2, !- G-Function Ln(T/Ts) Value 11 + 3.32, !- G-Function G Value 11 + -6.5, !- G-Function Ln(T/Ts) Value 12 + 3.681, !- G-Function G Value 12 + -5.9, !- G-Function Ln(T/Ts) Value 13 + 4.071, !- G-Function G Value 13 + -5.2, !- G-Function Ln(T/Ts) Value 14 + 4.828, !- G-Function G Value 14 + -4.5, !- G-Function Ln(T/Ts) Value 15 + 6.253, !- G-Function G Value 15 + -3.963, !- G-Function Ln(T/Ts) Value 16 + 7.894, !- G-Function G Value 16 + -3.27, !- G-Function Ln(T/Ts) Value 17 + 11.82, !- G-Function G Value 17 + -2.864, !- G-Function Ln(T/Ts) Value 18 + 15.117, !- G-Function G Value 18 + -2.577, !- G-Function Ln(T/Ts) Value 19 + 18.006, !- G-Function G Value 19 + -2.171, !- G-Function Ln(T/Ts) Value 20 + 22.887, !- G-Function G Value 20 + -1.884, !- G-Function Ln(T/Ts) Value 21 + 26.924, !- G-Function G Value 21 + -1.191, !- G-Function Ln(T/Ts) Value 22 + 38.004, !- G-Function G Value 22 + -0.497, !- G-Function Ln(T/Ts) Value 23 + 49.919, !- G-Function G Value 23 + -0.274, !- G-Function Ln(T/Ts) Value 24 + 53.407, !- G-Function G Value 24 + -0.051, !- G-Function Ln(T/Ts) Value 25 + 56.632, !- G-Function G Value 25 + 0.196, !- G-Function Ln(T/Ts) Value 26 + 59.825, !- G-Function G Value 26 + 0.419, !- G-Function Ln(T/Ts) Value 27 + 62.349, !- G-Function G Value 27 + 0.642, !- G-Function Ln(T/Ts) Value 28 + 64.524, !- G-Function G Value 28 + 0.873, !- G-Function Ln(T/Ts) Value 29 + 66.412, !- G-Function G Value 29 + 1.112, !- G-Function Ln(T/Ts) Value 30 + 67.993, !- G-Function G Value 30 + 1.335, !- G-Function Ln(T/Ts) Value 31 + 69.162, !- G-Function G Value 31 + 1.679, !- G-Function Ln(T/Ts) Value 32 + 70.476, !- G-Function G Value 32 + 2.028, !- G-Function Ln(T/Ts) Value 33 + 71.361, !- G-Function G Value 33 + 2.275, !- G-Function Ln(T/Ts) Value 34 + 71.79, !- G-Function G Value 34 + 3.003, !- G-Function Ln(T/Ts) Value 35 + 72.511; !- G-Function G Value 35 + +OS:Node, + {78a28ed3-931d-4bb0-bfe5-054d1bb35b08}, !- Handle + Node 8, !- Name + {eae2b10f-4278-4425-b57f-ccceb7ddac3a}, !- Inlet Port + {da180ba8-76ba-4120-8d96-da9c88da7de4}; !- Outlet Port + +OS:Connection, + {cffc0b59-4caa-45e5-a649-1ce1423ac488}, !- Handle + {a5076be6-327c-4cbb-82ca-e150c318aede}, !- Source Object + 3, !- Outlet Port + {86210af6-9dd7-447e-9eba-17ace5020101}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {eae2b10f-4278-4425-b57f-ccceb7ddac3a}, !- Handle + {86210af6-9dd7-447e-9eba-17ace5020101}, !- Source Object + 3, !- Outlet Port + {78a28ed3-931d-4bb0-bfe5-054d1bb35b08}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {da180ba8-76ba-4120-8d96-da9c88da7de4}, !- Handle + {78a28ed3-931d-4bb0-bfe5-054d1bb35b08}, !- Source Object + 3, !- Outlet Port + {b96cf3f1-86c8-40c3-a5e9-5ed22c799c7f}, !- Target Object + 3; !- Inlet Port + +OS:Schedule:Ruleset, + {581ba79b-c511-4926-a26f-6ce6dca9c760}, !- Handle + Condenser Water Temperature, !- Name + {136b4fea-3422-4104-b688-5e0135389b0f}, !- Schedule Type Limits Name + {c1f75de0-f4b0-427e-9c63-63e38c1f8121}, !- Default Day Schedule Name + {2b36a164-3335-4bdb-b6f6-e1dac009ccb5}, !- Summer Design Day Schedule Name + {8316e310-c1a0-48dd-91ce-ada27376d62d}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {c1f75de0-f4b0-427e-9c63-63e38c1f8121}, !- Handle + Condenser Water Temperature Default, !- Name + {136b4fea-3422-4104-b688-5e0135389b0f}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 24; !- Value Until Time 1 + +OS:Schedule:Day, + {a997a855-8436-4e8b-99e6-7d18414acaf8}, !- Handle + Schedule Day 2, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {8316e310-c1a0-48dd-91ce-ada27376d62d}, !- Handle + Condenser Water Temperature Winter Design Day, !- Name + {136b4fea-3422-4104-b688-5e0135389b0f}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 24; !- Value Until Time 1 + +OS:Schedule:Day, + {68e0da72-a43c-4aeb-90b1-7a7ac85e4cd1}, !- Handle + Schedule Day 3, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {2b36a164-3335-4bdb-b6f6-e1dac009ccb5}, !- Handle + Condenser Water Temperature Summer Design Day, !- Name + {136b4fea-3422-4104-b688-5e0135389b0f}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 24; !- Value Until Time 1 + +OS:SetpointManager:Scheduled, + {324e2329-6f85-4214-ac45-8a2d90154dd8}, !- Handle + Setpoint Manager Scheduled 1, !- Name + Temperature, !- Control Variable + {581ba79b-c511-4926-a26f-6ce6dca9c760}, !- Schedule Name + {c1e5e8ed-2f88-4ed5-bf39-c37919666a39}; !- Setpoint Node or NodeList Name + +OS:ScheduleTypeLimits, + {136b4fea-3422-4104-b688-5e0135389b0f}, !- Handle + Temperature, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:LoadProfile:Plant, + {66a191d6-2845-49a7-bc3b-67fe159729ca}, !- Handle + Load Profile Plant 1, !- Name + {9a1aba92-a964-480e-9449-b5621d60e39f}, !- Inlet Node Name + {17813355-02dd-456a-b689-b48897ad742f}, !- Outlet Node Name + {c3a10420-2ac3-4f6c-ac86-e026d6372a13}, !- Load Schedule Name + 0.004, !- Peak Flow Rate {m3/s} + {5fe46b92-a48f-4548-8ebd-f1bfe62af9df}, !- Flow Rate Fraction Schedule Name + Water, !- Plant Loop Fluid Type + 5, !- Degree of SubCooling {C} + 20; !- Degree of Loop SubCooling {C} + +OS:Schedule:Constant, + {adfff11b-bfae-4eb9-b656-d6bd767d50be}, !- Handle + Always On Discrete, !- Name + {7be4e374-215a-48e5-b254-e7941c45a344}, !- Schedule Type Limits Name + 1; !- Value + +OS:ScheduleTypeLimits, + {7be4e374-215a-48e5-b254-e7941c45a344}, !- Handle + OnOff, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Discrete, !- Numeric Type + Availability; !- Unit Type + +OS:Schedule:Ruleset, + {62a3c2d3-6e6c-42f5-ba2a-87f7a66bf1d5}, !- Handle + Schedule Ruleset 1, !- Name + {94d6bf7a-650f-4fe0-81fa-4206fabe838a}, !- Schedule Type Limits Name + {07b25179-ad61-4e35-ab92-045710cfcefb}; !- Default Day Schedule Name + +OS:Schedule:Day, + {07b25179-ad61-4e35-ab92-045710cfcefb}, !- Handle + Schedule Day 1, !- Name + {94d6bf7a-650f-4fe0-81fa-4206fabe838a}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 4, !- Hour 1 + 0, !- Minute 1 + 8000, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 6000, !- Value Until Time 2 + 9, !- Hour 3 + 0, !- Minute 3 + 0, !- Value Until Time 3 + 12, !- Hour 4 + 0, !- Minute 4 + 6000, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 10000; !- Value Until Time 5 + +OS:ScheduleTypeLimits, + {94d6bf7a-650f-4fe0-81fa-4206fabe838a}, !- Handle + Dimensionless, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous; !- Numeric Type + +OS:Schedule:Constant, + {5fe46b92-a48f-4548-8ebd-f1bfe62af9df}, !- Handle + FlowFracSchedule, !- Name + {f59da992-352d-497d-a16e-ebb45230eb8f}, !- Schedule Type Limits Name + 1; !- Value + +OS:ScheduleTypeLimits, + {f59da992-352d-497d-a16e-ebb45230eb8f}, !- Handle + Fractional, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Continuous; !- Numeric Type + +OS:Schedule:Ruleset, + {c3a10420-2ac3-4f6c-ac86-e026d6372a13}, !- Handle + LoadSchedule, !- Name + {94d6bf7a-650f-4fe0-81fa-4206fabe838a}, !- Schedule Type Limits Name + {b829f665-bfb0-43bc-bd00-0a9a91b072fd}; !- Default Day Schedule Name + +OS:Schedule:Day, + {b829f665-bfb0-43bc-bd00-0a9a91b072fd}, !- Handle + Schedule Day 4, !- Name + {94d6bf7a-650f-4fe0-81fa-4206fabe838a}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 2000; !- Value Until Time 1 + +OS:Schedule:Rule, + {ec999c19-cb66-4a63-b0d2-f07c63182f68}, !- Handle + Schedule Rule 1, !- Name + {c3a10420-2ac3-4f6c-ac86-e026d6372a13}, !- Schedule Ruleset Name + 0, !- Rule Order + {c843844c-4833-454c-b8f7-f129e9c928b4}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 5, !- Start Month + 1, !- Start Day + 9, !- End Month + 30; !- End Day + +OS:Schedule:Day, + {c843844c-4833-454c-b8f7-f129e9c928b4}, !- Handle + Schedule Day 5, !- Name + {94d6bf7a-650f-4fe0-81fa-4206fabe838a}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + -3000; !- Value Until Time 1 + +OS:Node, + {52c95d67-fd34-4bad-b7e1-d15e3bd16e0a}, !- Handle + Node 9, !- Name + {17813355-02dd-456a-b689-b48897ad742f}, !- Inlet Port + {f51a5192-2f36-4245-86d1-6cb012d2539d}; !- Outlet Port + +OS:Connection, + {9a1aba92-a964-480e-9449-b5621d60e39f}, !- Handle + {441099ba-2775-4cb7-9222-8329b072b81f}, !- Source Object + 3, !- Outlet Port + {66a191d6-2845-49a7-bc3b-67fe159729ca}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {17813355-02dd-456a-b689-b48897ad742f}, !- Handle + {66a191d6-2845-49a7-bc3b-67fe159729ca}, !- Source Object + 3, !- Outlet Port + {52c95d67-fd34-4bad-b7e1-d15e3bd16e0a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f51a5192-2f36-4245-86d1-6cb012d2539d}, !- Handle + {52c95d67-fd34-4bad-b7e1-d15e3bd16e0a}, !- Source Object + 3, !- Outlet Port + {66834767-3c44-4ffb-9fc3-85d191e702a5}, !- Target Object + 3; !- Inlet Port + +OS:YearDescription, + {d7facb2c-8c14-40dc-91eb-003719d5daac}, !- Handle + , !- Calendar Year + Thursday; !- Day of Week for Start Day + diff --git a/model/simulationtests/ghx_vertical_kusuda.py b/model/simulationtests/ghx_vertical_kusuda.py new file mode 100644 index 000000000..88f72ea51 --- /dev/null +++ b/model/simulationtests/ghx_vertical_kusuda.py @@ -0,0 +1,137 @@ +import openstudio + +from lib.baseline_model import BaselineModel + +model = BaselineModel() + +# No zones, just a LoadProfile:Plant + +# add design days to the model (Chicago) +model.add_design_days() + +USE_PIPE_INDOOR = False + +# Add a hot water plant to supply the water to air heat pump +# This could be baked into HVAC templates in the future +condenserWaterPlant = openstudio.model.PlantLoop(model) +condenserWaterPlant.setName("Condenser Water Plant") + +sizingPlant = condenserWaterPlant.sizingPlant() +sizingPlant.setLoopType("Heating") +sizingPlant.setDesignLoopExitTemperature(30.0) +sizingPlant.setLoopDesignTemperatureDifference(11.0) + +condenserWaterOutletNode = condenserWaterPlant.supplyOutletNode() +condenserWaterInletNode = condenserWaterPlant.supplyInletNode() + +pump = openstudio.model.PumpVariableSpeed(model) +pump.addToNode(condenserWaterInletNode) + +hGroundHX1 = None +if openstudio.VersionString(openstudio.openStudioVersion()) > openstudio.VersionString("3.6.1"): + kusudaAchenbach = openstudio.model.SiteGroundTemperatureUndisturbedKusudaAchenbach(model) + kusudaAchenbach.setSoilThermalConductivity(0.692626) + kusudaAchenbach.setSoilDensity(920.0) + kusudaAchenbach.setSoilSpecificHeat(0.234700e07 / 920.0) + kusudaAchenbach.setAverageSoilSurfaceTemperature(13.375) + kusudaAchenbach.setAverageAmplitudeofSurfaceTemperature(3.2) + kusudaAchenbach.setPhaseShiftofMinimumSurfaceTemperature(8.0) + hGroundHX1 = openstudio.model.GroundHeatExchangerVertical(model, kusudaAchenbach) +else: + hGroundHX1 = openstudio.model.GroundHeatExchangerVertical(model) + +condenserWaterPlant.addSupplyBranchForComponent(hGroundHX1) + +if USE_PIPE_INDOOR: + pipe_mat = openstudio.model.StandardOpaqueMaterial(model, "Smooth", 3.00e-03, 45.31, 7833.0, 500.0) + pipe_mat.setThermalAbsorptance(openstudio.OptionalDouble(0.9)) + pipe_mat.setSolarAbsorptance(openstudio.OptionalDouble(0.5)) + pipe_mat.setVisibleAbsorptance(openstudio.OptionalDouble(0.5)) + pipe_const = openstudio.model.Construction(model) + pipe_const.insertLayer(0, pipe_mat) + + pipe = openstudio.model.PipeIndoor(model) + pipe.setAmbientTemperatureZone(zone()) + pipe.setConstruction(pipe_const) + condenserWaterPlant.addSupplyBranchForComponent(pipe) + + pipe2 = openstudio.model.PipeIndoor(model) + pipe2.setAmbientTemperatureZone(zone()) + pipe2.setConstruction(pipe_const) + pipe2.addToNode(condenserWaterOutletNode) + + pipe3 = openstudio.model.PipeIndoor(model) + pipe3.setAmbientTemperatureZone(zone()) + pipe3.setConstruction(pipe_const) + pipe3.addToNode(condenserWaterPlant.demandInletNode()) + + pipe4 = openstudio.model.PipeIndoor(model) + pipe4.setAmbientTemperatureZone(zone()) + pipe4.setConstruction(pipe_const) + pipe4.addToNode(condenserWaterPlant.demandOutletNode()) + + pipe5 = openstudio.model.PipeIndoor(model) + pipe5.setAmbientTemperatureZone(zone()) + pipe5.setConstruction(pipe_const) + condenserWaterPlant.addDemandBranchForComponent(pipe5) + + +## Make a condenser Water temperature schedule + +osTime = openstudio.Time(0, 24, 0, 0) + +condenserWaterTempSchedule = openstudio.model.ScheduleRuleset(model) +condenserWaterTempSchedule.setName("Condenser Water Temperature") + +### Winter Design Day +condenserWaterTempScheduleWinter = openstudio.model.ScheduleDay(model) +condenserWaterTempSchedule.setWinterDesignDaySchedule(condenserWaterTempScheduleWinter) +condenserWaterTempSchedule.winterDesignDaySchedule().setName("Condenser Water Temperature Winter Design Day") +condenserWaterTempSchedule.winterDesignDaySchedule().addValue(osTime, 24) + +### Summer Design Day +condenserWaterTempScheduleSummer = openstudio.model.ScheduleDay(model) +condenserWaterTempSchedule.setSummerDesignDaySchedule(condenserWaterTempScheduleSummer) +condenserWaterTempSchedule.summerDesignDaySchedule().setName("Condenser Water Temperature Summer Design Day") +condenserWaterTempSchedule.summerDesignDaySchedule().addValue(osTime, 24) + +### All other days +condenserWaterTempSchedule.defaultDaySchedule().setName("Condenser Water Temperature Default") +condenserWaterTempSchedule.defaultDaySchedule().addValue(osTime, 24) + +condenserWaterSPM = openstudio.model.SetpointManagerScheduled(model, condenserWaterTempSchedule) +condenserWaterSPM.addToNode(condenserWaterOutletNode) + +condenserWaterPlant.setMaximumLoopTemperature(80.0) +condenserWaterPlant.setMaximumLoopFlowRate(0.004) +condenserWaterPlant.setFluidType("PropyleneGlycol") +condenserWaterPlant.setGlycolConcentration(70) + +pump.setRatedFlowRate(0.004) +pump.setRatedPumpHead(5000.0) +pump.setRatedPowerConsumption(25.0) +pump.setFractionofMotorInefficienciestoFluidStream(0.0) +pump.setPumpControlType("Intermittent") + +# Load Profile +loadProfile = openstudio.model.LoadProfilePlant(model) +loadProfile.setPeakFlowRate(0.004) + +flowFracSchedule = openstudio.model.ScheduleConstant(model) +flowFracSchedule.setName("FlowFracSchedule") +flowFracSchedule.setValue(1.0) +loadProfile.setFlowRateFractionSchedule(flowFracSchedule) + +loadSchedule = openstudio.model.ScheduleRuleset(model) +loadSchedule.setName("LoadSchedule") +loadSchedule.defaultDaySchedule().addValue(osTime, 2000.0) +loadSchedule_may_to_sept_rule = openstudio.model.ScheduleRule(loadSchedule) +loadSchedule_may_to_sept_rule.setStartDate(openstudio.Date(openstudio.MonthOfYear("May"), 1)) +loadSchedule_may_to_sept_rule.setEndDate(openstudio.Date(openstudio.MonthOfYear("September"), 30)) +loadSchedule_may_to_sept_rule.daySchedule().addValue(osTime, -3000.0) +loadProfile.setLoadSchedule(loadSchedule) + +condenserWaterPlant.addDemandBranchForComponent(loadProfile) + +# save the OpenStudio model (.osm) +model.save_openstudio_osm(osm_save_directory=None, osm_name="in.osm") diff --git a/model/simulationtests/ghx_vertical_xing.osm b/model/simulationtests/ghx_vertical_xing.osm new file mode 100644 index 000000000..ba4171839 --- /dev/null +++ b/model/simulationtests/ghx_vertical_xing.osm @@ -0,0 +1,648 @@ + +OS:Version, + {7d49595e-5472-4a23-83d6-d06e6c7771c0}, !- Handle + 3.7.0; !- Version Identifier + +OS:SizingPeriod:DesignDay, + {77d1096d-0559-4e00-b06f-6f6431814e06}, !- Handle + Chicago Ohare Intl Ap Ann Htg 99.6% Condns DB, !- Name + -20, !- Maximum Dry-Bulb Temperature {C} + 0, !- Daily Dry-Bulb Temperature Range {deltaC} + 98934, !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + 0, !- Sky Clearness + No, !- Rain Indicator + No, !- Snow Indicator + 21, !- Day of Month + 1, !- Month + WinterDesignDay, !- Day Type + No, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Condition Type + , !- Humidity Condition Day Schedule Name + -20, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + ASHRAEClearSky; !- Solar Model Indicator + +OS:SizingPeriod:DesignDay, + {6edd5d36-6e2a-4f1e-b077-4542d145c624}, !- Handle + Chicago Ohare Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name + 33.3, !- Maximum Dry-Bulb Temperature {C} + 10.5, !- Daily Dry-Bulb Temperature Range {deltaC} + 98934, !- Barometric Pressure {Pa} + 5.2, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + , !- Sky Clearness + No, !- Rain Indicator + No, !- Snow Indicator + 21, !- Day of Month + 7, !- Month + SummerDesignDay, !- Day Type + No, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Condition Type + , !- Humidity Condition Day Schedule Name + 23.7, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.455, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance {dimensionless} + 2.05; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} + +OS:SimulationControl, + {d6c35324-144d-4411-9751-851c6c1e82ae}, !- Handle + , !- Do Zone Sizing Calculation + , !- Do System Sizing Calculation + , !- Do Plant Sizing Calculation + No, !- Run Simulation for Sizing Periods + Yes; !- Run Simulation for Weather File Run Periods + +OS:Timestep, + {ac4ecd2a-006c-4292-8ffd-15c7359448bb}, !- Handle + 4; !- Number of Timesteps per Hour + +OS:PlantLoop, + {b449796b-3aeb-424b-8303-92d2cc566efa}, !- Handle + Condenser Water Plant, !- Name + PropyleneGlycol, !- Fluid Type + 70, !- Glycol Concentration + , !- User Defined Fluid Type + , !- Plant Equipment Operation Heating Load + , !- Plant Equipment Operation Cooling Load + , !- Primary Plant Equipment Operation Scheme + {129937a2-9f18-4198-8cec-7d5cdca59809}, !- Loop Temperature Setpoint Node Name + 80, !- Maximum Loop Temperature {C} + , !- Minimum Loop Temperature {C} + 0.004, !- Maximum Loop Flow Rate {m3/s} + , !- Minimum Loop Flow Rate {m3/s} + Autocalculate, !- Plant Loop Volume {m3} + {d975100a-e553-4335-8075-2bcb2dfe3c00}, !- Plant Side Inlet Node Name + {c9b7af98-d41f-4e9b-8f30-c24b42890552}, !- Plant Side Outlet Node Name + , !- Plant Side Branch List Name + {9b21771c-c5f4-48be-8997-17d9c5e8259c}, !- Demand Side Inlet Node Name + {b4c0b2ec-70cb-4f2f-a035-abc16851858e}, !- Demand Side Outlet Node Name + , !- Demand Side Branch List Name + , !- Demand Side Connector List Name + Optimal, !- Load Distribution Scheme + {16b55f35-e83a-49fb-9ce7-0bf5e5c2b4e5}, !- Availability Manager List Name + , !- Plant Loop Demand Calculation Scheme + , !- Common Pipe Simulation + , !- Pressure Simulation Type + , !- Plant Equipment Operation Heating Load Schedule + , !- Plant Equipment Operation Cooling Load Schedule + , !- Primary Plant Equipment Operation Scheme Schedule + , !- Component Setpoint Operation Scheme Schedule + {1a7d5216-139a-4e3c-87da-c66c8f8fe76a}, !- Demand Mixer Name + {8def282c-5648-4493-84a0-41a3bf08810a}, !- Demand Splitter Name + {76998406-c5da-4d95-b097-9c7d72020a7d}, !- Supply Mixer Name + {292afd0d-f4c0-4a75-bbf0-db21535eb59f}; !- Supply Splitter Name + +OS:Node, + {ce783427-a87b-4f09-b52a-c10895792110}, !- Handle + Node 1, !- Name + {d975100a-e553-4335-8075-2bcb2dfe3c00}, !- Inlet Port + {61bf7667-090a-4f80-a21b-d8fa77eb2d85}; !- Outlet Port + +OS:Node, + {129937a2-9f18-4198-8cec-7d5cdca59809}, !- Handle + Node 2, !- Name + {08e9f6f1-c44f-4c84-917b-af732ba84d7c}, !- Inlet Port + {c9b7af98-d41f-4e9b-8f30-c24b42890552}; !- Outlet Port + +OS:Node, + {a56f3e83-1288-4799-b208-bbebb4ed0b2b}, !- Handle + Node 3, !- Name + {195be1a9-46b0-4c7d-b48d-d44d7c84b852}, !- Inlet Port + {e03156c6-7eef-4b9e-af7c-236f056643e2}; !- Outlet Port + +OS:Connector:Mixer, + {76998406-c5da-4d95-b097-9c7d72020a7d}, !- Handle + Connector Mixer 1, !- Name + {08e9f6f1-c44f-4c84-917b-af732ba84d7c}, !- Outlet Branch Name + {8b7b78cc-469f-40e7-ac0b-aad3066d6468}; !- Inlet Branch Name 1 + +OS:Connector:Splitter, + {292afd0d-f4c0-4a75-bbf0-db21535eb59f}, !- Handle + Connector Splitter 1, !- Name + {4fbc3f64-e66b-4ecf-9110-76009f31c7ce}, !- Inlet Branch Name + {195be1a9-46b0-4c7d-b48d-d44d7c84b852}; !- Outlet Branch Name 1 + +OS:Connection, + {d975100a-e553-4335-8075-2bcb2dfe3c00}, !- Handle + {b449796b-3aeb-424b-8303-92d2cc566efa}, !- Source Object + 14, !- Outlet Port + {ce783427-a87b-4f09-b52a-c10895792110}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {195be1a9-46b0-4c7d-b48d-d44d7c84b852}, !- Handle + {292afd0d-f4c0-4a75-bbf0-db21535eb59f}, !- Source Object + 3, !- Outlet Port + {a56f3e83-1288-4799-b208-bbebb4ed0b2b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {08e9f6f1-c44f-4c84-917b-af732ba84d7c}, !- Handle + {76998406-c5da-4d95-b097-9c7d72020a7d}, !- Source Object + 2, !- Outlet Port + {129937a2-9f18-4198-8cec-7d5cdca59809}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c9b7af98-d41f-4e9b-8f30-c24b42890552}, !- Handle + {129937a2-9f18-4198-8cec-7d5cdca59809}, !- Source Object + 3, !- Outlet Port + {b449796b-3aeb-424b-8303-92d2cc566efa}, !- Target Object + 15; !- Inlet Port + +OS:Node, + {c2333683-aed4-4a2e-94fd-f4c77795b6f9}, !- Handle + Node 4, !- Name + {9b21771c-c5f4-48be-8997-17d9c5e8259c}, !- Inlet Port + {2435bd58-9769-4660-9212-bb39ee36e249}; !- Outlet Port + +OS:Node, + {0f2b3b27-ea87-459c-be75-8abd6d94fe18}, !- Handle + Node 5, !- Name + {f47779fe-5a99-4273-b543-9937d8a73010}, !- Inlet Port + {b4c0b2ec-70cb-4f2f-a035-abc16851858e}; !- Outlet Port + +OS:Node, + {f5eee355-9e33-4495-bee5-5d2d5ce68b23}, !- Handle + Node 6, !- Name + {93492067-ef33-436d-8eb0-7edd0ef737f1}, !- Inlet Port + {f240ea8d-33e6-4fb5-bb38-927297686c20}; !- Outlet Port + +OS:Connector:Mixer, + {1a7d5216-139a-4e3c-87da-c66c8f8fe76a}, !- Handle + Connector Mixer 2, !- Name + {f47779fe-5a99-4273-b543-9937d8a73010}, !- Outlet Branch Name + {b7dac958-9ba6-46d1-8e60-bd0cfe76c09b}; !- Inlet Branch Name 1 + +OS:Connector:Splitter, + {8def282c-5648-4493-84a0-41a3bf08810a}, !- Handle + Connector Splitter 2, !- Name + {2435bd58-9769-4660-9212-bb39ee36e249}, !- Inlet Branch Name + {93492067-ef33-436d-8eb0-7edd0ef737f1}; !- Outlet Branch Name 1 + +OS:Connection, + {9b21771c-c5f4-48be-8997-17d9c5e8259c}, !- Handle + {b449796b-3aeb-424b-8303-92d2cc566efa}, !- Source Object + 17, !- Outlet Port + {c2333683-aed4-4a2e-94fd-f4c77795b6f9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2435bd58-9769-4660-9212-bb39ee36e249}, !- Handle + {c2333683-aed4-4a2e-94fd-f4c77795b6f9}, !- Source Object + 3, !- Outlet Port + {8def282c-5648-4493-84a0-41a3bf08810a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {93492067-ef33-436d-8eb0-7edd0ef737f1}, !- Handle + {8def282c-5648-4493-84a0-41a3bf08810a}, !- Source Object + 3, !- Outlet Port + {f5eee355-9e33-4495-bee5-5d2d5ce68b23}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f47779fe-5a99-4273-b543-9937d8a73010}, !- Handle + {1a7d5216-139a-4e3c-87da-c66c8f8fe76a}, !- Source Object + 2, !- Outlet Port + {0f2b3b27-ea87-459c-be75-8abd6d94fe18}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b4c0b2ec-70cb-4f2f-a035-abc16851858e}, !- Handle + {0f2b3b27-ea87-459c-be75-8abd6d94fe18}, !- Source Object + 3, !- Outlet Port + {b449796b-3aeb-424b-8303-92d2cc566efa}, !- Target Object + 18; !- Inlet Port + +OS:Sizing:Plant, + {3e5e6ceb-19d9-44e5-bee2-d7eb7976e817}, !- Handle + {b449796b-3aeb-424b-8303-92d2cc566efa}, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 30, !- Design Loop Exit Temperature {C} + 11, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:AvailabilityManagerAssignmentList, + {16b55f35-e83a-49fb-9ce7-0bf5e5c2b4e5}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name + +OS:Pump:VariableSpeed, + {4d456731-feeb-4dd1-b483-f0b5aeb160a9}, !- Handle + Pump Variable Speed 1, !- Name + {61bf7667-090a-4f80-a21b-d8fa77eb2d85}, !- Inlet Node Name + {5587c3ab-4db8-4d3d-a15d-d22211387970}, !- Outlet Node Name + 0.004, !- Rated Flow Rate {m3/s} + 5000, !- Rated Pump Head {Pa} + 25, !- Rated Power Consumption {W} + , !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + , !- Coefficient 1 of the Part Load Performance Curve + , !- Coefficient 2 of the Part Load Performance Curve + , !- Coefficient 3 of the Part Load Performance Curve + , !- Coefficient 4 of the Part Load Performance Curve + , !- Minimum Flow Rate {m3/s} + Intermittent, !- Pump Control Type + , !- Pump Flow Rate Schedule Name + , !- Pump Curve Name + , !- Impeller Diameter {m} + , !- VFD Control Type + , !- Pump RPM Schedule Name + , !- Minimum Pressure Schedule {Pa} + , !- Maximum Pressure Schedule {Pa} + , !- Minimum RPM Schedule {rev/min} + , !- Maximum RPM Schedule {rev/min} + , !- Zone Name + 0.5, !- Skin Loss Radiative Fraction + PowerPerFlowPerPressure, !- Design Power Sizing Method + 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} + 1.282051282, !- Design Shaft Power per Unit Flow Rate per Unit Head {W-s/m3-Pa} + 0, !- Design Minimum Flow Rate Fraction + General; !- End-Use Subcategory + +OS:Node, + {4e7a8131-3416-47da-b5f4-83360fd56766}, !- Handle + Node 7, !- Name + {5587c3ab-4db8-4d3d-a15d-d22211387970}, !- Inlet Port + {4fbc3f64-e66b-4ecf-9110-76009f31c7ce}; !- Outlet Port + +OS:Connection, + {61bf7667-090a-4f80-a21b-d8fa77eb2d85}, !- Handle + {ce783427-a87b-4f09-b52a-c10895792110}, !- Source Object + 3, !- Outlet Port + {4d456731-feeb-4dd1-b483-f0b5aeb160a9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5587c3ab-4db8-4d3d-a15d-d22211387970}, !- Handle + {4d456731-feeb-4dd1-b483-f0b5aeb160a9}, !- Source Object + 3, !- Outlet Port + {4e7a8131-3416-47da-b5f4-83360fd56766}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4fbc3f64-e66b-4ecf-9110-76009f31c7ce}, !- Handle + {4e7a8131-3416-47da-b5f4-83360fd56766}, !- Source Object + 3, !- Outlet Port + {292afd0d-f4c0-4a75-bbf0-db21535eb59f}, !- Target Object + 2; !- Inlet Port + +OS:Site:GroundTemperature:Undisturbed:Xing, + {f15f4878-e6de-4eee-8c21-4968e18390af}, !- Handle + Site Ground Temperature Undisturbed Xing 1, !- Name + 1.08, !- Soil Thermal Conductivity {W/m-K} + 962, !- Soil Density {kg/m3} + 2576, !- Soil Specific Heat {J/kg-K} + 11.1, !- Average Soil Surface Temperature {C} + 13.4, !- Soil Surface Temperature Amplitude 1 {deltaC} + 0.7, !- Soil Surface Temperature Amplitude 2 {deltaC} + 25, !- Phase Shift of Temperature Amplitude 1 {days} + 30; !- Phase Shift of Temperature Amplitude 2 {days} + +OS:GroundHeatExchanger:Vertical, + {295808bd-17bb-4dd2-b3fe-319a63f37c0b}, !- Handle + Ground Heat Exchanger Vertical 1, !- Name + {e03156c6-7eef-4b9e-af7c-236f056643e2}, !- Inlet Node Name + {f902a418-b809-44a5-a1d6-f94efc90da5c}, !- Outlet Node Name + 0.0033, !- Design Flow Rate {m3/s} + 120, !- Number of Bore Holes + 76.2, !- Bore Hole Length {m} + 0.063508, !- Bore Hole Radius {m} + 0.692626, !- Ground Thermal Conductivity {W/m-K} + 2347000, !- Ground Thermal Heat Capacity {J/m3-K} + 13.375, !- Ground Temperature {C} + 0.692626, !- Grout Thermal Conductivity {W/m-K} + 0.391312, !- Pipe Thermal Conductivity {W/m-K} + 0.0266667, !- Pipe Out Diameter {m} + 0.0253977, !- U-Tube Distance {m} + 0.00241285, !- Pipe Thickness {m} + 2, !- Maximum Length of Simulation + {f15f4878-e6de-4eee-8c21-4968e18390af}, !- Undisturbed Ground Temperature Model + 0.0005, !- G-Function Reference Ratio {dimensionless} + -15.2996, !- G-Function Ln(T/Ts) Value 1 + -0.348322, !- G-Function G Value 1 + -14.201, !- G-Function Ln(T/Ts) Value 2 + 0.022208, !- G-Function G Value 2 + -13.2202, !- G-Function Ln(T/Ts) Value 3 + 0.412345, !- G-Function G Value 3 + -12.2086, !- G-Function Ln(T/Ts) Value 4 + 0.867498, !- G-Function G Value 4 + -11.1888, !- G-Function Ln(T/Ts) Value 5 + 1.357839, !- G-Function G Value 5 + -10.1816, !- G-Function Ln(T/Ts) Value 6 + 1.852024, !- G-Function G Value 6 + -9.1815, !- G-Function Ln(T/Ts) Value 7 + 2.345656, !- G-Function G Value 7 + -8.6809, !- G-Function Ln(T/Ts) Value 8 + 2.593958, !- G-Function G Value 8 + -8.5, !- G-Function Ln(T/Ts) Value 9 + 2.679, !- G-Function G Value 9 + -7.8, !- G-Function Ln(T/Ts) Value 10 + 3.023, !- G-Function G Value 10 + -7.2, !- G-Function Ln(T/Ts) Value 11 + 3.32, !- G-Function G Value 11 + -6.5, !- G-Function Ln(T/Ts) Value 12 + 3.681, !- G-Function G Value 12 + -5.9, !- G-Function Ln(T/Ts) Value 13 + 4.071, !- G-Function G Value 13 + -5.2, !- G-Function Ln(T/Ts) Value 14 + 4.828, !- G-Function G Value 14 + -4.5, !- G-Function Ln(T/Ts) Value 15 + 6.253, !- G-Function G Value 15 + -3.963, !- G-Function Ln(T/Ts) Value 16 + 7.894, !- G-Function G Value 16 + -3.27, !- G-Function Ln(T/Ts) Value 17 + 11.82, !- G-Function G Value 17 + -2.864, !- G-Function Ln(T/Ts) Value 18 + 15.117, !- G-Function G Value 18 + -2.577, !- G-Function Ln(T/Ts) Value 19 + 18.006, !- G-Function G Value 19 + -2.171, !- G-Function Ln(T/Ts) Value 20 + 22.887, !- G-Function G Value 20 + -1.884, !- G-Function Ln(T/Ts) Value 21 + 26.924, !- G-Function G Value 21 + -1.191, !- G-Function Ln(T/Ts) Value 22 + 38.004, !- G-Function G Value 22 + -0.497, !- G-Function Ln(T/Ts) Value 23 + 49.919, !- G-Function G Value 23 + -0.274, !- G-Function Ln(T/Ts) Value 24 + 53.407, !- G-Function G Value 24 + -0.051, !- G-Function Ln(T/Ts) Value 25 + 56.632, !- G-Function G Value 25 + 0.196, !- G-Function Ln(T/Ts) Value 26 + 59.825, !- G-Function G Value 26 + 0.419, !- G-Function Ln(T/Ts) Value 27 + 62.349, !- G-Function G Value 27 + 0.642, !- G-Function Ln(T/Ts) Value 28 + 64.524, !- G-Function G Value 28 + 0.873, !- G-Function Ln(T/Ts) Value 29 + 66.412, !- G-Function G Value 29 + 1.112, !- G-Function Ln(T/Ts) Value 30 + 67.993, !- G-Function G Value 30 + 1.335, !- G-Function Ln(T/Ts) Value 31 + 69.162, !- G-Function G Value 31 + 1.679, !- G-Function Ln(T/Ts) Value 32 + 70.476, !- G-Function G Value 32 + 2.028, !- G-Function Ln(T/Ts) Value 33 + 71.361, !- G-Function G Value 33 + 2.275, !- G-Function Ln(T/Ts) Value 34 + 71.79, !- G-Function G Value 34 + 3.003, !- G-Function Ln(T/Ts) Value 35 + 72.511; !- G-Function G Value 35 + +OS:Node, + {a4af28c6-2472-407f-9315-4f98d8a87770}, !- Handle + Node 8, !- Name + {f902a418-b809-44a5-a1d6-f94efc90da5c}, !- Inlet Port + {8b7b78cc-469f-40e7-ac0b-aad3066d6468}; !- Outlet Port + +OS:Connection, + {e03156c6-7eef-4b9e-af7c-236f056643e2}, !- Handle + {a56f3e83-1288-4799-b208-bbebb4ed0b2b}, !- Source Object + 3, !- Outlet Port + {295808bd-17bb-4dd2-b3fe-319a63f37c0b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f902a418-b809-44a5-a1d6-f94efc90da5c}, !- Handle + {295808bd-17bb-4dd2-b3fe-319a63f37c0b}, !- Source Object + 3, !- Outlet Port + {a4af28c6-2472-407f-9315-4f98d8a87770}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8b7b78cc-469f-40e7-ac0b-aad3066d6468}, !- Handle + {a4af28c6-2472-407f-9315-4f98d8a87770}, !- Source Object + 3, !- Outlet Port + {76998406-c5da-4d95-b097-9c7d72020a7d}, !- Target Object + 3; !- Inlet Port + +OS:Schedule:Ruleset, + {7f33ae48-b526-41cc-a357-33cd46b09fa4}, !- Handle + Condenser Water Temperature, !- Name + {67b74abf-61cf-4dcc-9425-0f459a388929}, !- Schedule Type Limits Name + {f27979fb-0099-487f-bd26-be8eaf1f5508}, !- Default Day Schedule Name + {59dfcebc-9e16-4a76-bb34-f31f93eec4e7}, !- Summer Design Day Schedule Name + {ce368e80-83b2-4341-b591-0b2cc39bac67}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {f27979fb-0099-487f-bd26-be8eaf1f5508}, !- Handle + Condenser Water Temperature Default, !- Name + {67b74abf-61cf-4dcc-9425-0f459a388929}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 24; !- Value Until Time 1 + +OS:Schedule:Day, + {607bd912-8315-4b83-a2b8-539838fc6a6c}, !- Handle + Schedule Day 2, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {ce368e80-83b2-4341-b591-0b2cc39bac67}, !- Handle + Condenser Water Temperature Winter Design Day, !- Name + {67b74abf-61cf-4dcc-9425-0f459a388929}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 24; !- Value Until Time 1 + +OS:Schedule:Day, + {1557483f-6a05-47e4-988a-64616564933e}, !- Handle + Schedule Day 3, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {59dfcebc-9e16-4a76-bb34-f31f93eec4e7}, !- Handle + Condenser Water Temperature Summer Design Day, !- Name + {67b74abf-61cf-4dcc-9425-0f459a388929}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 24; !- Value Until Time 1 + +OS:SetpointManager:Scheduled, + {ae45e1c2-5770-488e-ba6e-a19cc26d58a6}, !- Handle + Setpoint Manager Scheduled 1, !- Name + Temperature, !- Control Variable + {7f33ae48-b526-41cc-a357-33cd46b09fa4}, !- Schedule Name + {129937a2-9f18-4198-8cec-7d5cdca59809}; !- Setpoint Node or NodeList Name + +OS:ScheduleTypeLimits, + {67b74abf-61cf-4dcc-9425-0f459a388929}, !- Handle + Temperature, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:LoadProfile:Plant, + {648b76df-a1e5-4183-8de5-f6a8e89155b9}, !- Handle + Load Profile Plant 1, !- Name + {f240ea8d-33e6-4fb5-bb38-927297686c20}, !- Inlet Node Name + {c6295b28-dbe2-4b9b-bbf7-e6c49b1a03e7}, !- Outlet Node Name + {1e9b495c-19fd-4aa8-b151-20cebe49417f}, !- Load Schedule Name + 0.004, !- Peak Flow Rate {m3/s} + {4d279aba-846f-4d19-8050-1ab8ef2ce06a}, !- Flow Rate Fraction Schedule Name + Water, !- Plant Loop Fluid Type + 5, !- Degree of SubCooling {C} + 20; !- Degree of Loop SubCooling {C} + +OS:Schedule:Constant, + {36e00e75-60dd-47c8-993e-8a4ee71dab24}, !- Handle + Always On Discrete, !- Name + {8f592e84-13a1-4761-a5b2-c599185e616f}, !- Schedule Type Limits Name + 1; !- Value + +OS:ScheduleTypeLimits, + {8f592e84-13a1-4761-a5b2-c599185e616f}, !- Handle + OnOff, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Discrete, !- Numeric Type + Availability; !- Unit Type + +OS:Schedule:Ruleset, + {f0a4fd59-34d8-4b82-8be3-69dcb960f984}, !- Handle + Schedule Ruleset 1, !- Name + {4a254308-b811-4d1b-bba5-807e62d6b439}, !- Schedule Type Limits Name + {50c7fd0f-ee37-41b4-9652-e04d6b37d3ed}; !- Default Day Schedule Name + +OS:Schedule:Day, + {50c7fd0f-ee37-41b4-9652-e04d6b37d3ed}, !- Handle + Schedule Day 1, !- Name + {4a254308-b811-4d1b-bba5-807e62d6b439}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 4, !- Hour 1 + 0, !- Minute 1 + 8000, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 6000, !- Value Until Time 2 + 9, !- Hour 3 + 0, !- Minute 3 + 0, !- Value Until Time 3 + 12, !- Hour 4 + 0, !- Minute 4 + 6000, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 10000; !- Value Until Time 5 + +OS:ScheduleTypeLimits, + {4a254308-b811-4d1b-bba5-807e62d6b439}, !- Handle + Dimensionless, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous; !- Numeric Type + +OS:Schedule:Constant, + {4d279aba-846f-4d19-8050-1ab8ef2ce06a}, !- Handle + FlowFracSchedule, !- Name + {de570353-9ba9-4dfd-b0fb-e3c9740650c8}, !- Schedule Type Limits Name + 1; !- Value + +OS:ScheduleTypeLimits, + {de570353-9ba9-4dfd-b0fb-e3c9740650c8}, !- Handle + Fractional, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Continuous; !- Numeric Type + +OS:Schedule:Ruleset, + {1e9b495c-19fd-4aa8-b151-20cebe49417f}, !- Handle + LoadSchedule, !- Name + {4a254308-b811-4d1b-bba5-807e62d6b439}, !- Schedule Type Limits Name + {2f6b180f-ae74-4f8b-bff6-ce18ad9dad41}; !- Default Day Schedule Name + +OS:Schedule:Day, + {2f6b180f-ae74-4f8b-bff6-ce18ad9dad41}, !- Handle + Schedule Day 4, !- Name + {4a254308-b811-4d1b-bba5-807e62d6b439}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 2000; !- Value Until Time 1 + +OS:Schedule:Rule, + {26e2fa07-da16-4fc1-aec5-8a1fa57c4f3c}, !- Handle + Schedule Rule 1, !- Name + {1e9b495c-19fd-4aa8-b151-20cebe49417f}, !- Schedule Ruleset Name + 0, !- Rule Order + {4ab575de-92af-4782-826b-bc2342fdd795}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 5, !- Start Month + 1, !- Start Day + 9, !- End Month + 30; !- End Day + +OS:Schedule:Day, + {4ab575de-92af-4782-826b-bc2342fdd795}, !- Handle + Schedule Day 5, !- Name + {4a254308-b811-4d1b-bba5-807e62d6b439}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + -3000; !- Value Until Time 1 + +OS:Node, + {2e6c3a30-ae3e-4bf8-869c-ee9fdbb11ba8}, !- Handle + Node 9, !- Name + {c6295b28-dbe2-4b9b-bbf7-e6c49b1a03e7}, !- Inlet Port + {b7dac958-9ba6-46d1-8e60-bd0cfe76c09b}; !- Outlet Port + +OS:Connection, + {f240ea8d-33e6-4fb5-bb38-927297686c20}, !- Handle + {f5eee355-9e33-4495-bee5-5d2d5ce68b23}, !- Source Object + 3, !- Outlet Port + {648b76df-a1e5-4183-8de5-f6a8e89155b9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c6295b28-dbe2-4b9b-bbf7-e6c49b1a03e7}, !- Handle + {648b76df-a1e5-4183-8de5-f6a8e89155b9}, !- Source Object + 3, !- Outlet Port + {2e6c3a30-ae3e-4bf8-869c-ee9fdbb11ba8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b7dac958-9ba6-46d1-8e60-bd0cfe76c09b}, !- Handle + {2e6c3a30-ae3e-4bf8-869c-ee9fdbb11ba8}, !- Source Object + 3, !- Outlet Port + {1a7d5216-139a-4e3c-87da-c66c8f8fe76a}, !- Target Object + 3; !- Inlet Port + +OS:YearDescription, + {d3d3d0ff-22aa-446e-96ea-34af63a04d7d}, !- Handle + , !- Calendar Year + Thursday; !- Day of Week for Start Day + diff --git a/model/simulationtests/ghx_vertical_xing.py b/model/simulationtests/ghx_vertical_xing.py new file mode 100644 index 000000000..b27054202 --- /dev/null +++ b/model/simulationtests/ghx_vertical_xing.py @@ -0,0 +1,137 @@ +import openstudio + +from lib.baseline_model import BaselineModel + +model = BaselineModel() + +# No zones, just a LoadProfile:Plant + +# add design days to the model (Chicago) +model.add_design_days() + +USE_PIPE_INDOOR = False + +if openstudio.VersionString(openstudio.openStudioVersion()) <= openstudio.VersionString("3.5.1"): + raise ValueError("Cannot use XING on 3.5.1 and below") + +# Add a hot water plant to supply the water to air heat pump +# This could be baked into HVAC templates in the future +condenserWaterPlant = openstudio.model.PlantLoop(model) +condenserWaterPlant.setName("Condenser Water Plant") + +sizingPlant = condenserWaterPlant.sizingPlant() +sizingPlant.setLoopType("Heating") +sizingPlant.setDesignLoopExitTemperature(30.0) +sizingPlant.setLoopDesignTemperatureDifference(11.0) + +condenserWaterOutletNode = condenserWaterPlant.supplyOutletNode() +condenserWaterInletNode = condenserWaterPlant.supplyInletNode() + +pump = openstudio.model.PumpVariableSpeed(model) +pump.addToNode(condenserWaterInletNode) + +xing = openstudio.model.SiteGroundTemperatureUndisturbedXing(model) +xing.setSoilThermalConductivity(1.08) +xing.setSoilDensity(962) +xing.setSoilSpecificHeat(2576) +xing.setAverageSoilSurfaceTemperature(11.1) +xing.setSoilSurfaceTemperatureAmplitude1(13.4) +xing.setSoilSurfaceTemperatureAmplitude2(0.7) +xing.setPhaseShiftofTemperatureAmplitude1(25) +xing.setPhaseShiftofTemperatureAmplitude2(30) +hGroundHX2 = openstudio.model.GroundHeatExchangerVertical(model, xing) +condenserWaterPlant.addSupplyBranchForComponent(hGroundHX2) + +if USE_PIPE_INDOOR: + pipe_mat = openstudio.model.StandardOpaqueMaterial(model, "Smooth", 3.00e-03, 45.31, 7833.0, 500.0) + pipe_mat.setThermalAbsorptance(openstudio.OptionalDouble(0.9)) + pipe_mat.setSolarAbsorptance(openstudio.OptionalDouble(0.5)) + pipe_mat.setVisibleAbsorptance(openstudio.OptionalDouble(0.5)) + pipe_const = openstudio.model.Construction(model) + pipe_const.insertLayer(0, pipe_mat) + + pipe = openstudio.model.PipeIndoor(model) + pipe.setAmbientTemperatureZone(zone) + pipe.setConstruction(pipe_const) + condenserWaterPlant.addSupplyBranchForComponent(pipe) + + pipe2 = openstudio.model.PipeIndoor(model) + pipe2.setAmbientTemperatureZone(zone) + pipe2.setConstruction(pipe_const) + pipe2.addToNode(condenserWaterOutletNode) + + pipe3 = openstudio.model.PipeIndoor(model) + pipe3.setAmbientTemperatureZone(zone) + pipe3.setConstruction(pipe_const) + pipe3.addToNode(condenserWaterPlant.demandInletNode()) + + pipe4 = openstudio.model.PipeIndoor(model) + pipe4.setAmbientTemperatureZone(zone) + pipe4.setConstruction(pipe_const) + pipe4.addToNode(condenserWaterPlant.demandOutletNode()) + + pipe5 = openstudio.model.PipeIndoor(model) + pipe5.setAmbientTemperatureZone(zone) + pipe5.setConstruction(pipe_const) + condenserWaterPlant.addDemandBranchForComponent(pipe5) + + +## Make a condenser Water temperature schedule + +osTime = openstudio.Time(0, 24, 0, 0) + +condenserWaterTempSchedule = openstudio.model.ScheduleRuleset(model) +condenserWaterTempSchedule.setName("Condenser Water Temperature") + +### Winter Design Day +condenserWaterTempScheduleWinter = openstudio.model.ScheduleDay(model) +condenserWaterTempSchedule.setWinterDesignDaySchedule(condenserWaterTempScheduleWinter) +condenserWaterTempSchedule.winterDesignDaySchedule().setName("Condenser Water Temperature Winter Design Day") +condenserWaterTempSchedule.winterDesignDaySchedule().addValue(osTime, 24) + +### Summer Design Day +condenserWaterTempScheduleSummer = openstudio.model.ScheduleDay(model) +condenserWaterTempSchedule.setSummerDesignDaySchedule(condenserWaterTempScheduleSummer) +condenserWaterTempSchedule.summerDesignDaySchedule().setName("Condenser Water Temperature Summer Design Day") +condenserWaterTempSchedule.summerDesignDaySchedule().addValue(osTime, 24) + +### All other days +condenserWaterTempSchedule.defaultDaySchedule().setName("Condenser Water Temperature Default") +condenserWaterTempSchedule.defaultDaySchedule().addValue(osTime, 24) + +condenserWaterSPM = openstudio.model.SetpointManagerScheduled(model, condenserWaterTempSchedule) +condenserWaterSPM.addToNode(condenserWaterOutletNode) + +condenserWaterPlant.setMaximumLoopTemperature(80.0) +condenserWaterPlant.setMaximumLoopFlowRate(0.004) +condenserWaterPlant.setFluidType("PropyleneGlycol") +condenserWaterPlant.setGlycolConcentration(70) + +pump.setRatedFlowRate(0.004) +pump.setRatedPumpHead(5000.0) +pump.setRatedPowerConsumption(25.0) +pump.setFractionofMotorInefficienciestoFluidStream(0.0) +pump.setPumpControlType("Intermittent") + +# Load Profile +loadProfile = openstudio.model.LoadProfilePlant(model) +loadProfile.setPeakFlowRate(0.004) + +flowFracSchedule = openstudio.model.ScheduleConstant(model) +flowFracSchedule.setName("FlowFracSchedule") +flowFracSchedule.setValue(1.0) +loadProfile.setFlowRateFractionSchedule(flowFracSchedule) + +loadSchedule = openstudio.model.ScheduleRuleset(model) +loadSchedule.setName("LoadSchedule") +loadSchedule.defaultDaySchedule().addValue(osTime, 2000.0) +loadSchedule_may_to_sept_rule = openstudio.model.ScheduleRule(loadSchedule) +loadSchedule_may_to_sept_rule.setStartDate(openstudio.Date(openstudio.MonthOfYear("May"), 1)) +loadSchedule_may_to_sept_rule.setEndDate(openstudio.Date(openstudio.MonthOfYear("September"), 30)) +loadSchedule_may_to_sept_rule.daySchedule().addValue(osTime, -3000.0) +loadProfile.setLoadSchedule(loadSchedule) + +condenserWaterPlant.addDemandBranchForComponent(loadProfile) + +# save the OpenStudio model (.osm) +model.save_openstudio_osm(osm_save_directory=None, osm_name="in.osm") diff --git a/model_tests.rb b/model_tests.rb index a5da11265..309db1c2d 100644 --- a/model_tests.rb +++ b/model_tests.rb @@ -818,19 +818,25 @@ def test_ghx_vertical_kusuda_rb result = sim_test('ghx_vertical_kusuda.rb') end - # TODO: To be added in the next official release after: 3.6.1 - # def test_ghx_vertical_kusuda_osm - # result = sim_test('ghx_vertical_kusuda.osm') - # end + def test_ghx_vertical_kusuda_py + result = sim_test('ghx_vertical_kusuda.py') + end + + def test_ghx_vertical_kusuda_osm + result = sim_test('ghx_vertical_kusuda.osm') + end def test_ghx_vertical_xing_rb result = sim_test('ghx_vertical_xing.rb') end - # TODO: To be added in the next official release after: 3.6.1 - # def test_ghx_vertical_xing_osm - # result = sim_test('ghx_vertical_xing.osm') - # end + def test_ghx_vertical_xing_py + result = sim_test('ghx_vertical_xing.py') + end + + def test_ghx_vertical_xing_osm + result = sim_test('ghx_vertical_xing.osm') + end def test_coil_waterheating_desuperheater_osm result = sim_test('coil_waterheating_desuperheater.osm') diff --git a/test/ghx_vertical_kusuda.osm_3.7.0_out.osw b/test/ghx_vertical_kusuda.osm_3.7.0_out.osw new file mode 100644 index 000000000..8dc95c078 --- /dev/null +++ b/test/ghx_vertical_kusuda.osm_3.7.0_out.osw @@ -0,0 +1,1614 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.2.0-7636e6b3e9, ", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 2\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 3\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Constant=\"ALWAYS OFF DISCRETE\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Constant=\"ALWAYS ON CONTINUOUS\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** Borehole shank spacing is less than the pipe diameter. U-tube spacing is reference from the u-tube pipe center.", + " ** Warning ** Shank spacing is set to the outer pipe diameter.", + " ** Warning ** Output:Meter: invalid Key Name=\"NATURALGAS:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING:FACILITY\" - not found.", + " ** Warning ** Output:Meter:MeterFileOnly: invalid Key Name=\"NATURALGAS:FACILITY\" - not found.", + " ** Warning ** Output:Meter:MeterFileOnly requested for \"Electricity:Facility\" (TimeStep), already on \"Output:Meter\". Will report to both eplusout.eso and eplusout.mtr", + " ************* Testing Individual Branch Integrity", + " ************* All Branches passed integrity testing", + " ************* Testing Individual Supply Air Path Integrity", + " ************* All Supply Air Paths passed integrity testing", + " ************* Testing Individual Return Air Path Integrity", + " ************* All Return Air Paths passed integrity testing", + " ************* No node connection errors were found.", + " ************* Beginning Simulation", + " ** Warning ** Processing Monthly Tabular Reports: Variable names not valid for this simulation", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual variables.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-ELECTRICITY\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-DISTILLATE OIL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-RESIDUAL OIL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-NATURAL GAS\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-COAL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ************* Simulation Error Summary *************", + " ** Warning ** The following Report Variables were requested but not generated -- check.rdd file", + " ** ~~~ ** Either the IDF did not contain these elements, the variable name is misspelled,", + " ** ~~~ ** or the requested variable is an advanced output which requires Output : Diagnostics, DisplayAdvancedReportVariables;", + " ************* Key=*, VarName=ZONE AIR TEMPERATURE, Frequency=Hourly", + " ************* Key=*, VarName=ZONE AIR RELATIVE HUMIDITY, Frequency=Hourly", + " ************* There are 3 unused schedules in input.", + " ************* There are 3 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/home/julien/Software/Others/OpenStudio-resources/testruns/ghx_vertical_kusuda.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": null, + "seed_file": "in.osm", + "steps": [ + { + "arguments": { + }, + "measure_dir_name": "openstudio_results", + "result": { + "measure_class_name": "OpenStudioResults", + "measure_display_name": "OpenStudio Results", + "measure_name": "openstudio_results", + "measure_taxonomy": "Reporting.QAQC", + "measure_type": "ReportingMeasure", + "measure_uid": "a25386cd-60e4-46bc-8b11-c755f379d916", + "measure_version_id": "02ad7007-fe7b-4747-bd7a-29d697c4d91a", + "measure_version_modified": "20180711T183039Z", + "measure_xml_checksum": "557BF06F", + "stderr": "", + "stdout": "", + "step_errors": [ + + ], + "step_final_condition": "Generated report with 21 sections to ./report.html.", + "step_info": [ + + ], + "step_initial_condition": "Gathering data from EnergyPlus SQL file and OSM model.", + "step_result": "Success", + "step_values": [ + { + "name": "building_summary_section", + "value": true + }, + { + "name": "annual_overview_section", + "value": true + }, + { + "name": "monthly_overview_section", + "value": true + }, + { + "name": "utility_bills_rates_section", + "value": true + }, + { + "name": "envelope_section_section", + "value": true + }, + { + "name": "space_type_breakdown_section", + "value": true + }, + { + "name": "space_type_details_section", + "value": true + }, + { + "name": "interior_lighting_section", + "value": true + }, + { + "name": "plug_loads_section", + "value": true + }, + { + "name": "exterior_light_section", + "value": true + }, + { + "name": "water_use_section", + "value": true + }, + { + "name": "hvac_load_profile", + "value": true + }, + { + "name": "zone_condition_section", + "value": true + }, + { + "name": "zone_summary_section", + "value": true + }, + { + "name": "zone_equipment_detail_section", + "value": true + }, + { + "name": "air_loops_detail_section", + "value": true + }, + { + "name": "plant_loops_detail_section", + "value": true + }, + { + "name": "outdoor_air_section", + "value": true + }, + { + "name": "cost_summary_section", + "value": true + }, + { + "name": "source_energy_section", + "value": true + }, + { + "name": "schedules_overview_section", + "value": true + }, + { + "name": "standards_gem_version", + "value": "0.5.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 0.0 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_tolerance_heating", + "units": "F", + "value": 0.36 + }, + { + "name": "unmet_hours_tolerance_cooling", + "units": "F", + "value": 0.36 + }, + { + "name": "end_use_heating", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_humidification", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_heat_recovery", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_water_systems", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_refrigeration", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_generators", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_electricity", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_gasoline", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_diesel", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_coal", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_fuel_oil_no_1", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_fuel_oil_no_2", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_propane", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_other_fuel_1", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_other_fuel_2", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating_water", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating_steam", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 180.56 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_humidification", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_heat_recovery", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_water_systems", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_refrigeration", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_generators", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heating", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_cooling", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_interior_lighting", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_exterior_lighting", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_interior_equipment", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_exterior_equipment", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_fans", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_pumps", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heat_rejection", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_humidification", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heat_recovery", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_water_systems", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_refrigeration", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_generators", + "units": "therms", + "value": 0.0 + }, + { + "name": "electricity_heating_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_cooling_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 179.93 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_humidification_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_heat_recovery_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_water_systems_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_refrigeration_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_generators_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_ip", + "units": "kWh", + "value": 179.93 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 0.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 180.56 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 0.02 + }, + { + "name": "first_year_capital_cost", + "units": "$", + "value": 0.0 + }, + { + "name": "annual_utility_cost", + "units": "$", + "value": 0.0 + }, + { + "name": "total_lifecycle_cost", + "units": "$", + "value": 0.0 + } + ], + "step_warnings": [ + + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file diff --git a/test/ghx_vertical_kusuda.py_3.7.0_out.osw b/test/ghx_vertical_kusuda.py_3.7.0_out.osw new file mode 100644 index 000000000..f5d06699d --- /dev/null +++ b/test/ghx_vertical_kusuda.py_3.7.0_out.osw @@ -0,0 +1,1614 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.2.0-7636e6b3e9, ", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 2\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 3\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Constant=\"ALWAYS OFF DISCRETE\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Constant=\"ALWAYS ON CONTINUOUS\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** Borehole shank spacing is less than the pipe diameter. U-tube spacing is reference from the u-tube pipe center.", + " ** Warning ** Shank spacing is set to the outer pipe diameter.", + " ** Warning ** Output:Meter: invalid Key Name=\"NATURALGAS:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING:FACILITY\" - not found.", + " ** Warning ** Output:Meter:MeterFileOnly: invalid Key Name=\"NATURALGAS:FACILITY\" - not found.", + " ** Warning ** Output:Meter:MeterFileOnly requested for \"Electricity:Facility\" (TimeStep), already on \"Output:Meter\". Will report to both eplusout.eso and eplusout.mtr", + " ************* Testing Individual Branch Integrity", + " ************* All Branches passed integrity testing", + " ************* Testing Individual Supply Air Path Integrity", + " ************* All Supply Air Paths passed integrity testing", + " ************* Testing Individual Return Air Path Integrity", + " ************* All Return Air Paths passed integrity testing", + " ************* No node connection errors were found.", + " ************* Beginning Simulation", + " ** Warning ** Processing Monthly Tabular Reports: Variable names not valid for this simulation", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual variables.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-ELECTRICITY\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-DISTILLATE OIL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-RESIDUAL OIL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-NATURAL GAS\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-COAL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ************* Simulation Error Summary *************", + " ** Warning ** The following Report Variables were requested but not generated -- check.rdd file", + " ** ~~~ ** Either the IDF did not contain these elements, the variable name is misspelled,", + " ** ~~~ ** or the requested variable is an advanced output which requires Output : Diagnostics, DisplayAdvancedReportVariables;", + " ************* Key=*, VarName=ZONE AIR TEMPERATURE, Frequency=Hourly", + " ************* Key=*, VarName=ZONE AIR RELATIVE HUMIDITY, Frequency=Hourly", + " ************* There are 3 unused schedules in input.", + " ************* There are 3 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/home/julien/Software/Others/OpenStudio-resources/testruns/ghx_vertical_kusuda.py/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": null, + "seed_file": "in.osm", + "steps": [ + { + "arguments": { + }, + "measure_dir_name": "openstudio_results", + "result": { + "measure_class_name": "OpenStudioResults", + "measure_display_name": "OpenStudio Results", + "measure_name": "openstudio_results", + "measure_taxonomy": "Reporting.QAQC", + "measure_type": "ReportingMeasure", + "measure_uid": "a25386cd-60e4-46bc-8b11-c755f379d916", + "measure_version_id": "02ad7007-fe7b-4747-bd7a-29d697c4d91a", + "measure_version_modified": "20180711T183039Z", + "measure_xml_checksum": "557BF06F", + "stderr": "", + "stdout": "", + "step_errors": [ + + ], + "step_final_condition": "Generated report with 21 sections to ./report.html.", + "step_info": [ + + ], + "step_initial_condition": "Gathering data from EnergyPlus SQL file and OSM model.", + "step_result": "Success", + "step_values": [ + { + "name": "building_summary_section", + "value": true + }, + { + "name": "annual_overview_section", + "value": true + }, + { + "name": "monthly_overview_section", + "value": true + }, + { + "name": "utility_bills_rates_section", + "value": true + }, + { + "name": "envelope_section_section", + "value": true + }, + { + "name": "space_type_breakdown_section", + "value": true + }, + { + "name": "space_type_details_section", + "value": true + }, + { + "name": "interior_lighting_section", + "value": true + }, + { + "name": "plug_loads_section", + "value": true + }, + { + "name": "exterior_light_section", + "value": true + }, + { + "name": "water_use_section", + "value": true + }, + { + "name": "hvac_load_profile", + "value": true + }, + { + "name": "zone_condition_section", + "value": true + }, + { + "name": "zone_summary_section", + "value": true + }, + { + "name": "zone_equipment_detail_section", + "value": true + }, + { + "name": "air_loops_detail_section", + "value": true + }, + { + "name": "plant_loops_detail_section", + "value": true + }, + { + "name": "outdoor_air_section", + "value": true + }, + { + "name": "cost_summary_section", + "value": true + }, + { + "name": "source_energy_section", + "value": true + }, + { + "name": "schedules_overview_section", + "value": true + }, + { + "name": "standards_gem_version", + "value": "0.5.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 0.0 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_tolerance_heating", + "units": "F", + "value": 0.36 + }, + { + "name": "unmet_hours_tolerance_cooling", + "units": "F", + "value": 0.36 + }, + { + "name": "end_use_heating", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_humidification", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_heat_recovery", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_water_systems", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_refrigeration", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_generators", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_electricity", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_gasoline", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_diesel", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_coal", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_fuel_oil_no_1", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_fuel_oil_no_2", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_propane", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_other_fuel_1", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_other_fuel_2", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating_water", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating_steam", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 180.56 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_humidification", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_heat_recovery", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_water_systems", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_refrigeration", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_generators", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heating", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_cooling", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_interior_lighting", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_exterior_lighting", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_interior_equipment", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_exterior_equipment", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_fans", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_pumps", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heat_rejection", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_humidification", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heat_recovery", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_water_systems", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_refrigeration", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_generators", + "units": "therms", + "value": 0.0 + }, + { + "name": "electricity_heating_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_cooling_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 179.93 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_humidification_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_heat_recovery_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_water_systems_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_refrigeration_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_generators_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_ip", + "units": "kWh", + "value": 179.93 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 0.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 180.56 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 0.02 + }, + { + "name": "first_year_capital_cost", + "units": "$", + "value": 0.0 + }, + { + "name": "annual_utility_cost", + "units": "$", + "value": 0.0 + }, + { + "name": "total_lifecycle_cost", + "units": "$", + "value": 0.0 + } + ], + "step_warnings": [ + + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file diff --git a/test/ghx_vertical_kusuda.rb_3.7.0_out.osw b/test/ghx_vertical_kusuda.rb_3.7.0_out.osw new file mode 100644 index 000000000..4376022c9 --- /dev/null +++ b/test/ghx_vertical_kusuda.rb_3.7.0_out.osw @@ -0,0 +1,1614 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.2.0-7636e6b3e9, ", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 2\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 3\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Constant=\"ALWAYS OFF DISCRETE\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Constant=\"ALWAYS ON CONTINUOUS\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** Borehole shank spacing is less than the pipe diameter. U-tube spacing is reference from the u-tube pipe center.", + " ** Warning ** Shank spacing is set to the outer pipe diameter.", + " ** Warning ** Output:Meter: invalid Key Name=\"NATURALGAS:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING:FACILITY\" - not found.", + " ** Warning ** Output:Meter:MeterFileOnly: invalid Key Name=\"NATURALGAS:FACILITY\" - not found.", + " ** Warning ** Output:Meter:MeterFileOnly requested for \"Electricity:Facility\" (TimeStep), already on \"Output:Meter\". Will report to both eplusout.eso and eplusout.mtr", + " ************* Testing Individual Branch Integrity", + " ************* All Branches passed integrity testing", + " ************* Testing Individual Supply Air Path Integrity", + " ************* All Supply Air Paths passed integrity testing", + " ************* Testing Individual Return Air Path Integrity", + " ************* All Return Air Paths passed integrity testing", + " ************* No node connection errors were found.", + " ************* Beginning Simulation", + " ** Warning ** Processing Monthly Tabular Reports: Variable names not valid for this simulation", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual variables.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-ELECTRICITY\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-DISTILLATE OIL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-RESIDUAL OIL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-NATURAL GAS\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-COAL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ************* Simulation Error Summary *************", + " ** Warning ** The following Report Variables were requested but not generated -- check.rdd file", + " ** ~~~ ** Either the IDF did not contain these elements, the variable name is misspelled,", + " ** ~~~ ** or the requested variable is an advanced output which requires Output : Diagnostics, DisplayAdvancedReportVariables;", + " ************* Key=*, VarName=ZONE AIR TEMPERATURE, Frequency=Hourly", + " ************* Key=*, VarName=ZONE AIR RELATIVE HUMIDITY, Frequency=Hourly", + " ************* There are 3 unused schedules in input.", + " ************* There are 3 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/home/julien/Software/Others/OpenStudio-resources/testruns/ghx_vertical_kusuda.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": null, + "seed_file": "in.osm", + "steps": [ + { + "arguments": { + }, + "measure_dir_name": "openstudio_results", + "result": { + "measure_class_name": "OpenStudioResults", + "measure_display_name": "OpenStudio Results", + "measure_name": "openstudio_results", + "measure_taxonomy": "Reporting.QAQC", + "measure_type": "ReportingMeasure", + "measure_uid": "a25386cd-60e4-46bc-8b11-c755f379d916", + "measure_version_id": "02ad7007-fe7b-4747-bd7a-29d697c4d91a", + "measure_version_modified": "20180711T183039Z", + "measure_xml_checksum": "557BF06F", + "stderr": "", + "stdout": "", + "step_errors": [ + + ], + "step_final_condition": "Generated report with 21 sections to ./report.html.", + "step_info": [ + + ], + "step_initial_condition": "Gathering data from EnergyPlus SQL file and OSM model.", + "step_result": "Success", + "step_values": [ + { + "name": "building_summary_section", + "value": true + }, + { + "name": "annual_overview_section", + "value": true + }, + { + "name": "monthly_overview_section", + "value": true + }, + { + "name": "utility_bills_rates_section", + "value": true + }, + { + "name": "envelope_section_section", + "value": true + }, + { + "name": "space_type_breakdown_section", + "value": true + }, + { + "name": "space_type_details_section", + "value": true + }, + { + "name": "interior_lighting_section", + "value": true + }, + { + "name": "plug_loads_section", + "value": true + }, + { + "name": "exterior_light_section", + "value": true + }, + { + "name": "water_use_section", + "value": true + }, + { + "name": "hvac_load_profile", + "value": true + }, + { + "name": "zone_condition_section", + "value": true + }, + { + "name": "zone_summary_section", + "value": true + }, + { + "name": "zone_equipment_detail_section", + "value": true + }, + { + "name": "air_loops_detail_section", + "value": true + }, + { + "name": "plant_loops_detail_section", + "value": true + }, + { + "name": "outdoor_air_section", + "value": true + }, + { + "name": "cost_summary_section", + "value": true + }, + { + "name": "source_energy_section", + "value": true + }, + { + "name": "schedules_overview_section", + "value": true + }, + { + "name": "standards_gem_version", + "value": "0.5.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 0.0 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_tolerance_heating", + "units": "F", + "value": 0.36 + }, + { + "name": "unmet_hours_tolerance_cooling", + "units": "F", + "value": 0.36 + }, + { + "name": "end_use_heating", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_humidification", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_heat_recovery", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_water_systems", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_refrigeration", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_generators", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_electricity", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_gasoline", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_diesel", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_coal", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_fuel_oil_no_1", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_fuel_oil_no_2", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_propane", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_other_fuel_1", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_other_fuel_2", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating_water", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating_steam", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 180.56 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_humidification", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_heat_recovery", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_water_systems", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_refrigeration", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_generators", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heating", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_cooling", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_interior_lighting", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_exterior_lighting", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_interior_equipment", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_exterior_equipment", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_fans", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_pumps", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heat_rejection", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_humidification", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heat_recovery", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_water_systems", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_refrigeration", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_generators", + "units": "therms", + "value": 0.0 + }, + { + "name": "electricity_heating_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_cooling_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 179.93 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_humidification_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_heat_recovery_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_water_systems_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_refrigeration_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_generators_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_ip", + "units": "kWh", + "value": 179.93 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 0.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 180.56 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 0.02 + }, + { + "name": "first_year_capital_cost", + "units": "$", + "value": 0.0 + }, + { + "name": "annual_utility_cost", + "units": "$", + "value": 0.0 + }, + { + "name": "total_lifecycle_cost", + "units": "$", + "value": 0.0 + } + ], + "step_warnings": [ + + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file diff --git a/test/ghx_vertical_xing.osm_3.7.0_out.osw b/test/ghx_vertical_xing.osm_3.7.0_out.osw new file mode 100644 index 000000000..9d03b3114 --- /dev/null +++ b/test/ghx_vertical_xing.osm_3.7.0_out.osw @@ -0,0 +1,1614 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.2.0-7636e6b3e9, ", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 2\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 3\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Constant=\"ALWAYS OFF DISCRETE\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Constant=\"ALWAYS ON CONTINUOUS\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** Borehole shank spacing is less than the pipe diameter. U-tube spacing is reference from the u-tube pipe center.", + " ** Warning ** Shank spacing is set to the outer pipe diameter.", + " ** Warning ** Output:Meter: invalid Key Name=\"NATURALGAS:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING:FACILITY\" - not found.", + " ** Warning ** Output:Meter:MeterFileOnly: invalid Key Name=\"NATURALGAS:FACILITY\" - not found.", + " ** Warning ** Output:Meter:MeterFileOnly requested for \"Electricity:Facility\" (TimeStep), already on \"Output:Meter\". Will report to both eplusout.eso and eplusout.mtr", + " ************* Testing Individual Branch Integrity", + " ************* All Branches passed integrity testing", + " ************* Testing Individual Supply Air Path Integrity", + " ************* All Supply Air Paths passed integrity testing", + " ************* Testing Individual Return Air Path Integrity", + " ************* All Return Air Paths passed integrity testing", + " ************* No node connection errors were found.", + " ************* Beginning Simulation", + " ** Warning ** Processing Monthly Tabular Reports: Variable names not valid for this simulation", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual variables.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-ELECTRICITY\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-DISTILLATE OIL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-RESIDUAL OIL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-NATURAL GAS\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-COAL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ************* Simulation Error Summary *************", + " ** Warning ** The following Report Variables were requested but not generated -- check.rdd file", + " ** ~~~ ** Either the IDF did not contain these elements, the variable name is misspelled,", + " ** ~~~ ** or the requested variable is an advanced output which requires Output : Diagnostics, DisplayAdvancedReportVariables;", + " ************* Key=*, VarName=ZONE AIR TEMPERATURE, Frequency=Hourly", + " ************* Key=*, VarName=ZONE AIR RELATIVE HUMIDITY, Frequency=Hourly", + " ************* There are 3 unused schedules in input.", + " ************* There are 3 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/home/julien/Software/Others/OpenStudio-resources/testruns/ghx_vertical_xing.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": null, + "seed_file": "in.osm", + "steps": [ + { + "arguments": { + }, + "measure_dir_name": "openstudio_results", + "result": { + "measure_class_name": "OpenStudioResults", + "measure_display_name": "OpenStudio Results", + "measure_name": "openstudio_results", + "measure_taxonomy": "Reporting.QAQC", + "measure_type": "ReportingMeasure", + "measure_uid": "a25386cd-60e4-46bc-8b11-c755f379d916", + "measure_version_id": "02ad7007-fe7b-4747-bd7a-29d697c4d91a", + "measure_version_modified": "20180711T183039Z", + "measure_xml_checksum": "557BF06F", + "stderr": "", + "stdout": "", + "step_errors": [ + + ], + "step_final_condition": "Generated report with 21 sections to ./report.html.", + "step_info": [ + + ], + "step_initial_condition": "Gathering data from EnergyPlus SQL file and OSM model.", + "step_result": "Success", + "step_values": [ + { + "name": "building_summary_section", + "value": true + }, + { + "name": "annual_overview_section", + "value": true + }, + { + "name": "monthly_overview_section", + "value": true + }, + { + "name": "utility_bills_rates_section", + "value": true + }, + { + "name": "envelope_section_section", + "value": true + }, + { + "name": "space_type_breakdown_section", + "value": true + }, + { + "name": "space_type_details_section", + "value": true + }, + { + "name": "interior_lighting_section", + "value": true + }, + { + "name": "plug_loads_section", + "value": true + }, + { + "name": "exterior_light_section", + "value": true + }, + { + "name": "water_use_section", + "value": true + }, + { + "name": "hvac_load_profile", + "value": true + }, + { + "name": "zone_condition_section", + "value": true + }, + { + "name": "zone_summary_section", + "value": true + }, + { + "name": "zone_equipment_detail_section", + "value": true + }, + { + "name": "air_loops_detail_section", + "value": true + }, + { + "name": "plant_loops_detail_section", + "value": true + }, + { + "name": "outdoor_air_section", + "value": true + }, + { + "name": "cost_summary_section", + "value": true + }, + { + "name": "source_energy_section", + "value": true + }, + { + "name": "schedules_overview_section", + "value": true + }, + { + "name": "standards_gem_version", + "value": "0.5.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 0.0 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_tolerance_heating", + "units": "F", + "value": 0.36 + }, + { + "name": "unmet_hours_tolerance_cooling", + "units": "F", + "value": 0.36 + }, + { + "name": "end_use_heating", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_humidification", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_heat_recovery", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_water_systems", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_refrigeration", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_generators", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_electricity", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_gasoline", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_diesel", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_coal", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_fuel_oil_no_1", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_fuel_oil_no_2", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_propane", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_other_fuel_1", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_other_fuel_2", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating_water", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating_steam", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 180.56 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_humidification", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_heat_recovery", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_water_systems", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_refrigeration", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_generators", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heating", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_cooling", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_interior_lighting", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_exterior_lighting", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_interior_equipment", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_exterior_equipment", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_fans", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_pumps", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heat_rejection", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_humidification", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heat_recovery", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_water_systems", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_refrigeration", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_generators", + "units": "therms", + "value": 0.0 + }, + { + "name": "electricity_heating_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_cooling_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 179.71 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_humidification_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_heat_recovery_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_water_systems_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_refrigeration_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_generators_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_ip", + "units": "kWh", + "value": 179.71 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 0.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 180.56 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 0.02 + }, + { + "name": "first_year_capital_cost", + "units": "$", + "value": 0.0 + }, + { + "name": "annual_utility_cost", + "units": "$", + "value": 0.0 + }, + { + "name": "total_lifecycle_cost", + "units": "$", + "value": 0.0 + } + ], + "step_warnings": [ + + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file diff --git a/test/ghx_vertical_xing.py_3.7.0_out.osw b/test/ghx_vertical_xing.py_3.7.0_out.osw new file mode 100644 index 000000000..a88486e49 --- /dev/null +++ b/test/ghx_vertical_xing.py_3.7.0_out.osw @@ -0,0 +1,1614 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.2.0-7636e6b3e9, ", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 2\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 3\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Constant=\"ALWAYS OFF DISCRETE\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Constant=\"ALWAYS ON CONTINUOUS\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** Borehole shank spacing is less than the pipe diameter. U-tube spacing is reference from the u-tube pipe center.", + " ** Warning ** Shank spacing is set to the outer pipe diameter.", + " ** Warning ** Output:Meter: invalid Key Name=\"NATURALGAS:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING:FACILITY\" - not found.", + " ** Warning ** Output:Meter:MeterFileOnly: invalid Key Name=\"NATURALGAS:FACILITY\" - not found.", + " ** Warning ** Output:Meter:MeterFileOnly requested for \"Electricity:Facility\" (TimeStep), already on \"Output:Meter\". Will report to both eplusout.eso and eplusout.mtr", + " ************* Testing Individual Branch Integrity", + " ************* All Branches passed integrity testing", + " ************* Testing Individual Supply Air Path Integrity", + " ************* All Supply Air Paths passed integrity testing", + " ************* Testing Individual Return Air Path Integrity", + " ************* All Return Air Paths passed integrity testing", + " ************* No node connection errors were found.", + " ************* Beginning Simulation", + " ** Warning ** Processing Monthly Tabular Reports: Variable names not valid for this simulation", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual variables.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-ELECTRICITY\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-DISTILLATE OIL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-RESIDUAL OIL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-NATURAL GAS\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-COAL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ************* Simulation Error Summary *************", + " ** Warning ** The following Report Variables were requested but not generated -- check.rdd file", + " ** ~~~ ** Either the IDF did not contain these elements, the variable name is misspelled,", + " ** ~~~ ** or the requested variable is an advanced output which requires Output : Diagnostics, DisplayAdvancedReportVariables;", + " ************* Key=*, VarName=ZONE AIR TEMPERATURE, Frequency=Hourly", + " ************* Key=*, VarName=ZONE AIR RELATIVE HUMIDITY, Frequency=Hourly", + " ************* There are 3 unused schedules in input.", + " ************* There are 3 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/home/julien/Software/Others/OpenStudio-resources/testruns/ghx_vertical_xing.py/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": null, + "seed_file": "in.osm", + "steps": [ + { + "arguments": { + }, + "measure_dir_name": "openstudio_results", + "result": { + "measure_class_name": "OpenStudioResults", + "measure_display_name": "OpenStudio Results", + "measure_name": "openstudio_results", + "measure_taxonomy": "Reporting.QAQC", + "measure_type": "ReportingMeasure", + "measure_uid": "a25386cd-60e4-46bc-8b11-c755f379d916", + "measure_version_id": "02ad7007-fe7b-4747-bd7a-29d697c4d91a", + "measure_version_modified": "20180711T183039Z", + "measure_xml_checksum": "557BF06F", + "stderr": "", + "stdout": "", + "step_errors": [ + + ], + "step_final_condition": "Generated report with 21 sections to ./report.html.", + "step_info": [ + + ], + "step_initial_condition": "Gathering data from EnergyPlus SQL file and OSM model.", + "step_result": "Success", + "step_values": [ + { + "name": "building_summary_section", + "value": true + }, + { + "name": "annual_overview_section", + "value": true + }, + { + "name": "monthly_overview_section", + "value": true + }, + { + "name": "utility_bills_rates_section", + "value": true + }, + { + "name": "envelope_section_section", + "value": true + }, + { + "name": "space_type_breakdown_section", + "value": true + }, + { + "name": "space_type_details_section", + "value": true + }, + { + "name": "interior_lighting_section", + "value": true + }, + { + "name": "plug_loads_section", + "value": true + }, + { + "name": "exterior_light_section", + "value": true + }, + { + "name": "water_use_section", + "value": true + }, + { + "name": "hvac_load_profile", + "value": true + }, + { + "name": "zone_condition_section", + "value": true + }, + { + "name": "zone_summary_section", + "value": true + }, + { + "name": "zone_equipment_detail_section", + "value": true + }, + { + "name": "air_loops_detail_section", + "value": true + }, + { + "name": "plant_loops_detail_section", + "value": true + }, + { + "name": "outdoor_air_section", + "value": true + }, + { + "name": "cost_summary_section", + "value": true + }, + { + "name": "source_energy_section", + "value": true + }, + { + "name": "schedules_overview_section", + "value": true + }, + { + "name": "standards_gem_version", + "value": "0.5.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 0.0 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_tolerance_heating", + "units": "F", + "value": 0.36 + }, + { + "name": "unmet_hours_tolerance_cooling", + "units": "F", + "value": 0.36 + }, + { + "name": "end_use_heating", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_humidification", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_heat_recovery", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_water_systems", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_refrigeration", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_generators", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_electricity", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_gasoline", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_diesel", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_coal", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_fuel_oil_no_1", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_fuel_oil_no_2", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_propane", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_other_fuel_1", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_other_fuel_2", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating_water", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating_steam", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 180.56 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_humidification", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_heat_recovery", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_water_systems", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_refrigeration", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_generators", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heating", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_cooling", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_interior_lighting", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_exterior_lighting", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_interior_equipment", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_exterior_equipment", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_fans", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_pumps", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heat_rejection", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_humidification", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heat_recovery", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_water_systems", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_refrigeration", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_generators", + "units": "therms", + "value": 0.0 + }, + { + "name": "electricity_heating_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_cooling_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 179.71 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_humidification_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_heat_recovery_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_water_systems_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_refrigeration_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_generators_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_ip", + "units": "kWh", + "value": 179.71 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 0.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 180.56 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 0.02 + }, + { + "name": "first_year_capital_cost", + "units": "$", + "value": 0.0 + }, + { + "name": "annual_utility_cost", + "units": "$", + "value": 0.0 + }, + { + "name": "total_lifecycle_cost", + "units": "$", + "value": 0.0 + } + ], + "step_warnings": [ + + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file diff --git a/test/ghx_vertical_xing.rb_3.7.0_out.osw b/test/ghx_vertical_xing.rb_3.7.0_out.osw new file mode 100644 index 000000000..35102c478 --- /dev/null +++ b/test/ghx_vertical_xing.rb_3.7.0_out.osw @@ -0,0 +1,1614 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.2.0-7636e6b3e9, ", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 2\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 3\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Constant=\"ALWAYS OFF DISCRETE\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Constant=\"ALWAYS ON CONTINUOUS\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** Borehole shank spacing is less than the pipe diameter. U-tube spacing is reference from the u-tube pipe center.", + " ** Warning ** Shank spacing is set to the outer pipe diameter.", + " ** Warning ** Output:Meter: invalid Key Name=\"NATURALGAS:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING:FACILITY\" - not found.", + " ** Warning ** Output:Meter:MeterFileOnly: invalid Key Name=\"NATURALGAS:FACILITY\" - not found.", + " ** Warning ** Output:Meter:MeterFileOnly requested for \"Electricity:Facility\" (TimeStep), already on \"Output:Meter\". Will report to both eplusout.eso and eplusout.mtr", + " ************* Testing Individual Branch Integrity", + " ************* All Branches passed integrity testing", + " ************* Testing Individual Supply Air Path Integrity", + " ************* All Supply Air Paths passed integrity testing", + " ************* Testing Individual Return Air Path Integrity", + " ************* All Return Air Paths passed integrity testing", + " ************* No node connection errors were found.", + " ************* Beginning Simulation", + " ** Warning ** Processing Monthly Tabular Reports: Variable names not valid for this simulation", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual variables.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-ELECTRICITY\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-DISTILLATE OIL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-RESIDUAL OIL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-NATURAL GAS\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ** Warning ** The resource referenced by LifeCycleCost:UsePriceEscalation= \"U.S. AVG COMMERCIAL-COAL\" has no energy cost. ", + " ** ~~~ ** ... It is likely that the wrong resource is used. The resource should match the meter used in Utility:Tariff.", + " ************* Simulation Error Summary *************", + " ** Warning ** The following Report Variables were requested but not generated -- check.rdd file", + " ** ~~~ ** Either the IDF did not contain these elements, the variable name is misspelled,", + " ** ~~~ ** or the requested variable is an advanced output which requires Output : Diagnostics, DisplayAdvancedReportVariables;", + " ************* Key=*, VarName=ZONE AIR TEMPERATURE, Frequency=Hourly", + " ************* Key=*, VarName=ZONE AIR RELATIVE HUMIDITY, Frequency=Hourly", + " ************* There are 3 unused schedules in input.", + " ************* There are 3 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/home/julien/Software/Others/OpenStudio-resources/testruns/ghx_vertical_xing.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": null, + "seed_file": "in.osm", + "steps": [ + { + "arguments": { + }, + "measure_dir_name": "openstudio_results", + "result": { + "measure_class_name": "OpenStudioResults", + "measure_display_name": "OpenStudio Results", + "measure_name": "openstudio_results", + "measure_taxonomy": "Reporting.QAQC", + "measure_type": "ReportingMeasure", + "measure_uid": "a25386cd-60e4-46bc-8b11-c755f379d916", + "measure_version_id": "02ad7007-fe7b-4747-bd7a-29d697c4d91a", + "measure_version_modified": "20180711T183039Z", + "measure_xml_checksum": "557BF06F", + "stderr": "", + "stdout": "", + "step_errors": [ + + ], + "step_final_condition": "Generated report with 21 sections to ./report.html.", + "step_info": [ + + ], + "step_initial_condition": "Gathering data from EnergyPlus SQL file and OSM model.", + "step_result": "Success", + "step_values": [ + { + "name": "building_summary_section", + "value": true + }, + { + "name": "annual_overview_section", + "value": true + }, + { + "name": "monthly_overview_section", + "value": true + }, + { + "name": "utility_bills_rates_section", + "value": true + }, + { + "name": "envelope_section_section", + "value": true + }, + { + "name": "space_type_breakdown_section", + "value": true + }, + { + "name": "space_type_details_section", + "value": true + }, + { + "name": "interior_lighting_section", + "value": true + }, + { + "name": "plug_loads_section", + "value": true + }, + { + "name": "exterior_light_section", + "value": true + }, + { + "name": "water_use_section", + "value": true + }, + { + "name": "hvac_load_profile", + "value": true + }, + { + "name": "zone_condition_section", + "value": true + }, + { + "name": "zone_summary_section", + "value": true + }, + { + "name": "zone_equipment_detail_section", + "value": true + }, + { + "name": "air_loops_detail_section", + "value": true + }, + { + "name": "plant_loops_detail_section", + "value": true + }, + { + "name": "outdoor_air_section", + "value": true + }, + { + "name": "cost_summary_section", + "value": true + }, + { + "name": "source_energy_section", + "value": true + }, + { + "name": "schedules_overview_section", + "value": true + }, + { + "name": "standards_gem_version", + "value": "0.5.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 0.0 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_tolerance_heating", + "units": "F", + "value": 0.36 + }, + { + "name": "unmet_hours_tolerance_cooling", + "units": "F", + "value": 0.36 + }, + { + "name": "end_use_heating", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_humidification", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_heat_recovery", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_water_systems", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_refrigeration", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_generators", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_electricity", + "units": "kBtu", + "value": 616.08 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_gasoline", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_diesel", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_coal", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_fuel_oil_no_1", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_fuel_oil_no_2", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_propane", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_other_fuel_1", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_other_fuel_2", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating_water", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating_steam", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 180.56 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_humidification", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_heat_recovery", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_water_systems", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_refrigeration", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_generators", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heating", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_cooling", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_interior_lighting", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_exterior_lighting", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_interior_equipment", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_exterior_equipment", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_fans", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_pumps", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heat_rejection", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_humidification", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_heat_recovery", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_water_systems", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_refrigeration", + "units": "therms", + "value": 0.0 + }, + { + "name": "end_use_natural_gas_generators", + "units": "therms", + "value": 0.0 + }, + { + "name": "electricity_heating_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_cooling_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 179.71 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_humidification_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_heat_recovery_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_water_systems_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_refrigeration_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_generators_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_ip", + "units": "kWh", + "value": 179.71 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "natural_gas_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gasoline_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "diesel_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "coal_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_1_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "fuel_oil_no_2_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "propane_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_1_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "other_fuel_2_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_steam_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "water_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 0.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 180.56 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 0.02 + }, + { + "name": "first_year_capital_cost", + "units": "$", + "value": 0.0 + }, + { + "name": "annual_utility_cost", + "units": "$", + "value": 0.0 + }, + { + "name": "total_lifecycle_cost", + "units": "$", + "value": 0.0 + } + ], + "step_warnings": [ + + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file