From ba8b87005f1c8e89be9545b27b2f5af601a01f77 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Tue, 29 Apr 2025 17:02:44 +0200 Subject: [PATCH 01/11] Add a test for SpaceList DSOA ref https://github.com/NREL/OpenStudio/pull/5384 ref https://github.com/NREL/EnergyPlus/issues/11018 --- model/simulationtests/space_level_dsoa.py | 59 +++++++++++++++++++++++ model_tests.rb | 49 +++++++++++++++++++ 2 files changed, 108 insertions(+) create mode 100644 model/simulationtests/space_level_dsoa.py diff --git a/model/simulationtests/space_level_dsoa.py b/model/simulationtests/space_level_dsoa.py new file mode 100644 index 00000000..80be846c --- /dev/null +++ b/model/simulationtests/space_level_dsoa.py @@ -0,0 +1,59 @@ +import openstudio + +from lib.baseline_model import BaselineModel + +model = BaselineModel() + +# make a 1 story, 100m X 50m, 5 zone building +model.add_geometry(length=100, width=50, num_floors=1, floor_to_floor_height=4, plenum_height=0, perimeter_zone_depth=3) + +# NOTE: Make all spaces under a single zone +[z.remove() for z in model.getThermalZones()] +z = openstudio.model.ThermalZone(model) +z.setName("Zone with 5 Spaces") +[s.setThermalZone(z) for s in model.getSpaces()] + +# add windows at a 40% window-to-wall ratio +model.add_windows(wwr=0.4, offset=1, application_type="Above Floor") + +# add thermostats +model.add_thermostats(heating_setpoint=24, cooling_setpoint=28) + +# assign constructions from a local library to the walls/windows/etc. in the model +model.set_constructions() + +# set whole building space type; simplified 90.1-2004 Large Office Whole Building +model.set_space_type() + +# add design days to the model (Chicago) +model.add_design_days() + +# Add ASHRAE System type 07, VAV w/ Reheat, this creates a ChW, a HW loop and a +# Condenser Loop +model.add_hvac(ashrae_sys_num="07") + +assert len(model.getThermalZones()) == 1 +assert len(model.getSpaces()) == 5 +assert len(model.getAirLoopHVACs()) == 1 +air_loop = model.getAirLoopHVACs()[0] +assert len(model.getAirTerminalSingleDuctVAVReheats()) == 1 +atu = model.getAirTerminalSingleDuctVAVReheats()[0] +assert atu.setControlForOutdoorAir(True) + +# In order to produce more consistent results between different runs, +# we sort the spaces by names +spaces = sorted(model.getSpaces(), key=lambda s: s.nameString()) + +[dsoa.remove() for dsoa in model.getDesignSpecificationOutdoorAirs()] + +# Create a Design Specification Outdoor Air for each space, but the last one +for i, space in enumerate(spaces[:-1]): + dsoa = openstudio.model.DesignSpecificationOutdoorAir(model) + dsoa_ach = 0.1 * (i+1) + dsoa.setOutdoorAirFlowAirChangesperHour(dsoa_ach) + dsoa.setName(f"{space.nameString()} DSOA {dsoa_ach:.1f} ACH") + space.setDesignSpecificationOutdoorAir(dsoa) + print(f"For'{space.nameString()}' created '{dsoa.nameString()}'") + +# 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 7e320bc4..9cb300f9 100644 --- a/model_tests.rb +++ b/model_tests.rb @@ -1765,6 +1765,55 @@ def test_solar_collector_integralcollectorstorage_osm result = sim_test('solar_collector_integralcollectorstorage.osm') end + # def test_space_level_dsoa_rb + # result = sim_test('space_level_dsoa.rb') + # end + + def test_space_level_dsoa_py + filename = 'space_level_dsoa.py' + result_osw = sim_test(filename, { compare_eui: false }) + if $UseEplusSpaces == false + return + end + + out_dir = File.join($TestDir, filename) + idf_path = File.join(out_dir, 'run', 'in.idf') + assert(File.exist?(idf_path), "Can't find idf file #{idf_path}") + w = OpenStudio::Workspace.load(idf_path, 'EnergyPlus'.to_IddFileType).get + + controller_mvs = w.getObjectsByType('Controller:MechanicalVentilation') + assert_equal(1, controller_mvs.size, "Expected only one Controller:MechanicalVentilation, not #{controller_mvs.size}") + + controller_mv = controller_mvs[0] + assert_equal(1, controller_mv.numExtensibleGroups) + eg = controller_mv.extensibleGroups[0] + assert_equal(['Zone or ZoneList Name', 'Design Specification Outdoor Air Object Name', 'Design Specification Zone Air Distribution Object Name'], controller_mv.iddObject.extensibleGroup.map(&:name)) + assert_equal('Zone with 5 Spaces', eg.getString(0).get) + assert_equal('Zone with 5 Spaces DSOA Space List', eg.getString(1).get) + assert(eg.isEmpty(2)) + + assert_equal(1, w.getObjectsByType('SpaceList').size) + assert_equal(4, w.getObjectsByType('DesignSpecification:OutdoorAir').size) + + assert_equal(1, w.getObjectsByType('DesignSpecification:OutdoorAir:SpaceList').size) + dsoa_sp_list = w.getObjectsByType('DesignSpecification:OutdoorAir:SpaceList').first + assert_equal('Zone with 5 Spaces DSOA Space List', dsoa_sp_list.nameString) + assert_equal(4, dsoa_sp_list.numExtensibleGroups) + + assert_equal(1, w.getObjectsByType('AirTerminal:SingleDuct:VAV:Reheat').size) + atu = w.getObjectsByType('AirTerminal:SingleDuct:VAV:Reheat').first + dsoa_field_idx = atu.iddObject.numFields.times.find { |i| atu.iddObject.getField(i).get.name.include?('Design Specification Outdoor Air') } + refute(dsoa_field_idx.nil?) + assert_equal('Zone with 5 Spaces DSOA Space List', atu.getString(dsoa_field_idx).get) + + cp_out_osw = File.join($OutOSWDir, "#{filename}_#{$SdkVersion}_out#{$Custom_tag}.osw") + compare_osw_eui_with_previous_version(cp_out_osw) + end + + # def test_space_level_dsoa_osm + # result = sim_test('space_level_dsoa.osm') + # end + def test_space_load_instances_rb result = sim_test('space_load_instances.rb') end From c3a2346154e76751ead7e876b6e42dcf40e6b28d Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Mon, 26 May 2025 17:49:52 +0200 Subject: [PATCH 02/11] Make the issue clearer: in 3.9.0, this run, the Controller:MV actually has no DSOA assigned! The order in which it picks the DSOA (or not) is dependent on the order of spaces... And I have one space without A DSOA at all. --- model/simulationtests/space_level_dsoa.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/model/simulationtests/space_level_dsoa.py b/model/simulationtests/space_level_dsoa.py index 80be846c..317deb38 100644 --- a/model/simulationtests/space_level_dsoa.py +++ b/model/simulationtests/space_level_dsoa.py @@ -48,10 +48,11 @@ # Create a Design Specification Outdoor Air for each space, but the last one for i, space in enumerate(spaces[:-1]): + # Create a Design Specification Outdoor Air object for each space + # We set it as an absolute outdoor air flow rate but as 0.01 m3/s per m2 of floor area dsoa = openstudio.model.DesignSpecificationOutdoorAir(model) - dsoa_ach = 0.1 * (i+1) - dsoa.setOutdoorAirFlowAirChangesperHour(dsoa_ach) - dsoa.setName(f"{space.nameString()} DSOA {dsoa_ach:.1f} ACH") + dsoa.setOutdoorAirFlowRate(0.01 * space.floorArea()) + dsoa.setName(f"{space.nameString()} DSOA") space.setDesignSpecificationOutdoorAir(dsoa) print(f"For'{space.nameString()}' created '{dsoa.nameString()}'") From b54eb7b3ce4cb21c2aea43f8276ab60a385fd09c Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Mon, 26 May 2025 17:52:29 +0200 Subject: [PATCH 03/11] commit 3.9.0 output --- test/space_level_dsoa.py_3.9.0_out.osw | 1637 ++++++++++++++++++++++++ 1 file changed, 1637 insertions(+) create mode 100644 test/space_level_dsoa.py_3.9.0_out.osw diff --git a/test/space_level_dsoa.py_3.9.0_out.osw b/test/space_level_dsoa.py_3.9.0_out.osw new file mode 100644 index 00000000..9985d8dd --- /dev/null +++ b/test/space_level_dsoa.py_3.9.0_out.osw @@ -0,0 +1,1637 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 24.2.0-94a887817b, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATINGWATER:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 8 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/home/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.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 20 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.7.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 14224640.3 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 14224640.3 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 264.3 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 264.3 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 116.25 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 15.25 + }, + { + "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": 8409232.53 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 2980998.58 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 522304.1 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 522304.1 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 103425.8 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 1065081.05 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 621284.64 + }, + { + "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": 5815407.77 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 8409232.53 + }, + { + "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": 873644.44 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 153072.22 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 153072.22 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 30311.11 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 312144.44 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 182080.56 + }, + { + "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": 84108.55 + }, + { + "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": 873643.06 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 153073.56 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 153073.56 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 30309.76 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 312145.81 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 182080.33 + }, + { + "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": 1704326.06 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 8409.23 + }, + { + "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": 8409.23 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 7750.02 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 4168830.56 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 281.15 + }, + { + "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": [ + "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", + "/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file From a06318289080c0693696203cbb0b754b93526ac8 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Mon, 26 May 2025 17:56:47 +0200 Subject: [PATCH 04/11] Tweak for CI only --- model_tests.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/model_tests.rb b/model_tests.rb index 9cb300f9..c2f00a73 100644 --- a/model_tests.rb +++ b/model_tests.rb @@ -1770,6 +1770,8 @@ def test_solar_collector_integralcollectorstorage_osm # end def test_space_level_dsoa_py + # result = sim_test('space_level_dsoa.py') + # We're going to do it manually here, above line is just for CI to detect changed tests filename = 'space_level_dsoa.py' result_osw = sim_test(filename, { compare_eui: false }) if $UseEplusSpaces == false From 475ee5f7dfa735992a639bcc1c2d28dfad3e407f Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Mon, 26 May 2025 18:13:19 +0200 Subject: [PATCH 05/11] Run test down to 3.7.0, both with and withotu spaces USE_EPLUS_SPACES=false CUSTOMTAG=WithoutSpaces /usr/local/openstudio-3.9.0/bin/openstudio model_tests.rb -n test_space_level_dsoa_py --- test/space_level_dsoa.py_3.7.0_out.osw | 1658 ++++++++++++++++ ..._level_dsoa.py_3.7.0_out_WithoutSpaces.osw | 1661 +++++++++++++++++ test/space_level_dsoa.py_3.8.0_out.osw | 1637 ++++++++++++++++ ..._level_dsoa.py_3.8.0_out_WithoutSpaces.osw | 1640 ++++++++++++++++ ..._level_dsoa.py_3.9.0_out_WithoutSpaces.osw | 1640 ++++++++++++++++ 5 files changed, 8236 insertions(+) create mode 100644 test/space_level_dsoa.py_3.7.0_out.osw create mode 100644 test/space_level_dsoa.py_3.7.0_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.py_3.8.0_out.osw create mode 100644 test/space_level_dsoa.py_3.8.0_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.py_3.9.0_out_WithoutSpaces.osw diff --git a/test/space_level_dsoa.py_3.7.0_out.osw b/test/space_level_dsoa.py_3.7.0_out.osw new file mode 100644 index 00000000..11a263d8 --- /dev/null +++ b/test/space_level_dsoa.py_3.7.0_out.osw @@ -0,0 +1,1658 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.2.0-7636e6b3e9, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 20 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/home/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.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": 14219417.83 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 14219417.83 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 264.21 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 264.21 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 117.0 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 16.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": 8409308.36 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 2980998.58 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 522304.1 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 522304.1 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 103425.8 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 1061621.52 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 619455.36 + }, + { + "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": 5810109.47 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 8409308.36 + }, + { + "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": 873644.44 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 153072.22 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 153072.22 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 30311.11 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 311130.56 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 181544.44 + }, + { + "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": 84109.31 + }, + { + "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": 873645.28 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 153073.56 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 153073.56 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 30309.76 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 311129.72 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 181543.89 + }, + { + "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": 1702775.76 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 8409.31 + }, + { + "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": 8409.31 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 7750.02 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 5166.68 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 4167300.0 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 281.0 + }, + { + "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/space_level_dsoa.py_3.7.0_out_WithoutSpaces.osw b/test/space_level_dsoa.py_3.7.0_out_WithoutSpaces.osw new file mode 100644 index 00000000..3927d395 --- /dev/null +++ b/test/space_level_dsoa.py_3.7.0_out_WithoutSpaces.osw @@ -0,0 +1,1661 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.2.0-7636e6b3e9, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 9 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 19 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/home/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": { + "ft_options": { + "no_space_translation": true + } + }, + "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": 36080506.93 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 36080506.93 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 670.4 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 670.4 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 6091.75 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 2725.5 + }, + { + "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": 30663627.83 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 2143848.59 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 522304.1 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 522304.1 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 1200846.38 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 673386.15 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 354180.3 + }, + { + "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": 5416869.62 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 30663627.83 + }, + { + "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": 628300.0 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 153072.22 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 153072.22 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 351933.33 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 197350.0 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 103800.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": 306695.44 + }, + { + "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": 628299.02 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 153073.56 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 153073.56 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 351930.86 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 197349.75 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 103800.73 + }, + { + "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": 1587527.47 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 30663.63 + }, + { + "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": 30663.63 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 7750.02 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 5166.68 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 10574152.78 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 605.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/space_level_dsoa.py_3.8.0_out.osw b/test/space_level_dsoa.py_3.8.0_out.osw new file mode 100644 index 00000000..1d152b42 --- /dev/null +++ b/test/space_level_dsoa.py_3.8.0_out.osw @@ -0,0 +1,1637 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 24.1.0-9d7789a3ac, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATINGWATER:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 8 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/home/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.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 20 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.6.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 31776914.86 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 31776914.86 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 590.43 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 590.43 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 4828.25 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 1646.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": 23910155.98 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 3781117.36 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 522304.1 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 522304.1 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 1200846.38 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 1174553.93 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 665633.01 + }, + { + "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": 7866758.88 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 23910155.98 + }, + { + "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": 1108136.11 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 153072.22 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 153072.22 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 351933.33 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 344227.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 195077.78 + }, + { + "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": 239147.69 + }, + { + "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": 1108135.56 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 153073.56 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 153073.56 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 351930.86 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 344227.33 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 195077.42 + }, + { + "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": 2305518.28 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 23910.17 + }, + { + "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": 23910.17 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 7750.02 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 9312894.44 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 371.55 + }, + { + "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": [ + "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", + "/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file diff --git a/test/space_level_dsoa.py_3.8.0_out_WithoutSpaces.osw b/test/space_level_dsoa.py_3.8.0_out_WithoutSpaces.osw new file mode 100644 index 00000000..68789a0e --- /dev/null +++ b/test/space_level_dsoa.py_3.8.0_out_WithoutSpaces.osw @@ -0,0 +1,1640 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 24.1.0-9d7789a3ac, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATINGWATER:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 7 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 17 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/home/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": { + "ft_options": { + "no_space_translation": true + } + }, + "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 20 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.6.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 36080478.49 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 36080478.49 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 670.4 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 670.4 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 6091.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 2725.25 + }, + { + "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": 30663608.87 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 2143848.59 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 522304.1 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 522304.1 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 1200846.38 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 673386.15 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 354180.3 + }, + { + "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": 5416869.62 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 30663608.87 + }, + { + "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": 628300.0 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 153072.22 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 153072.22 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 351933.33 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 197350.0 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 103800.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": 306695.25 + }, + { + "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": 628299.02 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 153073.56 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 153073.56 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 351930.86 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 197349.75 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 103800.73 + }, + { + "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": 1587527.47 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 30663.61 + }, + { + "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": 30663.61 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 7750.02 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 10574144.44 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 605.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": [ + "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", + "/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file diff --git a/test/space_level_dsoa.py_3.9.0_out_WithoutSpaces.osw b/test/space_level_dsoa.py_3.9.0_out_WithoutSpaces.osw new file mode 100644 index 00000000..e84d1189 --- /dev/null +++ b/test/space_level_dsoa.py_3.9.0_out_WithoutSpaces.osw @@ -0,0 +1,1640 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 24.2.0-94a887817b, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATINGWATER:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 7 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 17 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/home/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": { + "ft_options": { + "no_space_translation": true + } + }, + "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 20 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.7.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 36083265.08 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 36083265.08 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 670.45 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 670.45 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 6091.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 2725.25 + }, + { + "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": 30663608.87 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 2143630.59 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 522304.1 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 522304.1 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 1200846.38 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 675006.92 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 355554.64 + }, + { + "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": 5419656.21 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 30663608.87 + }, + { + "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": 628236.11 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 153072.22 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 153072.22 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 351933.33 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 197825.0 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 104202.78 + }, + { + "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": 306695.25 + }, + { + "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": 628237.63 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 153073.56 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 153073.56 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 351930.86 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 197824.89 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 104203.63 + }, + { + "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": 1588344.12 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 30663.61 + }, + { + "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": 30663.61 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 7750.02 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 10574961.11 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 605.13 + }, + { + "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": [ + "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", + "/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file From 885b66ab1c38149be02118d3fc826dbc2e764aa6 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Mon, 26 May 2025 23:23:22 +0200 Subject: [PATCH 06/11] Use 5 zones with equal floor area so the results are more dramatic. Run Backward down to 3.0.0 and commit OSM version there rubocop --- model/simulationtests/space_level_dsoa.osm | 4215 ++++++++++++++++++++ model/simulationtests/space_level_dsoa.py | 7 +- model/simulationtests/space_level_dsoa.rb | 73 + model_tests.rb | 30 +- test/space_level_dsoa.osm_3.0.0_out.osw | 1022 +++++ test/space_level_dsoa.osm_3.0.1_out.osw | 1022 +++++ test/space_level_dsoa.osm_3.1.0_out.osw | 1582 ++++++++ test/space_level_dsoa.osm_3.2.0_out.osw | 1659 ++++++++ test/space_level_dsoa.osm_3.2.1_out.osw | 1659 ++++++++ test/space_level_dsoa.osm_3.3.0_out.osw | 1659 ++++++++ test/space_level_dsoa.osm_3.4.0_out.osw | 1659 ++++++++ test/space_level_dsoa.osm_3.5.0_out.osw | 1658 ++++++++ test/space_level_dsoa.osm_3.5.1_out.osw | 1658 ++++++++ test/space_level_dsoa.osm_3.6.0_out.osw | 1658 ++++++++ test/space_level_dsoa.osm_3.6.1_out.osw | 1658 ++++++++ test/space_level_dsoa.osm_3.7.0_out.osw | 1658 ++++++++ test/space_level_dsoa.osm_3.8.0_out.osw | 1637 ++++++++ test/space_level_dsoa.osm_3.9.0_out.osw | 1637 ++++++++ test/space_level_dsoa.py_3.7.0_out.osw | 78 +- test/space_level_dsoa.py_3.8.0_out.osw | 78 +- test/space_level_dsoa.py_3.9.0_out.osw | 78 +- test/space_level_dsoa.rb_3.0.0_out.osw | 1022 +++++ test/space_level_dsoa.rb_3.0.1_out.osw | 1022 +++++ test/space_level_dsoa.rb_3.1.0_out.osw | 1582 ++++++++ test/space_level_dsoa.rb_3.2.0_out.osw | 1659 ++++++++ test/space_level_dsoa.rb_3.2.1_out.osw | 1659 ++++++++ test/space_level_dsoa.rb_3.3.0_out.osw | 1659 ++++++++ test/space_level_dsoa.rb_3.4.0_out.osw | 1659 ++++++++ test/space_level_dsoa.rb_3.5.0_out.osw | 1658 ++++++++ test/space_level_dsoa.rb_3.5.1_out.osw | 1658 ++++++++ test/space_level_dsoa.rb_3.6.0_out.osw | 1658 ++++++++ test/space_level_dsoa.rb_3.6.1_out.osw | 1658 ++++++++ test/space_level_dsoa.rb_3.7.0_out.osw | 1658 ++++++++ test/space_level_dsoa.rb_3.8.0_out.osw | 1637 ++++++++ test/space_level_dsoa.rb_3.9.0_out.osw | 1637 ++++++++ 35 files changed, 48079 insertions(+), 132 deletions(-) create mode 100644 model/simulationtests/space_level_dsoa.osm create mode 100644 model/simulationtests/space_level_dsoa.rb create mode 100644 test/space_level_dsoa.osm_3.0.0_out.osw create mode 100644 test/space_level_dsoa.osm_3.0.1_out.osw create mode 100644 test/space_level_dsoa.osm_3.1.0_out.osw create mode 100644 test/space_level_dsoa.osm_3.2.0_out.osw create mode 100644 test/space_level_dsoa.osm_3.2.1_out.osw create mode 100644 test/space_level_dsoa.osm_3.3.0_out.osw create mode 100644 test/space_level_dsoa.osm_3.4.0_out.osw create mode 100644 test/space_level_dsoa.osm_3.5.0_out.osw create mode 100644 test/space_level_dsoa.osm_3.5.1_out.osw create mode 100644 test/space_level_dsoa.osm_3.6.0_out.osw create mode 100644 test/space_level_dsoa.osm_3.6.1_out.osw create mode 100644 test/space_level_dsoa.osm_3.7.0_out.osw create mode 100644 test/space_level_dsoa.osm_3.8.0_out.osw create mode 100644 test/space_level_dsoa.osm_3.9.0_out.osw create mode 100644 test/space_level_dsoa.rb_3.0.0_out.osw create mode 100644 test/space_level_dsoa.rb_3.0.1_out.osw create mode 100644 test/space_level_dsoa.rb_3.1.0_out.osw create mode 100644 test/space_level_dsoa.rb_3.2.0_out.osw create mode 100644 test/space_level_dsoa.rb_3.2.1_out.osw create mode 100644 test/space_level_dsoa.rb_3.3.0_out.osw create mode 100644 test/space_level_dsoa.rb_3.4.0_out.osw create mode 100644 test/space_level_dsoa.rb_3.5.0_out.osw create mode 100644 test/space_level_dsoa.rb_3.5.1_out.osw create mode 100644 test/space_level_dsoa.rb_3.6.0_out.osw create mode 100644 test/space_level_dsoa.rb_3.6.1_out.osw create mode 100644 test/space_level_dsoa.rb_3.7.0_out.osw create mode 100644 test/space_level_dsoa.rb_3.8.0_out.osw create mode 100644 test/space_level_dsoa.rb_3.9.0_out.osw diff --git a/model/simulationtests/space_level_dsoa.osm b/model/simulationtests/space_level_dsoa.osm new file mode 100644 index 00000000..7f053ba3 --- /dev/null +++ b/model/simulationtests/space_level_dsoa.osm @@ -0,0 +1,4215 @@ + +OS:Version, + {b412a21a-f3fc-4576-9ecf-b89b155958bf}, !- Handle + 3.0.0; !- Version Identifier + +OS:BuildingStory, + {12474312-ee83-4796-8119-306f6d28e840}, !- Handle + Story 1, !- Name + 0, !- Nominal Z Coordinate {m} + 3, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + ; !- Group Rendering Name + +OS:Space, + {e1e67e6e-cb08-4f27-a0ba-08353e554858}, !- Handle + Story 1 Core Space, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + {12474312-ee83-4796-8119-306f6d28e840}, !- Building Story Name + {dc24e657-d179-4ce5-837b-b04b894b4f18}, !- Thermal Zone Name + , !- Part of Total Floor Area + {e41e8934-3362-486a-b418-dccf91f0e71c}; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {b81443db-7a15-4e78-8853-eb149f31bc42}, !- Handle + Story 1 Core Space Exterior Ground Floor, !- Name + Floor, !- Surface Type + , !- Construction Name + {e1e67e6e-cb08-4f27-a0ba-08353e554858}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 0, !- X,Y,Z Vertex 1 {m} + 0, 50, 0, !- X,Y,Z Vertex 2 {m} + 100, 50, 0, !- X,Y,Z Vertex 3 {m} + 100, 0, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4fec7635-5be8-4a65-8cbb-623275f78807}, !- Handle + Story 1 Core Space Exterior Wall 1, !- Name + Wall, !- Surface Type + , !- Construction Name + {e1e67e6e-cb08-4f27-a0ba-08353e554858}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 50, 3, !- X,Y,Z Vertex 1 {m} + 0, 50, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f43314b6-d72d-4978-af1f-1bcbc03571c6}, !- Handle + Story 1 Core Space Exterior Wall, !- Name + Wall, !- Surface Type + , !- Construction Name + {e1e67e6e-cb08-4f27-a0ba-08353e554858}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 50, 3, !- X,Y,Z Vertex 1 {m} + 100, 50, 0, !- X,Y,Z Vertex 2 {m} + 0, 50, 0, !- X,Y,Z Vertex 3 {m} + 0, 50, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d315786b-5ca7-4d4c-9dde-7e67c4712cc3}, !- Handle + Story 1 Core Space Exterior Wall 2, !- Name + Wall, !- Surface Type + , !- Construction Name + {e1e67e6e-cb08-4f27-a0ba-08353e554858}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 0, 3, !- X,Y,Z Vertex 1 {m} + 100, 0, 0, !- X,Y,Z Vertex 2 {m} + 100, 50, 0, !- X,Y,Z Vertex 3 {m} + 100, 50, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {742b34b5-015a-4d9b-980c-8c06d20e5b48}, !- Handle + Story 1 Core Space Exterior Wall 3, !- Name + Wall, !- Surface Type + , !- Construction Name + {e1e67e6e-cb08-4f27-a0ba-08353e554858}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 100, 0, 0, !- X,Y,Z Vertex 3 {m} + 100, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1fe5f4a1-c81a-4f2e-87c0-f3e533ed227c}, !- Handle + Story 1 Core Space to Story 2 Core Space Interior RoofCeiling, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {e1e67e6e-cb08-4f27-a0ba-08353e554858}, !- Space Name + Surface, !- Outside Boundary Condition + {2b8e3461-f9d9-449d-b39e-27853ae843d4}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 0, 3, !- X,Y,Z Vertex 1 {m} + 100, 50, 3, !- X,Y,Z Vertex 2 {m} + 0, 50, 3, !- X,Y,Z Vertex 3 {m} + 0, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:BuildingStory, + {5c2667bb-667e-44e0-a2da-32931ec02d98}, !- Handle + Story 2, !- Name + 3, !- Nominal Z Coordinate {m} + 3, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + ; !- Group Rendering Name + +OS:Space, + {25f83d63-6695-4bac-a1e5-e673510199b3}, !- Handle + Story 2 Core Space, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 3, !- Z Origin {m} + {5c2667bb-667e-44e0-a2da-32931ec02d98}, !- Building Story Name + {dc24e657-d179-4ce5-837b-b04b894b4f18}, !- Thermal Zone Name + , !- Part of Total Floor Area + {d7ebea37-af16-4582-83eb-322af15b8623}; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {2b8e3461-f9d9-449d-b39e-27853ae843d4}, !- Handle + Story 2 Core Space to Story 1 Core Space Interior RoofCeiling, !- Name + Floor, !- Surface Type + , !- Construction Name + {25f83d63-6695-4bac-a1e5-e673510199b3}, !- Space Name + Surface, !- Outside Boundary Condition + {1fe5f4a1-c81a-4f2e-87c0-f3e533ed227c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 0, !- X,Y,Z Vertex 1 {m} + 0, 50, 0, !- X,Y,Z Vertex 2 {m} + 100, 50, 0, !- X,Y,Z Vertex 3 {m} + 100, 0, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7f735fc0-ae1b-46ec-813e-f10e2c9cfb70}, !- Handle + Story 2 Core Space Exterior Wall, !- Name + Wall, !- Surface Type + , !- Construction Name + {25f83d63-6695-4bac-a1e5-e673510199b3}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 50, 3, !- X,Y,Z Vertex 1 {m} + 0, 50, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {dd987123-ab61-4789-8118-837728816bc4}, !- Handle + Story 2 Core Space Exterior Wall 1, !- Name + Wall, !- Surface Type + , !- Construction Name + {25f83d63-6695-4bac-a1e5-e673510199b3}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 50, 3, !- X,Y,Z Vertex 1 {m} + 100, 50, 0, !- X,Y,Z Vertex 2 {m} + 0, 50, 0, !- X,Y,Z Vertex 3 {m} + 0, 50, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e81dd8dc-af8a-4bfc-a6f3-70e26158f19c}, !- Handle + Story 2 Core Space Exterior Wall 2, !- Name + Wall, !- Surface Type + , !- Construction Name + {25f83d63-6695-4bac-a1e5-e673510199b3}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 0, 3, !- X,Y,Z Vertex 1 {m} + 100, 0, 0, !- X,Y,Z Vertex 2 {m} + 100, 50, 0, !- X,Y,Z Vertex 3 {m} + 100, 50, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2edbedd1-7072-425b-9c80-a0e1e20aa6a0}, !- Handle + Story 2 Core Space Exterior Wall 3, !- Name + Wall, !- Surface Type + , !- Construction Name + {25f83d63-6695-4bac-a1e5-e673510199b3}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 100, 0, 0, !- X,Y,Z Vertex 3 {m} + 100, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {46e2d1d7-b961-4bfe-b47e-eeed4af884b3}, !- Handle + Story 2 Core Space to Story 3 Core Space Interior RoofCeiling, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {25f83d63-6695-4bac-a1e5-e673510199b3}, !- Space Name + Surface, !- Outside Boundary Condition + {7f5e21ab-dc65-476b-998d-57d5c4b9795e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 0, 3, !- X,Y,Z Vertex 1 {m} + 100, 50, 3, !- X,Y,Z Vertex 2 {m} + 0, 50, 3, !- X,Y,Z Vertex 3 {m} + 0, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:BuildingStory, + {7939e57a-de81-42b4-b460-9f72b1beab4f}, !- Handle + Story 3, !- Name + 6, !- Nominal Z Coordinate {m} + 3, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + ; !- Group Rendering Name + +OS:Space, + {d6490b74-fb99-4178-9d63-399acdb69d85}, !- Handle + Story 3 Core Space, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 6, !- Z Origin {m} + {7939e57a-de81-42b4-b460-9f72b1beab4f}, !- Building Story Name + {dc24e657-d179-4ce5-837b-b04b894b4f18}, !- Thermal Zone Name + , !- Part of Total Floor Area + {23273342-0b2e-4c32-bbc0-3aa4be3006ff}; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {7f5e21ab-dc65-476b-998d-57d5c4b9795e}, !- Handle + Story 3 Core Space to Story 2 Core Space Interior RoofCeiling, !- Name + Floor, !- Surface Type + , !- Construction Name + {d6490b74-fb99-4178-9d63-399acdb69d85}, !- Space Name + Surface, !- Outside Boundary Condition + {46e2d1d7-b961-4bfe-b47e-eeed4af884b3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 0, !- X,Y,Z Vertex 1 {m} + 0, 50, 0, !- X,Y,Z Vertex 2 {m} + 100, 50, 0, !- X,Y,Z Vertex 3 {m} + 100, 0, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {adf2c61a-3193-45ba-a373-06d272d17a7d}, !- Handle + Story 3 Core Space Exterior Wall, !- Name + Wall, !- Surface Type + , !- Construction Name + {d6490b74-fb99-4178-9d63-399acdb69d85}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 50, 3, !- X,Y,Z Vertex 1 {m} + 0, 50, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {311a93e3-0522-480a-b306-2f89a462c539}, !- Handle + Story 3 Core Space Exterior Wall 1, !- Name + Wall, !- Surface Type + , !- Construction Name + {d6490b74-fb99-4178-9d63-399acdb69d85}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 50, 3, !- X,Y,Z Vertex 1 {m} + 100, 50, 0, !- X,Y,Z Vertex 2 {m} + 0, 50, 0, !- X,Y,Z Vertex 3 {m} + 0, 50, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8fac46a9-2fb8-4724-b937-dc0b05cf7527}, !- Handle + Story 3 Core Space Exterior Wall 2, !- Name + Wall, !- Surface Type + , !- Construction Name + {d6490b74-fb99-4178-9d63-399acdb69d85}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 0, 3, !- X,Y,Z Vertex 1 {m} + 100, 0, 0, !- X,Y,Z Vertex 2 {m} + 100, 50, 0, !- X,Y,Z Vertex 3 {m} + 100, 50, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6b6a7e1d-e1a7-4d29-bad5-c06c30b04213}, !- Handle + Story 3 Core Space Exterior Wall 3, !- Name + Wall, !- Surface Type + , !- Construction Name + {d6490b74-fb99-4178-9d63-399acdb69d85}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 100, 0, 0, !- X,Y,Z Vertex 3 {m} + 100, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {426a076b-32cc-490c-8b17-a62a3c524c49}, !- Handle + Story 3 Core Space to Story 4 Core Space Interior RoofCeiling, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {d6490b74-fb99-4178-9d63-399acdb69d85}, !- Space Name + Surface, !- Outside Boundary Condition + {ce171d87-3605-4339-b6d9-82fadaf540b7}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 0, 3, !- X,Y,Z Vertex 1 {m} + 100, 50, 3, !- X,Y,Z Vertex 2 {m} + 0, 50, 3, !- X,Y,Z Vertex 3 {m} + 0, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:BuildingStory, + {e75e1ca0-a6ff-4993-b812-cf1436d4d088}, !- Handle + Story 4, !- Name + 9, !- Nominal Z Coordinate {m} + 3, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + ; !- Group Rendering Name + +OS:Space, + {7c2830a6-8d09-47f9-82f8-58d800c54054}, !- Handle + Story 4 Core Space, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 9, !- Z Origin {m} + {e75e1ca0-a6ff-4993-b812-cf1436d4d088}, !- Building Story Name + {dc24e657-d179-4ce5-837b-b04b894b4f18}, !- Thermal Zone Name + , !- Part of Total Floor Area + {4d90a14b-c996-460e-8cf6-4d12eb46ac3e}; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {ce171d87-3605-4339-b6d9-82fadaf540b7}, !- Handle + Story 4 Core Space to Story 3 Core Space Interior RoofCeiling, !- Name + Floor, !- Surface Type + , !- Construction Name + {7c2830a6-8d09-47f9-82f8-58d800c54054}, !- Space Name + Surface, !- Outside Boundary Condition + {426a076b-32cc-490c-8b17-a62a3c524c49}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 0, !- X,Y,Z Vertex 1 {m} + 0, 50, 0, !- X,Y,Z Vertex 2 {m} + 100, 50, 0, !- X,Y,Z Vertex 3 {m} + 100, 0, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {95d9f134-1459-4ae7-b6e4-63c9bd838167}, !- Handle + Story 4 Core Space Exterior Wall, !- Name + Wall, !- Surface Type + , !- Construction Name + {7c2830a6-8d09-47f9-82f8-58d800c54054}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 50, 3, !- X,Y,Z Vertex 1 {m} + 0, 50, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {009ca6f8-568f-4c4d-ac8d-5ab5de870f44}, !- Handle + Story 4 Core Space Exterior Wall 1, !- Name + Wall, !- Surface Type + , !- Construction Name + {7c2830a6-8d09-47f9-82f8-58d800c54054}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 50, 3, !- X,Y,Z Vertex 1 {m} + 100, 50, 0, !- X,Y,Z Vertex 2 {m} + 0, 50, 0, !- X,Y,Z Vertex 3 {m} + 0, 50, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {04cc1955-68c0-4f8e-92be-3ac1b7d2a9f5}, !- Handle + Story 4 Core Space Exterior Wall 2, !- Name + Wall, !- Surface Type + , !- Construction Name + {7c2830a6-8d09-47f9-82f8-58d800c54054}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 0, 3, !- X,Y,Z Vertex 1 {m} + 100, 0, 0, !- X,Y,Z Vertex 2 {m} + 100, 50, 0, !- X,Y,Z Vertex 3 {m} + 100, 50, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9b8c8941-6ca6-440e-b3c6-2cbd57f5866e}, !- Handle + Story 4 Core Space Exterior Wall 3, !- Name + Wall, !- Surface Type + , !- Construction Name + {7c2830a6-8d09-47f9-82f8-58d800c54054}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 100, 0, 0, !- X,Y,Z Vertex 3 {m} + 100, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d5289836-e332-4e40-abe3-87d0c9ac2016}, !- Handle + Story 4 Core Space to Story 5 Core Space Interior RoofCeiling, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {7c2830a6-8d09-47f9-82f8-58d800c54054}, !- Space Name + Surface, !- Outside Boundary Condition + {790379fb-509f-48c8-8876-7f2d94da885d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 0, 3, !- X,Y,Z Vertex 1 {m} + 100, 50, 3, !- X,Y,Z Vertex 2 {m} + 0, 50, 3, !- X,Y,Z Vertex 3 {m} + 0, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:BuildingStory, + {9b56c934-32c7-4b35-aa33-5b0f69027cba}, !- Handle + Story 5, !- Name + 12, !- Nominal Z Coordinate {m} + 3, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + ; !- Group Rendering Name + +OS:Space, + {c203d9c8-fc3e-4648-af40-63ef2282c961}, !- Handle + Story 5 Core Space, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 12, !- Z Origin {m} + {9b56c934-32c7-4b35-aa33-5b0f69027cba}, !- Building Story Name + {dc24e657-d179-4ce5-837b-b04b894b4f18}; !- Thermal Zone Name + +OS:Surface, + {790379fb-509f-48c8-8876-7f2d94da885d}, !- Handle + Story 5 Core Space to Story 4 Core Space Interior RoofCeiling, !- Name + Floor, !- Surface Type + , !- Construction Name + {c203d9c8-fc3e-4648-af40-63ef2282c961}, !- Space Name + Surface, !- Outside Boundary Condition + {d5289836-e332-4e40-abe3-87d0c9ac2016}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 0, !- X,Y,Z Vertex 1 {m} + 0, 50, 0, !- X,Y,Z Vertex 2 {m} + 100, 50, 0, !- X,Y,Z Vertex 3 {m} + 100, 0, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4920d710-4388-45ff-b52d-e7c33fe1cbab}, !- Handle + Story 5 Core Space Exterior Wall, !- Name + Wall, !- Surface Type + , !- Construction Name + {c203d9c8-fc3e-4648-af40-63ef2282c961}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 50, 3, !- X,Y,Z Vertex 1 {m} + 0, 50, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0ea7dfab-1a2f-4462-afc3-218863b3c7b7}, !- Handle + Story 5 Core Space Exterior Wall 1, !- Name + Wall, !- Surface Type + , !- Construction Name + {c203d9c8-fc3e-4648-af40-63ef2282c961}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 50, 3, !- X,Y,Z Vertex 1 {m} + 100, 50, 0, !- X,Y,Z Vertex 2 {m} + 0, 50, 0, !- X,Y,Z Vertex 3 {m} + 0, 50, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b4579007-30f2-4c20-a6eb-cfdc3204b81b}, !- Handle + Story 5 Core Space Exterior Wall 2, !- Name + Wall, !- Surface Type + , !- Construction Name + {c203d9c8-fc3e-4648-af40-63ef2282c961}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 0, 3, !- X,Y,Z Vertex 1 {m} + 100, 0, 0, !- X,Y,Z Vertex 2 {m} + 100, 50, 0, !- X,Y,Z Vertex 3 {m} + 100, 50, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {797571ba-1822-47eb-ac78-c060adc0219d}, !- Handle + Story 5 Core Space Exterior Wall 3, !- Name + Wall, !- Surface Type + , !- Construction Name + {c203d9c8-fc3e-4648-af40-63ef2282c961}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 100, 0, 0, !- X,Y,Z Vertex 3 {m} + 100, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {190ab86f-7a54-4c88-9600-3e6f5bc4bc2d}, !- Handle + Story 5 Core Space Exterior Roof, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {c203d9c8-fc3e-4648-af40-63ef2282c961}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 100, 0, 3, !- X,Y,Z Vertex 1 {m} + 100, 50, 3, !- X,Y,Z Vertex 2 {m} + 0, 50, 3, !- X,Y,Z Vertex 3 {m} + 0, 0, 3; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {dc24e657-d179-4ce5-837b-b04b894b4f18}, !- Handle + Zone with 5 Spaces, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {b61419ec-255d-4cf3-9804-16dd33bdda23}, !- Zone Air Inlet Port List + {e2797312-da23-45d0-a22f-f468a4009572}, !- Zone Air Exhaust Port List + {30a9a90f-1241-4dc9-b0cc-1b8494f1490c}, !- Zone Air Node Name + {3b559f80-3940-48a4-90e8-c9fde13787ab}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {f52e48a1-4b3b-42cb-8918-3b2d9c069ea3}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {53afc969-bdcb-4bfb-bfb7-b1c0b0765e1f}, !- Handle + Node 1, !- Name + {30a9a90f-1241-4dc9-b0cc-1b8494f1490c}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {30a9a90f-1241-4dc9-b0cc-1b8494f1490c}, !- Handle + {ba7030eb-419d-4671-9af3-dce1f34cd66d}, !- Name + {dc24e657-d179-4ce5-837b-b04b894b4f18}, !- Source Object + 11, !- Outlet Port + {53afc969-bdcb-4bfb-bfb7-b1c0b0765e1f}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {b61419ec-255d-4cf3-9804-16dd33bdda23}, !- Handle + {cf77a9aa-613a-4249-93f6-4637c7b7977d}, !- Name + {dc24e657-d179-4ce5-837b-b04b894b4f18}, !- HVAC Component + {ec88f6dd-0359-45b3-ae34-7af1310c9156}; !- Port 1 + +OS:PortList, + {e2797312-da23-45d0-a22f-f468a4009572}, !- Handle + {7ecbb015-e9c5-46fb-907f-9913715fce44}, !- Name + {dc24e657-d179-4ce5-837b-b04b894b4f18}; !- HVAC Component + +OS:PortList, + {3b559f80-3940-48a4-90e8-c9fde13787ab}, !- Handle + {b72b08cc-01cc-4a53-8f6c-dae5b1782b4c}, !- Name + {dc24e657-d179-4ce5-837b-b04b894b4f18}, !- HVAC Component + {d1ebb5df-4f70-4c92-a79f-80084c295441}; !- Port 1 + +OS:Sizing:Zone, + {0019a651-d8fb-472c-8261-160eb68c0280}, !- Handle + {dc24e657-d179-4ce5-837b-b04b894b4f18}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + +OS:ZoneHVAC:EquipmentList, + {856176e0-0a58-4e21-aeb4-2e553dd1437c}, !- Handle + Zone HVAC Equipment List 1, !- Name + {dc24e657-d179-4ce5-837b-b04b894b4f18}, !- Thermal Zone + , !- Load Distribution Scheme + {78315eb5-20b5-4887-8a55-503fc12dd139}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + +OS:SubSurface, + {185f50d9-e233-468b-a731-aa755a90a459}, !- Handle + Story 5 Core Space Exterior Wall 3 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {797571ba-1822-47eb-ac78-c060adc0219d}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.0254, 0, 2.2006099098342, !- X,Y,Z Vertex 1 {m} + 0.0254, 0, 1, !- X,Y,Z Vertex 2 {m} + 99.9746, 0, 1, !- X,Y,Z Vertex 3 {m} + 99.9746, 0, 2.2006099098342; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {bb4fa111-9fc3-4d95-acb9-b7fd963b1f1b}, !- Handle + Story 4 Core Space Exterior Wall 2 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {04cc1955-68c0-4f8e-92be-3ac1b7d2a9f5}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 100, 0.0254, 2.20122043996701, !- X,Y,Z Vertex 1 {m} + 100, 0.0254, 1, !- X,Y,Z Vertex 2 {m} + 100, 49.9746, 1, !- X,Y,Z Vertex 3 {m} + 100, 49.9746, 2.20122043996701; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {5457f856-96f6-4d0f-bbb2-41db898948f7}, !- Handle + Story 4 Core Space Exterior Wall 3 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {9b8c8941-6ca6-440e-b3c6-2cbd57f5866e}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.0254, 0, 2.2006099098342, !- X,Y,Z Vertex 1 {m} + 0.0254, 0, 1, !- X,Y,Z Vertex 2 {m} + 99.9746, 0, 1, !- X,Y,Z Vertex 3 {m} + 99.9746, 0, 2.2006099098342; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {d404b612-2f3c-4f56-9878-879deb6a5d6f}, !- Handle + Story 4 Core Space Exterior Wall 1 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {009ca6f8-568f-4c4d-ac8d-5ab5de870f44}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 99.9746, 50, 2.2006099098342, !- X,Y,Z Vertex 1 {m} + 99.9746, 50, 1, !- X,Y,Z Vertex 2 {m} + 0.0253999999999905, 50, 1, !- X,Y,Z Vertex 3 {m} + 0.0253999999999905, 50, 2.2006099098342; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {52c4e5c2-57c3-4f23-8ccf-680793569c3c}, !- Handle + Story 3 Core Space Exterior Wall 3 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {6b6a7e1d-e1a7-4d29-bad5-c06c30b04213}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.0254, 0, 2.2006099098342, !- X,Y,Z Vertex 1 {m} + 0.0254, 0, 1, !- X,Y,Z Vertex 2 {m} + 99.9746, 0, 1, !- X,Y,Z Vertex 3 {m} + 99.9746, 0, 2.2006099098342; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {e97e9781-528c-40b7-ad7d-f74e5c7fab79}, !- Handle + Story 1 Core Space Exterior Wall Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {f43314b6-d72d-4978-af1f-1bcbc03571c6}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 99.9746, 50, 2.2006099098342, !- X,Y,Z Vertex 1 {m} + 99.9746, 50, 1, !- X,Y,Z Vertex 2 {m} + 0.0253999999999905, 50, 1, !- X,Y,Z Vertex 3 {m} + 0.0253999999999905, 50, 2.2006099098342; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {af514bd9-0764-47b3-a4b4-221d1da73bcf}, !- Handle + Story 5 Core Space Exterior Wall Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {4920d710-4388-45ff-b52d-e7c33fe1cbab}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, 49.9746, 2.20122043996701, !- X,Y,Z Vertex 1 {m} + 0, 49.9746, 1, !- X,Y,Z Vertex 2 {m} + 0, 0.0254000000000048, 1, !- X,Y,Z Vertex 3 {m} + 0, 0.0254000000000048, 2.20122043996701; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {90989e84-71b8-40ba-b327-96d016312329}, !- Handle + Story 2 Core Space Exterior Wall 3 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {2edbedd1-7072-425b-9c80-a0e1e20aa6a0}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.0254, 0, 2.2006099098342, !- X,Y,Z Vertex 1 {m} + 0.0254, 0, 1, !- X,Y,Z Vertex 2 {m} + 99.9746, 0, 1, !- X,Y,Z Vertex 3 {m} + 99.9746, 0, 2.2006099098342; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {707aed58-fd86-4752-a6f7-f7a688004c1c}, !- Handle + Story 5 Core Space Exterior Wall 1 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {0ea7dfab-1a2f-4462-afc3-218863b3c7b7}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 99.9746, 50, 2.2006099098342, !- X,Y,Z Vertex 1 {m} + 99.9746, 50, 1, !- X,Y,Z Vertex 2 {m} + 0.0253999999999905, 50, 1, !- X,Y,Z Vertex 3 {m} + 0.0253999999999905, 50, 2.2006099098342; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {a996121e-ff8c-4c6e-ad96-22ad0c95ba98}, !- Handle + Story 2 Core Space Exterior Wall 1 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {dd987123-ab61-4789-8118-837728816bc4}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 99.9746, 50, 2.2006099098342, !- X,Y,Z Vertex 1 {m} + 99.9746, 50, 1, !- X,Y,Z Vertex 2 {m} + 0.0253999999999905, 50, 1, !- X,Y,Z Vertex 3 {m} + 0.0253999999999905, 50, 2.2006099098342; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {90d46406-4fd0-43b7-8359-63e7ff45b0f7}, !- Handle + Story 3 Core Space Exterior Wall 1 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {311a93e3-0522-480a-b306-2f89a462c539}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 99.9746, 50, 2.2006099098342, !- X,Y,Z Vertex 1 {m} + 99.9746, 50, 1, !- X,Y,Z Vertex 2 {m} + 0.0253999999999905, 50, 1, !- X,Y,Z Vertex 3 {m} + 0.0253999999999905, 50, 2.2006099098342; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {7d3839e2-e19a-4846-894e-a97cc625ee78}, !- Handle + Story 5 Core Space Exterior Wall 2 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {b4579007-30f2-4c20-a6eb-cfdc3204b81b}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 100, 0.0254, 2.20122043996701, !- X,Y,Z Vertex 1 {m} + 100, 0.0254, 1, !- X,Y,Z Vertex 2 {m} + 100, 49.9746, 1, !- X,Y,Z Vertex 3 {m} + 100, 49.9746, 2.20122043996701; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {9b99fc38-bf5c-4938-affd-1baba52737d1}, !- Handle + Story 2 Core Space Exterior Wall Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {7f735fc0-ae1b-46ec-813e-f10e2c9cfb70}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, 49.9746, 2.20122043996701, !- X,Y,Z Vertex 1 {m} + 0, 49.9746, 1, !- X,Y,Z Vertex 2 {m} + 0, 0.0254000000000048, 1, !- X,Y,Z Vertex 3 {m} + 0, 0.0254000000000048, 2.20122043996701; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {830fa1f5-de45-4f13-b8dc-017c328c5e73}, !- Handle + Story 1 Core Space Exterior Wall 2 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {d315786b-5ca7-4d4c-9dde-7e67c4712cc3}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 100, 0.0254, 2.20122043996701, !- X,Y,Z Vertex 1 {m} + 100, 0.0254, 1, !- X,Y,Z Vertex 2 {m} + 100, 49.9746, 1, !- X,Y,Z Vertex 3 {m} + 100, 49.9746, 2.20122043996701; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {0c522d75-ce26-4a29-93f4-5b7125ad40a2}, !- Handle + Story 4 Core Space Exterior Wall Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {95d9f134-1459-4ae7-b6e4-63c9bd838167}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, 49.9746, 2.20122043996701, !- X,Y,Z Vertex 1 {m} + 0, 49.9746, 1, !- X,Y,Z Vertex 2 {m} + 0, 0.0254000000000048, 1, !- X,Y,Z Vertex 3 {m} + 0, 0.0254000000000048, 2.20122043996701; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {0b43183c-a2fe-4d2d-9791-0419714eeeb1}, !- Handle + Story 1 Core Space Exterior Wall 1 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {4fec7635-5be8-4a65-8cbb-623275f78807}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, 49.9746, 2.20122043996701, !- X,Y,Z Vertex 1 {m} + 0, 49.9746, 1, !- X,Y,Z Vertex 2 {m} + 0, 0.0254000000000048, 1, !- X,Y,Z Vertex 3 {m} + 0, 0.0254000000000048, 2.20122043996701; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {9aee7893-6528-4553-a69d-d4325ce986e1}, !- Handle + Story 1 Core Space Exterior Wall 3 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {742b34b5-015a-4d9b-980c-8c06d20e5b48}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.0254, 0, 2.2006099098342, !- X,Y,Z Vertex 1 {m} + 0.0254, 0, 1, !- X,Y,Z Vertex 2 {m} + 99.9746, 0, 1, !- X,Y,Z Vertex 3 {m} + 99.9746, 0, 2.2006099098342; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {3a570532-39eb-4b62-aa00-5390282193ab}, !- Handle + Story 2 Core Space Exterior Wall 2 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {e81dd8dc-af8a-4bfc-a6f3-70e26158f19c}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 100, 0.0254, 2.20122043996701, !- X,Y,Z Vertex 1 {m} + 100, 0.0254, 1, !- X,Y,Z Vertex 2 {m} + 100, 49.9746, 1, !- X,Y,Z Vertex 3 {m} + 100, 49.9746, 2.20122043996701; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {c0e1e5a7-fb9a-4ec0-b50b-165c331f4813}, !- Handle + Story 3 Core Space Exterior Wall Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {adf2c61a-3193-45ba-a373-06d272d17a7d}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, 49.9746, 2.20122043996701, !- X,Y,Z Vertex 1 {m} + 0, 49.9746, 1, !- X,Y,Z Vertex 2 {m} + 0, 0.0254000000000048, 1, !- X,Y,Z Vertex 3 {m} + 0, 0.0254000000000048, 2.20122043996701; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {a7784467-fa93-47ad-aa9d-9559f9599cc4}, !- Handle + Story 3 Core Space Exterior Wall 2 Window, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {8fac46a9-2fb8-4724-b937-dc0b05cf7527}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 100, 0.0254, 2.20122043996701, !- X,Y,Z Vertex 1 {m} + 100, 0.0254, 1, !- X,Y,Z Vertex 2 {m} + 100, 49.9746, 1, !- X,Y,Z Vertex 3 {m} + 100, 49.9746, 2.20122043996701; !- X,Y,Z Vertex 4 {m} + +OS:Schedule:Ruleset, + {849e0c6a-eaba-4f51-927f-cd232ea48998}, !- Handle + Cooling Sch, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + {86e1e878-7656-4e6c-9cb7-ee3f32340a1b}; !- Default Day Schedule Name + +OS:Schedule:Day, + {86e1e878-7656-4e6c-9cb7-ee3f32340a1b}, !- Handle + Cooling Sch Default, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 28; !- Value Until Time 1 + +OS:Schedule:Ruleset, + {31e83204-9d4f-4829-a695-b77e72eeb239}, !- Handle + Heating Sch, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + {e235cef8-e436-411f-a8cf-c8c61e074106}; !- Default Day Schedule Name + +OS:Schedule:Day, + {e235cef8-e436-411f-a8cf-c8c61e074106}, !- Handle + Heating Sch Default, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 24; !- Value Until Time 1 + +OS:ThermostatSetpoint:DualSetpoint, + {f52e48a1-4b3b-42cb-8918-3b2d9c069ea3}, !- Handle + Thermostat Setpoint Dual Setpoint 1, !- Name + {31e83204-9d4f-4829-a695-b77e72eeb239}, !- Heating Setpoint Temperature Schedule Name + {849e0c6a-eaba-4f51-927f-cd232ea48998}; !- Cooling Setpoint Temperature Schedule Name + +OS:ScheduleTypeLimits, + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Handle + Temperature, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:DefaultConstructionSet, + {c5966cd1-4865-4962-aec3-37d83a353e35}, !- Handle + ASHRAE_189.1-2009_ClimateZone 4-5 (mdoff)_ConstSet, !- Name + {072eb8fc-7acf-491a-b2c0-4cb8fae478eb}, !- Default Exterior Surface Constructions Name + {bbb47d26-8d09-480c-b5ac-62a9fb450b39}, !- Default Interior Surface Constructions Name + {6be728e2-c5f7-4462-aefa-9056df1ada5e}, !- Default Ground Contact Surface Constructions Name + {e1f233d4-db84-4c40-855e-c448ba8c0870}, !- Default Exterior SubSurface Constructions Name + {50c6f938-6805-4208-9e62-4585259a0acb}, !- Default Interior SubSurface Constructions Name + {af1a758b-0b09-45b3-ba07-5418c012a23c}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name + +OS:DefaultSurfaceConstructions, + {072eb8fc-7acf-491a-b2c0-4cb8fae478eb}, !- Handle + ASHRAE_189.1-2009_ClimateZone 4-5 (mdoff)_Exterior_DefSurfCons, !- Name + {72a68f31-e09c-4817-b74d-2a095a48817a}, !- Floor Construction Name + {51e003d8-84be-4100-99c9-9ed480ea270e}, !- Wall Construction Name + {67e5e282-54ff-45f6-814f-dc584453e431}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {bbb47d26-8d09-480c-b5ac-62a9fb450b39}, !- Handle + 000_Interior_DefSurfCons, !- Name + {72e8e566-4d53-426e-b37d-8c735363786b}, !- Floor Construction Name + {a0c667ed-e2a1-4ae1-88d7-31d7e61aa975}, !- Wall Construction Name + {63425c3e-19c6-4f3d-9124-c56463744d10}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {6be728e2-c5f7-4462-aefa-9056df1ada5e}, !- Handle + 000_Ground_DefSurfCons, !- Name + {72a68f31-e09c-4817-b74d-2a095a48817a}, !- Floor Construction Name + {72a68f31-e09c-4817-b74d-2a095a48817a}, !- Wall Construction Name + {72a68f31-e09c-4817-b74d-2a095a48817a}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {e1f233d4-db84-4c40-855e-c448ba8c0870}, !- Handle + ASHRAE_189.1-2009_ClimateZone 4-5 (mdoff)_Exterior_DefSubCons, !- Name + {c084f967-a9bd-46c2-9181-9b791f84eb40}, !- Fixed Window Construction Name + {c084f967-a9bd-46c2-9181-9b791f84eb40}, !- Operable Window Construction Name + {2e062832-04d5-4b39-87e6-4f70ff10de4b}, !- Door Construction Name + {20f19fa9-8cc0-4c8b-9e3b-32fef7a84e87}, !- Glass Door Construction Name + , !- Overhead Door Construction Name + {20f19fa9-8cc0-4c8b-9e3b-32fef7a84e87}, !- Skylight Construction Name + {3162d8b6-7a3f-4abd-914d-992e9d53f242}, !- Tubular Daylight Dome Construction Name + {3162d8b6-7a3f-4abd-914d-992e9d53f242}; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {50c6f938-6805-4208-9e62-4585259a0acb}, !- Handle + 000_Interior_DefSubCons, !- Name + {3162d8b6-7a3f-4abd-914d-992e9d53f242}, !- Fixed Window Construction Name + {3162d8b6-7a3f-4abd-914d-992e9d53f242}, !- Operable Window Construction Name + {9d5f2e82-ac9a-474a-8d43-c4b50fe7417c}, !- Door Construction Name + {20f19fa9-8cc0-4c8b-9e3b-32fef7a84e87}, !- Glass Door Construction Name + , !- Overhead Door Construction Name + {20f19fa9-8cc0-4c8b-9e3b-32fef7a84e87}, !- Skylight Construction Name + {3162d8b6-7a3f-4abd-914d-992e9d53f242}, !- Tubular Daylight Dome Construction Name + {3162d8b6-7a3f-4abd-914d-992e9d53f242}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {af1a758b-0b09-45b3-ba07-5418c012a23c}, !- Handle + 000_Interior Partition, !- Name + , !- Surface Rendering Name + {01deefa2-1d80-4972-8332-4d29d0f6c228}; !- Layer 1 + +OS:Construction, + {72a68f31-e09c-4817-b74d-2a095a48817a}, !- Handle + 000_ExtSlabCarpet_4in_ClimateZone 1-8, !- Name + , !- Surface Rendering Name + {578d854b-8bf9-4e81-8e2f-12907014d352}, !- Layer 1 + {a78d79cb-85a4-4795-9946-134072578806}; !- Layer 2 + +OS:Construction, + {51e003d8-84be-4100-99c9-9ed480ea270e}, !- Handle + ASHRAE_189.1-2009_ExtWall_SteelFrame_ClimateZone 4-8, !- Name + , !- Surface Rendering Name + {cd04f6d9-b248-4633-9375-76b672c65b9d}, !- Layer 1 + {38621a70-200d-4352-81fd-4eb310f20497}, !- Layer 2 + {f19f3aa9-14c7-424c-9b42-2a0dd0e91ce6}; !- Layer 3 + +OS:Construction, + {67e5e282-54ff-45f6-814f-dc584453e431}, !- Handle + ASHRAE_189.1-2009_ExtRoof_IEAD_ClimateZone 2-5, !- Name + , !- Surface Rendering Name + {d7062f5e-bcbe-4427-86d8-fc220f4e6911}, !- Layer 1 + {52236704-6ad7-4f4f-8ccf-95e1c94b8e32}, !- Layer 2 + {cb814132-d46f-40b5-814c-29e52af2797b}; !- Layer 3 + +OS:Construction, + {72e8e566-4d53-426e-b37d-8c735363786b}, !- Handle + 000_Interior Floor, !- Name + , !- Surface Rendering Name + {9ca3f2fe-3b58-4e95-8fc7-7f9dab821d00}, !- Layer 1 + {561367a8-4420-4f9c-951b-97e969c6d150}, !- Layer 2 + {0d2fdfa0-7b90-4047-ae40-aa226ea4b953}; !- Layer 3 + +OS:Construction, + {a0c667ed-e2a1-4ae1-88d7-31d7e61aa975}, !- Handle + 000_Interior Wall, !- Name + , !- Surface Rendering Name + {608904b1-d103-4953-8f9a-4bb7dab50565}, !- Layer 1 + {8c17155a-cb98-4e3c-9155-c5ed2f85f20a}, !- Layer 2 + {608904b1-d103-4953-8f9a-4bb7dab50565}; !- Layer 3 + +OS:Construction, + {63425c3e-19c6-4f3d-9124-c56463744d10}, !- Handle + 000_Interior Ceiling, !- Name + , !- Surface Rendering Name + {0d2fdfa0-7b90-4047-ae40-aa226ea4b953}, !- Layer 1 + {561367a8-4420-4f9c-951b-97e969c6d150}, !- Layer 2 + {9ca3f2fe-3b58-4e95-8fc7-7f9dab821d00}; !- Layer 3 + +OS:Construction, + {c084f967-a9bd-46c2-9181-9b791f84eb40}, !- Handle + ASHRAE_189.1-2009_ExtWindow_ClimateZone 4-5, !- Name + , !- Surface Rendering Name + {488b6df3-e98a-4b6f-9d24-f99b7bd6caf7}; !- Layer 1 + +OS:Construction, + {2e062832-04d5-4b39-87e6-4f70ff10de4b}, !- Handle + 000_Exterior Door, !- Name + , !- Surface Rendering Name + {445194f8-11b9-4cae-a21f-e9139b6516d6}, !- Layer 1 + {03757b00-947a-4844-bae6-0245941e65a0}; !- Layer 2 + +OS:Construction, + {20f19fa9-8cc0-4c8b-9e3b-32fef7a84e87}, !- Handle + 000_Exterior Window, !- Name + , !- Surface Rendering Name + {fe01ff41-dfbb-4f8d-8449-23175d6c547d}, !- Layer 1 + {e4b5fb4b-3c39-4ad6-9e65-393b234be7c4}, !- Layer 2 + {fe01ff41-dfbb-4f8d-8449-23175d6c547d}; !- Layer 3 + +OS:Construction, + {3162d8b6-7a3f-4abd-914d-992e9d53f242}, !- Handle + 000_Interior Window, !- Name + , !- Surface Rendering Name + {fe01ff41-dfbb-4f8d-8449-23175d6c547d}; !- Layer 1 + +OS:Construction, + {9d5f2e82-ac9a-474a-8d43-c4b50fe7417c}, !- Handle + 000_Interior Door, !- Name + , !- Surface Rendering Name + {01deefa2-1d80-4972-8332-4d29d0f6c228}; !- Layer 1 + +OS:Material, + {01deefa2-1d80-4972-8332-4d29d0f6c228}, !- Handle + 000_G05 25mm wood, !- Name + MediumSmooth, !- Roughness + 0.025399999999999999, !- Thickness {m} + 0.14999999999999999, !- Conductivity {W/m-K} + 608, !- Density {kg/m3} + 1630; !- Specific Heat {J/kg-K} + +OS:Material, + {578d854b-8bf9-4e81-8e2f-12907014d352}, !- Handle + MAT-CC05 4 HW CONCRETE, !- Name + Rough, !- Roughness + 0.1016, !- Thickness {m} + 1.3109999999999999, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.8, !- Specific Heat {J/kg-K} + 0.90000000000000002, !- Thermal Absorptance + 0.69999999999999996, !- Solar Absorptance + 0.69999999999999996; !- Visible Absorptance + +OS:Material:NoMass, + {a78d79cb-85a4-4795-9946-134072578806}, !- Handle + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.2165, !- Thermal Resistance {m2-K/W} + 0.90000000000000002, !- Thermal Absorptance + 0.69999999999999996, !- Solar Absorptance + 0.80000000000000004; !- Visible Absorptance + +OS:Material:NoMass, + {cd04f6d9-b248-4633-9375-76b672c65b9d}, !- Handle + MAT-SHEATH, !- Name + Rough, !- Roughness + 0.36259999999999998, !- Thermal Resistance {m2-K/W} + 0.90000000000000002, !- Thermal Absorptance + 0.69999999999999996, !- Solar Absorptance + 0.69999999999999996; !- Visible Absorptance + +OS:Material, + {38621a70-200d-4352-81fd-4eb310f20497}, !- Handle + Wall Insulation [39], !- Name + MediumRough, !- Roughness + 0.11840000000000001, !- Thickness {m} + 0.044999999999999998, !- Conductivity {W/m-K} + 265, !- Density {kg/m3} + 836.8, !- Specific Heat {J/kg-K} + 0.90000000000000002, !- Thermal Absorptance + 0.69999999999999996, !- Solar Absorptance + 0.69999999999999996; !- Visible Absorptance + +OS:Material, + {f19f3aa9-14c7-424c-9b42-2a0dd0e91ce6}, !- Handle + 1/2IN Gypsum, !- Name + Smooth, !- Roughness + 0.012699999999999999, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 784.89999999999998, !- Density {kg/m3} + 830, !- Specific Heat {J/kg-K} + 0.90000000000000002, !- Thermal Absorptance + 0.92000000000000004, !- Solar Absorptance + 0.92000000000000004; !- Visible Absorptance + +OS:Material, + {d7062f5e-bcbe-4427-86d8-fc220f4e6911}, !- Handle + Roof Membrane, !- Name + VeryRough, !- Roughness + 0.0094999999999999998, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 1121.29, !- Density {kg/m3} + 1460, !- Specific Heat {J/kg-K} + 0.90000000000000002, !- Thermal Absorptance + 0.69999999999999996, !- Solar Absorptance + 0.69999999999999996; !- Visible Absorptance + +OS:Material, + {52236704-6ad7-4f4f-8ccf-95e1c94b8e32}, !- Handle + Roof Insulation [21], !- Name + MediumRough, !- Roughness + 0.21049999999999999, !- Thickness {m} + 0.049000000000000002, !- Conductivity {W/m-K} + 265, !- Density {kg/m3} + 836.8, !- Specific Heat {J/kg-K} + 0.90000000000000002, !- Thermal Absorptance + 0.69999999999999996, !- Solar Absorptance + 0.69999999999999996; !- Visible Absorptance + +OS:Material, + {cb814132-d46f-40b5-814c-29e52af2797b}, !- Handle + Metal Decking, !- Name + MediumSmooth, !- Roughness + 0.0015, !- Thickness {m} + 45.006, !- Conductivity {W/m-K} + 7680, !- Density {kg/m3} + 418.4, !- Specific Heat {J/kg-K} + 0.90000000000000002, !- Thermal Absorptance + 0.69999999999999996, !- Solar Absorptance + 0.29999999999999999; !- Visible Absorptance + +OS:Material, + {9ca3f2fe-3b58-4e95-8fc7-7f9dab821d00}, !- Handle + 000_F16 Acoustic tile, !- Name + MediumSmooth, !- Roughness + 0.019099999999999999, !- Thickness {m} + 0.059999999999999998, !- Conductivity {W/m-K} + 368, !- Density {kg/m3} + 590; !- Specific Heat {J/kg-K} + +OS:Material:AirGap, + {561367a8-4420-4f9c-951b-97e969c6d150}, !- Handle + 000_F05 Ceiling air space resistance, !- Name + 0.17999999999999999; !- Thermal Resistance {m2-K/W} + +OS:Material, + {0d2fdfa0-7b90-4047-ae40-aa226ea4b953}, !- Handle + 000_M11 100mm lightweight concrete, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 0.53000000000000003, !- Conductivity {W/m-K} + 1280, !- Density {kg/m3} + 840; !- Specific Heat {J/kg-K} + +OS:Material, + {608904b1-d103-4953-8f9a-4bb7dab50565}, !- Handle + 000_G01a 19mm gypsum board, !- Name + MediumSmooth, !- Roughness + 0.019, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090; !- Specific Heat {J/kg-K} + +OS:Material:AirGap, + {8c17155a-cb98-4e3c-9155-c5ed2f85f20a}, !- Handle + 000_F04 Wall air space resistance, !- Name + 0.14999999999999999; !- Thermal Resistance {m2-K/W} + +OS:WindowMaterial:Glazing, + {488b6df3-e98a-4b6f-9d24-f99b7bd6caf7}, !- Handle + Theoretical Glass [207], !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.0030000000000000001, !- Thickness {m} + 0.33110000000000001, !- Solar Transmittance at Normal Incidence + 0.61890000000000001, !- Front Side Solar Reflectance at Normal Incidence + 0.61890000000000001, !- Back Side Solar Reflectance at Normal Incidence + 0.44, !- Visible Transmittance at Normal Incidence + 0.51000000000000001, !- Front Side Visible Reflectance at Normal Incidence + 0.51000000000000001, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.90000000000000002, !- Front Side Infrared Hemispherical Emissivity + 0.90000000000000002, !- Back Side Infrared Hemispherical Emissivity + 0.013299999999999999, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:Material, + {445194f8-11b9-4cae-a21f-e9139b6516d6}, !- Handle + 000_F08 Metal surface, !- Name + Smooth, !- Roughness + 0.00080000000000000004, !- Thickness {m} + 45.280000000000001, !- Conductivity {W/m-K} + 7824, !- Density {kg/m3} + 500; !- Specific Heat {J/kg-K} + +OS:Material, + {03757b00-947a-4844-bae6-0245941e65a0}, !- Handle + 000_I01 25mm insulation board, !- Name + MediumRough, !- Roughness + 0.025399999999999999, !- Thickness {m} + 0.029999999999999999, !- Conductivity {W/m-K} + 43, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} + +OS:WindowMaterial:Glazing, + {fe01ff41-dfbb-4f8d-8449-23175d6c547d}, !- Handle + 000_Clear 3mm, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.0030000000000000001, !- Thickness {m} + 0.83699999999999997, !- Solar Transmittance at Normal Incidence + 0.074999999999999997, !- Front Side Solar Reflectance at Normal Incidence + 0.074999999999999997, !- Back Side Solar Reflectance at Normal Incidence + 0.89800000000000002, !- Visible Transmittance at Normal Incidence + 0.081000000000000003, !- Front Side Visible Reflectance at Normal Incidence + 0.081000000000000003, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.83999999999999997, !- Front Side Infrared Hemispherical Emissivity + 0.83999999999999997, !- Back Side Infrared Hemispherical Emissivity + 0.90000000000000002, !- Conductivity {W/m-K} + , !- Dirt Correction Factor for Solar and Visible Transmittance + ; !- Solar Diffusing + +OS:WindowMaterial:Gas, + {e4b5fb4b-3c39-4ad6-9e65-393b234be7c4}, !- Handle + 000_Air 13mm, !- Name + Air, !- Gas Type + 0.012699999999999999; !- Thickness {m} + +OS:Building, + {db6cce5e-845d-408e-bdb2-dffe87126012}, !- Handle + Building 1, !- Name + , !- Building Sector Type + , !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + {c806a8af-4d47-4ab9-afde-cc9bd91dfd8b}, !- Space Type Name + {c5966cd1-4865-4962-aec3-37d83a353e35}, !- Default Construction Set Name + ; !- Default Schedule Set Name + +OS:Construction, + {191812e2-d3ed-4758-a27f-b8aa175f10a1}, !- Handle + Air_Wall, !- Name + , !- Surface Rendering Name + {17d75eff-dad5-405f-97d9-e7c66cf3fd1e}; !- Layer 1 + +OS:Material:AirWall, + {17d75eff-dad5-405f-97d9-e7c66cf3fd1e}, !- Handle + OS:Material:AirWall 1; !- Name + +OS:SpaceType, + {c806a8af-4d47-4ab9-afde-cc9bd91dfd8b}, !- Handle + Baseline Model Space Type, !- Name + , !- Default Construction Set Name + {329739b1-f4b1-44d2-bdc1-14a5ecf26dfb}, !- Default Schedule Set Name + , !- Group Rendering Name + ; !- Design Specification Outdoor Air Object Name + +OS:DefaultScheduleSet, + {329739b1-f4b1-44d2-bdc1-14a5ecf26dfb}, !- Handle + Baseline Model Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {5b5303bc-1fb0-4d72-ba45-21990f923de4}, !- Number of People Schedule Name + {4159761d-681b-4130-bf1f-f4c503226fcd}, !- People Activity Level Schedule Name + {5b5303bc-1fb0-4d72-ba45-21990f923de4}, !- Lighting Schedule Name + {5b5303bc-1fb0-4d72-ba45-21990f923de4}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {349dc9dd-3878-4723-b501-88baae1b45d2}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Schedule:Ruleset, + {349dc9dd-3878-4723-b501-88baae1b45d2}, !- Handle + Baseline Model Infiltration Schedule, !- Name + {12f16644-0f3c-4788-8881-dc5d4cbac5aa}, !- Schedule Type Limits Name + {ea38667f-11d5-43b3-8812-c83b80c8eba1}, !- Default Day Schedule Name + {ac183596-cbbd-4a04-888f-67131265196b}, !- Summer Design Day Schedule Name + {84a2802c-b603-463c-b1f8-67e6d5107395}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {ea38667f-11d5-43b3-8812-c83b80c8eba1}, !- Handle + Baseline Model Infiltration Schedule Schedule All Days, !- Name + {12f16644-0f3c-4788-8881-dc5d4cbac5aa}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Day, + {5fe73521-f739-44f3-a7e2-6f2a8a2bfcb9}, !- 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, + {84a2802c-b603-463c-b1f8-67e6d5107395}, !- Handle + Baseline Model Infiltration Schedule Winter Design Day, !- Name + {12f16644-0f3c-4788-8881-dc5d4cbac5aa}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {5238b063-570f-4a03-8d0a-fa268a099604}, !- 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, + {ac183596-cbbd-4a04-888f-67131265196b}, !- Handle + Baseline Model Infiltration Schedule Summer Design Day, !- Name + {12f16644-0f3c-4788-8881-dc5d4cbac5aa}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:ScheduleTypeLimits, + {12f16644-0f3c-4788-8881-dc5d4cbac5aa}, !- Handle + Fractional, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Continuous; !- Numeric Type + +OS:Schedule:Ruleset, + {5b5303bc-1fb0-4d72-ba45-21990f923de4}, !- Handle + Baseline Model People Lights and Equipment Schedule, !- Name + {12f16644-0f3c-4788-8881-dc5d4cbac5aa}, !- Schedule Type Limits Name + {8a38e6c9-799a-4d7a-83d8-36e2260aba84}, !- Default Day Schedule Name + {e2fb9142-f2cd-445b-8da1-20ffcff1ae14}, !- Summer Design Day Schedule Name + {c38211a9-2482-4edf-948f-bc130eaeda72}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {8a38e6c9-799a-4d7a-83d8-36e2260aba84}, !- Handle + Baseline Model People Lights and Equipment Schedule Schedule Week Day, !- Name + {12f16644-0f3c-4788-8881-dc5d4cbac5aa}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.2, !- Value Until Time 3 + 12, !- Hour 4 + 0, !- Minute 4 + 0.95, !- Value Until Time 4 + 13, !- Hour 5 + 0, !- Minute 5 + 0.5, !- Value Until Time 5 + 17, !- Hour 6 + 0, !- Minute 6 + 0.95, !- Value Until Time 6 + 18, !- Hour 7 + 0, !- Minute 7 + 0.7, !- Value Until Time 7 + 20, !- Hour 8 + 0, !- Minute 8 + 0.4, !- Value Until Time 8 + 22, !- Hour 9 + 0, !- Minute 9 + 0.1, !- Value Until Time 9 + 24, !- Hour 10 + 0, !- Minute 10 + 0.05; !- Value Until Time 10 + +OS:Schedule:Day, + {9487bd27-b819-4791-8849-74abf27f73e1}, !- Handle + Schedule Day 4, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {c38211a9-2482-4edf-948f-bc130eaeda72}, !- Handle + Baseline Model People Lights and Equipment Schedule Winter Design Day, !- Name + {12f16644-0f3c-4788-8881-dc5d4cbac5aa}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {d2284006-a9a6-413d-9654-603bc6f60b6e}, !- Handle + Schedule Day 5, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {e2fb9142-f2cd-445b-8da1-20ffcff1ae14}, !- Handle + Baseline Model People Lights and Equipment Schedule Summer Design Day, !- Name + {12f16644-0f3c-4788-8881-dc5d4cbac5aa}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Rule, + {66f00766-156e-4a68-b629-273e080fc938}, !- Handle + Baseline Model People Lights and Equipment Schedule Saturday Rule, !- Name + {5b5303bc-1fb0-4d72-ba45-21990f923de4}, !- Schedule Ruleset Name + 1, !- Rule Order + {115f1316-1958-4acd-861d-b608b0b550c6}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes; !- Apply Saturday + +OS:Schedule:Day, + {115f1316-1958-4acd-861d-b608b0b550c6}, !- Handle + Baseline Model People Lights and Equipment Schedule Saturday, !- Name + {12f16644-0f3c-4788-8881-dc5d4cbac5aa}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 14, !- Hour 3 + 0, !- Minute 3 + 0.5, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.1, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0; !- Value Until Time 5 + +OS:Schedule:Rule, + {1db5d4a9-4a3e-476a-872d-f76a472f8c96}, !- Handle + Baseline Model People Lights and Equipment Schedule Sunday Rule, !- Name + {5b5303bc-1fb0-4d72-ba45-21990f923de4}, !- Schedule Ruleset Name + 0, !- Rule Order + {c45a7457-40ff-4c74-9f43-ae8a6308af96}, !- Day Schedule Name + Yes; !- Apply Sunday + +OS:Schedule:Day, + {c45a7457-40ff-4c74-9f43-ae8a6308af96}, !- Handle + Baseline Model People Lights and Equipment Schedule Schedule Sunday, !- Name + {12f16644-0f3c-4788-8881-dc5d4cbac5aa}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Ruleset, + {4159761d-681b-4130-bf1f-f4c503226fcd}, !- Handle + Baseline Model People Activity Schedule, !- Name + {0ceccba7-e100-41d3-86c5-394eb1f3516d}, !- Schedule Type Limits Name + {89ccc537-0190-4189-bc58-1d5410fad5c1}; !- Default Day Schedule Name + +OS:Schedule:Day, + {89ccc537-0190-4189-bc58-1d5410fad5c1}, !- Handle + Baseline Model People Activity Schedule Default, !- Name + {0ceccba7-e100-41d3-86c5-394eb1f3516d}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 + +OS:ScheduleTypeLimits, + {0ceccba7-e100-41d3-86c5-394eb1f3516d}, !- Handle + ActivityLevel, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + ActivityLevel; !- Unit Type + +OS:SpaceInfiltration:DesignFlowRate, + {db217295-d39f-42b8-b4a3-15d22923698a}, !- Handle + Baseline Model Infiltration, !- Name + {c806a8af-4d47-4ab9-afde-cc9bd91dfd8b}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.0003048, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:People:Definition, + {abbcfc47-a1cd-449d-a732-daf72aa5764b}, !- Handle + Baseline Model People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {433a10b2-3802-4591-b286-6c7631085712}, !- Handle + Baseline Model People, !- Name + {abbcfc47-a1cd-449d-a732-daf72aa5764b}, !- People Definition Name + {c806a8af-4d47-4ab9-afde-cc9bd91dfd8b}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + , !- Work Efficiency Schedule Name + , !- Clothing Insulation Schedule Name + , !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {5d91ae6a-b3a5-459f-9bf9-4b945a85dfa6}, !- Handle + Baseline Model Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.7639104167097, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {7c140826-81b3-4baf-ad5e-4ab01b2f0518}, !- Handle + Baseline Model Lights, !- Name + {5d91ae6a-b3a5-459f-9bf9-4b945a85dfa6}, !- Lights Definition Name + {c806a8af-4d47-4ab9-afde-cc9bd91dfd8b}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:ElectricEquipment:Definition, + {601ef126-23e7-4f83-8088-49602b42fbcd}, !- Handle + Baseline Model Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.7639104167097, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {21cf1246-14e3-42a9-a4c6-171f10a9366c}, !- Handle + Baseline Model Electric Equipment, !- Name + {601ef126-23e7-4f83-8088-49602b42fbcd}, !- Electric Equipment Definition Name + {c806a8af-4d47-4ab9-afde-cc9bd91dfd8b}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:SizingPeriod:DesignDay, + {e911a1d0-dba3-499e-9202-8c464584497a}, !- Handle + Chicago Ohare Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name + 33.3, !- Maximum Dry-Bulb Temperature {C} + 10.5, !- Daily Dry-Bulb Temperature Range {deltaC} + 23.7, !- Humidity Indicating Conditions at Maximum Dry-Bulb + 98934, !- Barometric Pressure {Pa} + 5.2, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- Snow Indicator + 21, !- Day of Month + 7, !- Month + SummerDesignDay, !- Day Type + 0, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Indicating Type + , !- Humidity Indicating Day Schedule Name + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.455, !- ASHRAE Taub {dimensionless} + 2.05; !- ASHRAE Taud {dimensionless} + +OS:SizingPeriod:DesignDay, + {0584bb73-de4f-4ec2-a32b-39aecabf59a1}, !- Handle + Chicago Ohare Intl Ap Ann Htg 99.6% Condns DB, !- Name + -20, !- Maximum Dry-Bulb Temperature {C} + 0, !- Daily Dry-Bulb Temperature Range {deltaC} + -20, !- Humidity Indicating Conditions at Maximum Dry-Bulb + 98934, !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- Snow Indicator + 21, !- Day of Month + 1, !- Month + WinterDesignDay, !- Day Type + 0, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Indicating Type + , !- Humidity Indicating Day Schedule Name + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + ASHRAEClearSky; !- Solar Model Indicator + +OS:SimulationControl, + {cd540d0c-e890-4b34-87b1-c64a52686c2c}, !- 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, + {ede0ccdc-5b1a-401c-8ccf-404cc78e354d}, !- Handle + 4; !- Number of Timesteps per Hour + +OS:Schedule:Constant, + {000d4055-8f9c-43ea-889b-9e2eabc81fda}, !- Handle + Always On Discrete, !- Name + {f3a1c1b5-0447-4f0d-b36b-ac7934a73874}, !- Schedule Type Limits Name + 1; !- Value + +OS:ScheduleTypeLimits, + {f3a1c1b5-0447-4f0d-b36b-ac7934a73874}, !- Handle + OnOff, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Discrete, !- Numeric Type + Availability; !- Unit Type + +OS:Schedule:Ruleset, + {e037a544-39fa-4602-9bbe-d85b72c8a309}, !- Handle + Deck_Temperature, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + {01c3fd7f-0610-49b0-8f4f-f0547ed6b859}, !- Default Day Schedule Name + {3cc50f5c-306f-4514-9c5f-6edc810bf31d}, !- Summer Design Day Schedule Name + {ff9d96a5-544e-4a24-a731-b6052d27cc78}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {01c3fd7f-0610-49b0-8f4f-f0547ed6b859}, !- Handle + Deck_Temperature_Default, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 12.8; !- Value Until Time 1 + +OS:Schedule:Day, + {3cc50f5c-306f-4514-9c5f-6edc810bf31d}, !- Handle + Deck_Temperature_Summer_Design_Day, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 12.8; !- Value Until Time 1 + +OS:Schedule:Day, + {ff9d96a5-544e-4a24-a731-b6052d27cc78}, !- Handle + Deck_Temperature_Winter_Design_Day, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 12.8; !- Value Until Time 1 + +OS:Schedule:Ruleset, + {a4c117af-ff65-4790-b667-d40cb53ddb25}, !- Handle + Hot_Water_Temperature, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + {8c18e5e8-3169-49b0-87da-f16b8ce52095}, !- Default Day Schedule Name + {99312850-ead3-44fd-99d9-be4a2403c23c}, !- Summer Design Day Schedule Name + {110809ea-c9c1-4512-b2f9-6f6e975eb6dc}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {8c18e5e8-3169-49b0-87da-f16b8ce52095}, !- Handle + Hot_Water_Temperature_Default, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 67; !- Value Until Time 1 + +OS:Schedule:Day, + {99312850-ead3-44fd-99d9-be4a2403c23c}, !- Handle + Hot_Water_Temperature_Summer_Design_Day, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 67; !- Value Until Time 1 + +OS:Schedule:Day, + {110809ea-c9c1-4512-b2f9-6f6e975eb6dc}, !- Handle + Hot_Water_Temperature_Winter_Design_Day, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 67; !- Value Until Time 1 + +OS:Schedule:Ruleset, + {c5de521a-7ac5-4a88-8eb1-ae35116adb4a}, !- Handle + Chilled_Water_Temperature, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + {b2e08e48-a821-44a6-b032-ded37ba7b2f8}, !- Default Day Schedule Name + {f32416d3-7afe-4971-80ab-cd7957fa46d3}, !- Summer Design Day Schedule Name + {ec6a7706-337f-4564-93a8-7a31c8f86a1d}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {b2e08e48-a821-44a6-b032-ded37ba7b2f8}, !- Handle + Chilled_Water_Temperature_Default, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 6.7; !- Value Until Time 1 + +OS:Schedule:Day, + {f32416d3-7afe-4971-80ab-cd7957fa46d3}, !- Handle + Chilled_Water_Temperature_Summer_Design_Day, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 6.7; !- Value Until Time 1 + +OS:Schedule:Day, + {ec6a7706-337f-4564-93a8-7a31c8f86a1d}, !- Handle + Chilled_Water_Temperature_Winter_Design_Day, !- Name + {016f67e6-f12a-44a8-b517-1fc183788016}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 6.7; !- Value Until Time 1 + +OS:AirLoopHVAC, + {7bb0ffcb-5e8e-4773-9893-d37951c9601a}, !- Handle + VAV with Reheat, !- Name + , !- Controller List Name + {000d4055-8f9c-43ea-889b-9e2eabc81fda}, !- Availability Schedule + {0c6b2044-18cf-461f-b6c8-c5442807203b}, !- Availability Manager List Name + AutoSize, !- Design Supply Air Flow Rate {m3/s} + , !- Branch List Name + , !- Connector List Name + {1d01f479-77c6-48c3-9434-c068e1d527bb}, !- Supply Side Inlet Node Name + {035317ff-1f34-4b47-8b32-da0f845fa8de}, !- Demand Side Outlet Node Name + {72ccca1a-7aa5-4e33-895b-672107099a33}, !- Demand Side Inlet Node A + {dcc2e31d-1ce9-45e9-88bc-ef2b9940f58f}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {d3f4c66e-e5e0-49d4-a71e-54487b86fc51}, !- Demand Mixer Name + {601c2de6-7e27-4b85-b073-109a0c6caff7}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:Node, + {43ce8b94-dd3b-4cd3-830d-5fd07786817b}, !- Handle + Node 2, !- Name + {1d01f479-77c6-48c3-9434-c068e1d527bb}, !- Inlet Port + {8b7bf505-d205-46db-8302-28cf0929438f}; !- Outlet Port + +OS:Node, + {1a106fbf-7d02-4129-a143-0b59a788d4f1}, !- Handle + Node 3, !- Name + {91894ccf-ffc7-496e-95d9-d00c5e81c3cb}, !- Inlet Port + {dcc2e31d-1ce9-45e9-88bc-ef2b9940f58f}; !- Outlet Port + +OS:Connection, + {1d01f479-77c6-48c3-9434-c068e1d527bb}, !- Handle + {a0b9253c-8ade-4cd0-ad77-94db0639b456}, !- Name + {7bb0ffcb-5e8e-4773-9893-d37951c9601a}, !- Source Object + 8, !- Outlet Port + {43ce8b94-dd3b-4cd3-830d-5fd07786817b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dcc2e31d-1ce9-45e9-88bc-ef2b9940f58f}, !- Handle + {f14576fc-80a3-4aee-9144-962ea9129fc6}, !- Name + {1a106fbf-7d02-4129-a143-0b59a788d4f1}, !- Source Object + 3, !- Outlet Port + {7bb0ffcb-5e8e-4773-9893-d37951c9601a}, !- Target Object + 11; !- Inlet Port + +OS:Node, + {67519a94-65c8-4d85-ae39-ff2fd8e27f9c}, !- Handle + Node 4, !- Name + {72ccca1a-7aa5-4e33-895b-672107099a33}, !- Inlet Port + {8f8a74f0-5a6e-4749-9f9b-213a6aace79d}; !- Outlet Port + +OS:Node, + {77a0e8a0-5bcf-4d1f-b48e-838e6774b4c1}, !- Handle + Node 5, !- Name + {2120de6e-eca7-4fbe-bc60-4eff6620468b}, !- Inlet Port + {035317ff-1f34-4b47-8b32-da0f845fa8de}; !- Outlet Port + +OS:Node, + {9d53fa40-0a82-4b09-b42c-5ff01700f3d7}, !- Handle + Node 6, !- Name + {be8f93c7-4bd0-4442-9fe2-89a8071ac8a3}, !- Inlet Port + {ec88f6dd-0359-45b3-ae34-7af1310c9156}; !- Outlet Port + +OS:Connection, + {72ccca1a-7aa5-4e33-895b-672107099a33}, !- Handle + {3cb9696d-f50d-4d2c-ac60-8e7e576d2e49}, !- Name + {7bb0ffcb-5e8e-4773-9893-d37951c9601a}, !- Source Object + 10, !- Outlet Port + {67519a94-65c8-4d85-ae39-ff2fd8e27f9c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {035317ff-1f34-4b47-8b32-da0f845fa8de}, !- Handle + {03f06d3b-273f-468c-9278-96a00df5f2b8}, !- Name + {77a0e8a0-5bcf-4d1f-b48e-838e6774b4c1}, !- Source Object + 3, !- Outlet Port + {7bb0ffcb-5e8e-4773-9893-d37951c9601a}, !- Target Object + 9; !- Inlet Port + +OS:AirLoopHVAC:ZoneSplitter, + {601c2de6-7e27-4b85-b073-109a0c6caff7}, !- Handle + Air Loop HVAC Zone Splitter 1, !- Name + {8f8a74f0-5a6e-4749-9f9b-213a6aace79d}, !- Inlet Node Name + {f5237a97-1360-45bf-9736-dcba3f2acebc}; !- Outlet Node Name 1 + +OS:AirLoopHVAC:ZoneMixer, + {d3f4c66e-e5e0-49d4-a71e-54487b86fc51}, !- Handle + Air Loop HVAC Zone Mixer 1, !- Name + {2120de6e-eca7-4fbe-bc60-4eff6620468b}, !- Outlet Node Name + {d0bc99ae-6645-4a81-94e7-7ad9c840eda9}; !- Inlet Node Name 1 + +OS:Connection, + {8f8a74f0-5a6e-4749-9f9b-213a6aace79d}, !- Handle + {44063fc4-119f-4267-9c6c-d89a86d9d3da}, !- Name + {67519a94-65c8-4d85-ae39-ff2fd8e27f9c}, !- Source Object + 3, !- Outlet Port + {601c2de6-7e27-4b85-b073-109a0c6caff7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2120de6e-eca7-4fbe-bc60-4eff6620468b}, !- Handle + {641889ea-f8d9-41c9-b093-8e983bd3eb52}, !- Name + {d3f4c66e-e5e0-49d4-a71e-54487b86fc51}, !- Source Object + 2, !- Outlet Port + {77a0e8a0-5bcf-4d1f-b48e-838e6774b4c1}, !- Target Object + 2; !- Inlet Port + +OS:Sizing:System, + {cf648684-3d8a-41f5-b85f-dd3a133f93a3}, !- Handle + {7bb0ffcb-5e8e-4773-9893-d37951c9601a}, !- AirLoop Name + Sensible, !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Central Cooling Design Supply Air Temperature {C} + 12.8, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Sizing Option + Yes, !- 100% Outdoor Air in Cooling + Yes, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +OS:AvailabilityManagerAssignmentList, + {0c6b2044-18cf-461f-b6c8-c5442807203b}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList; !- Name + +OS:Fan:VariableVolume, + {9bd928bc-af6c-468a-b465-4474643789a5}, !- Handle + Fan Variable Volume 1, !- Name + {000d4055-8f9c-43ea-889b-9e2eabc81fda}, !- Availability Schedule Name + 0.6045, !- Fan Total Efficiency + 500, !- Pressure Rise {Pa} + Autosize, !- Maximum Flow Rate {m3/s} + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + 0, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.93, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + 0.040759894, !- Fan Power Coefficient 1 + 0.08804497, !- Fan Power Coefficient 2 + -0.07292612, !- Fan Power Coefficient 3 + 0.943739823, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + {d6bf2229-e9c9-4eb5-aef2-58ac82d1107f}, !- Air Inlet Node Name + {91894ccf-ffc7-496e-95d9-d00c5e81c3cb}, !- Air Outlet Node Name + ; !- End-Use Subcategory + +OS:Coil:Heating:Water, + {8cc75900-e315-47e1-b5cf-a865c8815e4e}, !- Handle + Coil Heating Water 1, !- Name + {000d4055-8f9c-43ea-889b-9e2eabc81fda}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {23463670-90eb-46ba-b58e-7b295019bc7a}, !- Water Inlet Node Name + {3b3e66da-fd0b-44da-ad1e-d504e43d0d99}, !- Water Outlet Node Name + {0c2192af-20ee-4ad6-a248-99206c3fcee8}, !- Air Inlet Node Name + {38b512d4-4e7a-456c-b154-4e5f54228fee}, !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Coil:Cooling:Water, + {972568df-d228-4eed-97ef-566188af2060}, !- Handle + Coil Cooling Water 1, !- Name + {000d4055-8f9c-43ea-889b-9e2eabc81fda}, !- Availability Schedule Name + , !- Design Water Flow Rate {m3/s} + , !- Design Air Flow Rate {m3/s} + , !- Design Inlet Water Temperature {C} + , !- Design Inlet Air Temperature {C} + , !- Design Outlet Air Temperature {C} + , !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + , !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {997f6d3d-5191-4852-907c-23ab8b49f8af}, !- Water Inlet Node Name + {ec3abceb-33d1-47dd-b187-6be08e7a31b2}, !- Water Outlet Node Name + {dbe0c6ed-e49d-4a49-beed-29b5ec265e15}, !- Air Inlet Node Name + {2d436a86-68ce-40d1-986a-30fe8fcfd361}, !- Air Outlet Node Name + , !- Type of Analysis + ; !- Heat Exchanger Configuration + +OS:SetpointManager:Scheduled, + {457a7996-acff-473b-a4b5-9773256d41f1}, !- Handle + Setpoint Manager Scheduled 1, !- Name + Temperature, !- Control Variable + {e037a544-39fa-4602-9bbe-d85b72c8a309}, !- Schedule Name + {1a106fbf-7d02-4129-a143-0b59a788d4f1}; !- Setpoint Node or NodeList Name + +OS:Controller:OutdoorAir, + {4b9ebc2a-1973-4627-97f6-5413b2c2009c}, !- Handle + Controller Outdoor Air 1, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + 0, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + , !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {bca80206-a721-42f5-93e7-523fab9969de}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type + +OS:Controller:MechanicalVentilation, + {bca80206-a721-42f5-93e7-523fab9969de}, !- Handle + Controller Mechanical Ventilation 1, !- Name + {000d4055-8f9c-43ea-889b-9e2eabc81fda}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:AirLoopHVAC:OutdoorAirSystem, + {247edc68-d231-4ebc-a5f1-6a22bdbec841}, !- Handle + Air Loop HVAC Outdoor Air System 1, !- Name + {4b9ebc2a-1973-4627-97f6-5413b2c2009c}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {f963af47-c788-4c49-bdd0-8a3f735c40d7}, !- Mixed Air Node Name + {696940e3-d254-43db-8172-cc2d879d748b}, !- Outdoor Air Stream Node Name + {f98953e2-77a8-4ac7-9a1f-ac53e9c6f9e7}, !- Relief Air Stream Node Name + {8b7bf505-d205-46db-8302-28cf0929438f}; !- Return Air Stream Node Name + +OS:Node, + {87cf2310-5d6b-4fa0-a894-254efb29ab66}, !- Handle + Node 7, !- Name + , !- Inlet Port + {696940e3-d254-43db-8172-cc2d879d748b}; !- Outlet Port + +OS:Connection, + {696940e3-d254-43db-8172-cc2d879d748b}, !- Handle + {2e58fda2-fc61-497d-bd18-c850ceaba5ba}, !- Name + {87cf2310-5d6b-4fa0-a894-254efb29ab66}, !- Source Object + 3, !- Outlet Port + {247edc68-d231-4ebc-a5f1-6a22bdbec841}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {7c17b786-bc50-4f29-9458-431932d6629e}, !- Handle + Node 8, !- Name + {f98953e2-77a8-4ac7-9a1f-ac53e9c6f9e7}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {f98953e2-77a8-4ac7-9a1f-ac53e9c6f9e7}, !- Handle + {329c2d32-49ed-4568-9872-1cdd43f0c124}, !- Name + {247edc68-d231-4ebc-a5f1-6a22bdbec841}, !- Source Object + 7, !- Outlet Port + {7c17b786-bc50-4f29-9458-431932d6629e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8b7bf505-d205-46db-8302-28cf0929438f}, !- Handle + {f75fbc7c-1c04-4eb1-b1ec-09e01c079c83}, !- Name + {43ce8b94-dd3b-4cd3-830d-5fd07786817b}, !- Source Object + 3, !- Outlet Port + {247edc68-d231-4ebc-a5f1-6a22bdbec841}, !- Target Object + 8; !- Inlet Port + +OS:Node, + {eda2645d-ff50-4dac-9862-04ef45d2ea3f}, !- Handle + Node 9, !- Name + {f963af47-c788-4c49-bdd0-8a3f735c40d7}, !- Inlet Port + {dbe0c6ed-e49d-4a49-beed-29b5ec265e15}; !- Outlet Port + +OS:Connection, + {f963af47-c788-4c49-bdd0-8a3f735c40d7}, !- Handle + {bbf84d65-47c8-4e84-af71-cd3979a9fef5}, !- Name + {247edc68-d231-4ebc-a5f1-6a22bdbec841}, !- Source Object + 5, !- Outlet Port + {eda2645d-ff50-4dac-9862-04ef45d2ea3f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dbe0c6ed-e49d-4a49-beed-29b5ec265e15}, !- Handle + {9be13a2c-f032-486a-918b-c725428e55f4}, !- Name + {eda2645d-ff50-4dac-9862-04ef45d2ea3f}, !- Source Object + 3, !- Outlet Port + {972568df-d228-4eed-97ef-566188af2060}, !- Target Object + 12; !- Inlet Port + +OS:Node, + {47c9fc18-e452-49b8-9481-c0496310cc2a}, !- Handle + Node 10, !- Name + {2d436a86-68ce-40d1-986a-30fe8fcfd361}, !- Inlet Port + {0c2192af-20ee-4ad6-a248-99206c3fcee8}; !- Outlet Port + +OS:Connection, + {2d436a86-68ce-40d1-986a-30fe8fcfd361}, !- Handle + {45e148fb-f352-46d4-a4e9-b8b1de704731}, !- Name + {972568df-d228-4eed-97ef-566188af2060}, !- Source Object + 13, !- Outlet Port + {47c9fc18-e452-49b8-9481-c0496310cc2a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0c2192af-20ee-4ad6-a248-99206c3fcee8}, !- Handle + {e13ecd8e-dc37-4ce0-ba49-c4e3b7e13f16}, !- Name + {47c9fc18-e452-49b8-9481-c0496310cc2a}, !- Source Object + 3, !- Outlet Port + {8cc75900-e315-47e1-b5cf-a865c8815e4e}, !- Target Object + 7; !- Inlet Port + +OS:Node, + {a85db7ca-a8d5-4094-a78b-693cd3749a6c}, !- Handle + Node 11, !- Name + {38b512d4-4e7a-456c-b154-4e5f54228fee}, !- Inlet Port + {d6bf2229-e9c9-4eb5-aef2-58ac82d1107f}; !- Outlet Port + +OS:Connection, + {38b512d4-4e7a-456c-b154-4e5f54228fee}, !- Handle + {355953f1-dbf9-49c5-bf0b-c09afcd806f7}, !- Name + {8cc75900-e315-47e1-b5cf-a865c8815e4e}, !- Source Object + 8, !- Outlet Port + {a85db7ca-a8d5-4094-a78b-693cd3749a6c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d6bf2229-e9c9-4eb5-aef2-58ac82d1107f}, !- Handle + {325e1d9e-81c4-42b5-8f18-112cc9ad1d8a}, !- Name + {a85db7ca-a8d5-4094-a78b-693cd3749a6c}, !- Source Object + 3, !- Outlet Port + {9bd928bc-af6c-468a-b465-4474643789a5}, !- Target Object + 16; !- Inlet Port + +OS:Connection, + {91894ccf-ffc7-496e-95d9-d00c5e81c3cb}, !- Handle + {0d24faa4-7c6c-42cf-84ab-cac181a649ec}, !- Name + {9bd928bc-af6c-468a-b465-4474643789a5}, !- Source Object + 17, !- Outlet Port + {1a106fbf-7d02-4129-a143-0b59a788d4f1}, !- Target Object + 2; !- Inlet Port + +OS:PlantLoop, + {b72dcba5-b278-4e3a-9210-705b5cbd7042}, !- Handle + Hot Water Loop, !- Name + Water, !- Fluid Type + 0, !- Glycol Concentration + , !- User Defined Fluid Type + , !- Plant Equipment Operation Heating Load + , !- Plant Equipment Operation Cooling Load + , !- Primary Plant Equipment Operation Scheme + {81aed310-22b9-40da-b125-1468ca605ed3}, !- Loop Temperature Setpoint Node Name + , !- Maximum Loop Temperature {C} + , !- Minimum Loop Temperature {C} + , !- Maximum Loop Flow Rate {m3/s} + , !- Minimum Loop Flow Rate {m3/s} + Autocalculate, !- Plant Loop Volume {m3} + {a90c4068-38c4-4fd9-9d9c-f696b3aa3760}, !- Plant Side Inlet Node Name + {dc7805aa-bad8-4dcf-81e6-6a054916236e}, !- Plant Side Outlet Node Name + , !- Plant Side Branch List Name + {b6a3e306-6bb7-4e80-8d89-5ac74e0d98e5}, !- Demand Side Inlet Node Name + {de73b85b-3fd5-4225-9a31-dcb7c6b949fe}, !- Demand Side Outlet Node Name + , !- Demand Side Branch List Name + , !- Demand Side Connector List Name + Optimal, !- Load Distribution Scheme + {fdcae271-3897-4f78-9966-35800089e6ee}, !- 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 + {fef9a9fa-6788-42b2-b9e1-343b830cb71c}, !- Demand Mixer Name + {4a7aa2e7-4893-4283-a2c3-076ec69772ce}, !- Demand Splitter Name + {107b9780-d6a8-4ab9-89f4-3245e6158a49}, !- Supply Mixer Name + {78d6fbeb-b8aa-42ba-b305-3a9e497b6104}; !- Supply Splitter Name + +OS:Node, + {969269d1-57ff-45de-bafc-aa81f7c1f98e}, !- Handle + Node 12, !- Name + {a90c4068-38c4-4fd9-9d9c-f696b3aa3760}, !- Inlet Port + {390f3e2d-8c25-40ee-b6b2-c299e2a98489}; !- Outlet Port + +OS:Node, + {81aed310-22b9-40da-b125-1468ca605ed3}, !- Handle + Node 13, !- Name + {a2e589bf-f5ae-4119-9163-90037ab8ace9}, !- Inlet Port + {dc7805aa-bad8-4dcf-81e6-6a054916236e}; !- Outlet Port + +OS:Node, + {a325dbac-cd8d-42ab-87ea-ee80da563ece}, !- Handle + Node 14, !- Name + {46f61b99-66ea-4422-a44e-c77dd8207e5e}, !- Inlet Port + {d0c4f551-baa3-44cf-80e3-759e570b1fc1}; !- Outlet Port + +OS:Connector:Mixer, + {107b9780-d6a8-4ab9-89f4-3245e6158a49}, !- Handle + Connector Mixer 1, !- Name + {69657596-9180-438e-938c-0087920490f6}, !- Outlet Branch Name + {1837543a-dd88-4c21-a9e1-d1cd232c867a}, !- Inlet Branch Name 1 + {f74483c6-e760-48d1-a059-8345ec30f66c}; !- Inlet Branch Name 2 + +OS:Connector:Splitter, + {78d6fbeb-b8aa-42ba-b305-3a9e497b6104}, !- Handle + Connector Splitter 1, !- Name + {0bb2a65c-7ce0-4ca6-87c6-5d24e79c3916}, !- Inlet Branch Name + {46f61b99-66ea-4422-a44e-c77dd8207e5e}, !- Outlet Branch Name 1 + {caa8dd3b-8bb5-44a6-914c-83456fbd6bef}; !- Outlet Branch Name 2 + +OS:Connection, + {a90c4068-38c4-4fd9-9d9c-f696b3aa3760}, !- Handle + {b916ba18-10bc-4446-91a9-04b809d58bc5}, !- Name + {b72dcba5-b278-4e3a-9210-705b5cbd7042}, !- Source Object + 14, !- Outlet Port + {969269d1-57ff-45de-bafc-aa81f7c1f98e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {46f61b99-66ea-4422-a44e-c77dd8207e5e}, !- Handle + {43559405-89cf-41dc-bb67-b59675564d0f}, !- Name + {78d6fbeb-b8aa-42ba-b305-3a9e497b6104}, !- Source Object + 3, !- Outlet Port + {a325dbac-cd8d-42ab-87ea-ee80da563ece}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dc7805aa-bad8-4dcf-81e6-6a054916236e}, !- Handle + {282b21d1-795d-4983-a03e-2f4cdffac08b}, !- Name + {81aed310-22b9-40da-b125-1468ca605ed3}, !- Source Object + 3, !- Outlet Port + {b72dcba5-b278-4e3a-9210-705b5cbd7042}, !- Target Object + 15; !- Inlet Port + +OS:Node, + {d0f20be7-16bf-4c4e-8a34-4fc71c37b429}, !- Handle + Node 15, !- Name + {b6a3e306-6bb7-4e80-8d89-5ac74e0d98e5}, !- Inlet Port + {944d8226-1067-4655-b3c7-022b1a75c600}; !- Outlet Port + +OS:Node, + {1518b017-bb0a-4dcc-aa3b-f79b6376e12a}, !- Handle + Node 16, !- Name + {c9d7e93f-e885-4ebc-8c2f-ccbd24e575c4}, !- Inlet Port + {de73b85b-3fd5-4225-9a31-dcb7c6b949fe}; !- Outlet Port + +OS:Node, + {50ebcedc-5995-4da8-b0d3-2c666b90c4aa}, !- Handle + Node 17, !- Name + {0c95ac25-0603-4405-af13-584ca5366b54}, !- Inlet Port + {c332ac75-0409-4e14-8c50-46ce3056885f}; !- Outlet Port + +OS:Connector:Mixer, + {fef9a9fa-6788-42b2-b9e1-343b830cb71c}, !- Handle + Connector Mixer 2, !- Name + {15d8884e-c332-42c4-b775-223d020c69fb}, !- Outlet Branch Name + {9adce50c-d46c-48df-9b56-5a4fffb601fe}, !- Inlet Branch Name 1 + {e02f8cc1-4d8e-4168-8560-d009f90481eb}, !- Inlet Branch Name 2 + {1cfcf513-6bba-4ed5-9604-a4a5e2ee9694}; !- Inlet Branch Name 3 + +OS:Connector:Splitter, + {4a7aa2e7-4893-4283-a2c3-076ec69772ce}, !- Handle + Connector Splitter 2, !- Name + {c604337f-9383-40a0-8e74-d3a198e34ffe}, !- Inlet Branch Name + {0c95ac25-0603-4405-af13-584ca5366b54}, !- Outlet Branch Name 1 + {cbab1fcb-85c7-4ad7-8ef6-08ab9059a495}, !- Outlet Branch Name 2 + {dbcbd3d7-8e3d-4d8b-abc5-486187c70c5f}; !- Outlet Branch Name 3 + +OS:Connection, + {b6a3e306-6bb7-4e80-8d89-5ac74e0d98e5}, !- Handle + {e65ac976-0ec4-43a5-94eb-a303b02dfa2c}, !- Name + {b72dcba5-b278-4e3a-9210-705b5cbd7042}, !- Source Object + 17, !- Outlet Port + {d0f20be7-16bf-4c4e-8a34-4fc71c37b429}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0c95ac25-0603-4405-af13-584ca5366b54}, !- Handle + {b6c5c9c4-48a7-47e0-ae25-6421d6b3722d}, !- Name + {4a7aa2e7-4893-4283-a2c3-076ec69772ce}, !- Source Object + 3, !- Outlet Port + {50ebcedc-5995-4da8-b0d3-2c666b90c4aa}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {de73b85b-3fd5-4225-9a31-dcb7c6b949fe}, !- Handle + {a642aa2f-3a49-4d5c-a584-d5e06591e5d3}, !- Name + {1518b017-bb0a-4dcc-aa3b-f79b6376e12a}, !- Source Object + 3, !- Outlet Port + {b72dcba5-b278-4e3a-9210-705b5cbd7042}, !- Target Object + 18; !- Inlet Port + +OS:Sizing:Plant, + {c09fc4ff-7686-497d-9624-250ab2c20b16}, !- Handle + {b72dcba5-b278-4e3a-9210-705b5cbd7042}, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 82, !- 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, + {fdcae271-3897-4f78-9966-35800089e6ee}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name + +OS:Pump:VariableSpeed, + {aa2681f8-2786-49de-90b8-dcc51b9e51d9}, !- Handle + Pump Variable Speed 1, !- Name + {390f3e2d-8c25-40ee-b6b2-c299e2a98489}, !- Inlet Node Name + {1e9a04d9-7e60-42e9-9f6c-f07350c28a21}, !- Outlet Node Name + , !- Rated Flow Rate {m3/s} + , !- Rated Pump Head {Pa} + , !- Rated Power Consumption {W} + , !- Motor Efficiency + , !- Fraction of Motor Inefficiencies to Fluid Stream + , !- Coefficient 1 of the Part Load Performance Curve + , !- Coefficient 2 of the Part Load Performance Curve + , !- 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:Boiler:HotWater, + {c2c9c487-7fde-4708-a327-9e2b45ad660c}, !- Handle + Boiler Hot Water 1, !- Name + , !- Fuel Type + , !- Nominal Capacity {W} + , !- Nominal Thermal Efficiency + LeavingBoiler, !- Efficiency Curve Temperature Evaluation Variable + {211f1c6b-33a7-4fef-82f2-9765190a84e8}, !- Normalized Boiler Efficiency Curve Name + , !- Design Water Flow Rate {m3/s} + , !- Minimum Part Load Ratio + , !- Maximum Part Load Ratio + , !- Optimum Part Load Ratio + {d0c4f551-baa3-44cf-80e3-759e570b1fc1}, !- Boiler Water Inlet Node Name + {2379cc6c-8e81-428b-a264-45062ff1dfbd}, !- Boiler Water Outlet Node Name + 99, !- Water Outlet Upper Temperature Limit {C} + ConstantFlow, !- Boiler Flow Mode + 0, !- Parasitic Electric Load {W} + 1, !- Sizing Factor + General; !- End-Use Subcategory + +OS:Curve:Biquadratic, + {211f1c6b-33a7-4fef-82f2-9765190a84e8}, !- Handle + Boiler Efficiency, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 y + 0, !- Coefficient5 y**2 + 0, !- Coefficient6 x*y + 0, !- Minimum Value of x + 1, !- Maximum Value of x + 0, !- Minimum Value of y + 1, !- Maximum Value of y + , !- Minimum Curve Output + , !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +OS:Node, + {9fdf09f2-37e8-46a1-94a7-63a6a2fdc6b2}, !- Handle + Node 18, !- Name + {1e9a04d9-7e60-42e9-9f6c-f07350c28a21}, !- Inlet Port + {0bb2a65c-7ce0-4ca6-87c6-5d24e79c3916}; !- Outlet Port + +OS:Connection, + {390f3e2d-8c25-40ee-b6b2-c299e2a98489}, !- Handle + {d0a816e8-ecd0-4886-a8b5-0e1ca7413f2a}, !- Name + {969269d1-57ff-45de-bafc-aa81f7c1f98e}, !- Source Object + 3, !- Outlet Port + {aa2681f8-2786-49de-90b8-dcc51b9e51d9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1e9a04d9-7e60-42e9-9f6c-f07350c28a21}, !- Handle + {b1727aa9-2ee5-437d-b6ce-4fcd4f1762aa}, !- Name + {aa2681f8-2786-49de-90b8-dcc51b9e51d9}, !- Source Object + 3, !- Outlet Port + {9fdf09f2-37e8-46a1-94a7-63a6a2fdc6b2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0bb2a65c-7ce0-4ca6-87c6-5d24e79c3916}, !- Handle + {c53a5c82-6282-4806-a525-d9a53395d117}, !- Name + {9fdf09f2-37e8-46a1-94a7-63a6a2fdc6b2}, !- Source Object + 3, !- Outlet Port + {78d6fbeb-b8aa-42ba-b305-3a9e497b6104}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {426abba7-da78-4d3a-8879-2ed2d81b04e1}, !- Handle + Node 19, !- Name + {2379cc6c-8e81-428b-a264-45062ff1dfbd}, !- Inlet Port + {1837543a-dd88-4c21-a9e1-d1cd232c867a}; !- Outlet Port + +OS:Connection, + {d0c4f551-baa3-44cf-80e3-759e570b1fc1}, !- Handle + {b2969b7e-ae07-4fd9-9d1f-591b45a839c6}, !- Name + {a325dbac-cd8d-42ab-87ea-ee80da563ece}, !- Source Object + 3, !- Outlet Port + {c2c9c487-7fde-4708-a327-9e2b45ad660c}, !- Target Object + 11; !- Inlet Port + +OS:Connection, + {2379cc6c-8e81-428b-a264-45062ff1dfbd}, !- Handle + {cd214cd5-bfd6-4bb4-95ff-1d3913a31b5b}, !- Name + {c2c9c487-7fde-4708-a327-9e2b45ad660c}, !- Source Object + 12, !- Outlet Port + {426abba7-da78-4d3a-8879-2ed2d81b04e1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1837543a-dd88-4c21-a9e1-d1cd232c867a}, !- Handle + {3df1fc43-4aaa-4e0e-adcb-49df109c69f5}, !- Name + {426abba7-da78-4d3a-8879-2ed2d81b04e1}, !- Source Object + 3, !- Outlet Port + {107b9780-d6a8-4ab9-89f4-3245e6158a49}, !- Target Object + 3; !- Inlet Port + +OS:Pipe:Adiabatic, + {21a51248-9f86-4af7-88cb-8823fe1144cd}, !- Handle + Pipe Adiabatic 1, !- Name + {54a44452-cde9-401a-aed4-b52726441018}, !- Inlet Node Name + {11a9cd91-558f-4a55-8af1-ea084c25171e}; !- Outlet Node Name + +OS:Node, + {bdaadc63-eb80-45b8-bab1-9cf6fd88ecb9}, !- Handle + Node 20, !- Name + {caa8dd3b-8bb5-44a6-914c-83456fbd6bef}, !- Inlet Port + {54a44452-cde9-401a-aed4-b52726441018}; !- Outlet Port + +OS:Connection, + {caa8dd3b-8bb5-44a6-914c-83456fbd6bef}, !- Handle + {989926ff-2377-4e16-8376-24694c77dd18}, !- Name + {78d6fbeb-b8aa-42ba-b305-3a9e497b6104}, !- Source Object + 4, !- Outlet Port + {bdaadc63-eb80-45b8-bab1-9cf6fd88ecb9}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {72e93f18-0548-4b5a-8598-e65fc61634e2}, !- Handle + Node 21, !- Name + {11a9cd91-558f-4a55-8af1-ea084c25171e}, !- Inlet Port + {f74483c6-e760-48d1-a059-8345ec30f66c}; !- Outlet Port + +OS:Connection, + {54a44452-cde9-401a-aed4-b52726441018}, !- Handle + {c5ee7c07-bf65-4c0b-9dd6-59e89cc79095}, !- Name + {bdaadc63-eb80-45b8-bab1-9cf6fd88ecb9}, !- Source Object + 3, !- Outlet Port + {21a51248-9f86-4af7-88cb-8823fe1144cd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {11a9cd91-558f-4a55-8af1-ea084c25171e}, !- Handle + {6ec82fd0-be1e-48a1-9915-da05624f4d01}, !- Name + {21a51248-9f86-4af7-88cb-8823fe1144cd}, !- Source Object + 3, !- Outlet Port + {72e93f18-0548-4b5a-8598-e65fc61634e2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f74483c6-e760-48d1-a059-8345ec30f66c}, !- Handle + {229bfc3f-7bfa-4285-ae9a-9eb8ac6145c1}, !- Name + {72e93f18-0548-4b5a-8598-e65fc61634e2}, !- Source Object + 3, !- Outlet Port + {107b9780-d6a8-4ab9-89f4-3245e6158a49}, !- Target Object + 4; !- Inlet Port + +OS:Pipe:Adiabatic, + {e01d0f20-7caf-4d48-9a92-819ba8ca2937}, !- Handle + Pipe Adiabatic 2, !- Name + {c332ac75-0409-4e14-8c50-46ce3056885f}, !- Inlet Node Name + {1fc98fd9-5267-46fd-85b7-0f341da78424}; !- Outlet Node Name + +OS:Node, + {fa435e97-0763-422f-a0a8-53e98645dd5c}, !- Handle + Node 22, !- Name + {1fc98fd9-5267-46fd-85b7-0f341da78424}, !- Inlet Port + {9adce50c-d46c-48df-9b56-5a4fffb601fe}; !- Outlet Port + +OS:Connection, + {c332ac75-0409-4e14-8c50-46ce3056885f}, !- Handle + {c869cc08-dfb8-4f83-8e0e-f4246d60e54b}, !- Name + {50ebcedc-5995-4da8-b0d3-2c666b90c4aa}, !- Source Object + 3, !- Outlet Port + {e01d0f20-7caf-4d48-9a92-819ba8ca2937}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1fc98fd9-5267-46fd-85b7-0f341da78424}, !- Handle + {c1f4a8f1-811c-45c6-9b99-0050ef8698d9}, !- Name + {e01d0f20-7caf-4d48-9a92-819ba8ca2937}, !- Source Object + 3, !- Outlet Port + {fa435e97-0763-422f-a0a8-53e98645dd5c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9adce50c-d46c-48df-9b56-5a4fffb601fe}, !- Handle + {1c7407c8-cb0c-42eb-a988-4920d64b8577}, !- Name + {fa435e97-0763-422f-a0a8-53e98645dd5c}, !- Source Object + 3, !- Outlet Port + {fef9a9fa-6788-42b2-b9e1-343b830cb71c}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {2b7d6398-5d2d-49e9-a5ac-b7e671fdee4c}, !- Handle + Node 23, !- Name + {cbab1fcb-85c7-4ad7-8ef6-08ab9059a495}, !- Inlet Port + {23463670-90eb-46ba-b58e-7b295019bc7a}; !- Outlet Port + +OS:Connection, + {cbab1fcb-85c7-4ad7-8ef6-08ab9059a495}, !- Handle + {0ae49a05-b338-470c-977c-9eadd3a229bd}, !- Name + {4a7aa2e7-4893-4283-a2c3-076ec69772ce}, !- Source Object + 4, !- Outlet Port + {2b7d6398-5d2d-49e9-a5ac-b7e671fdee4c}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {65b5e52e-42ae-4b75-99c1-7032ddaeca38}, !- Handle + Node 24, !- Name + {3b3e66da-fd0b-44da-ad1e-d504e43d0d99}, !- Inlet Port + {e02f8cc1-4d8e-4168-8560-d009f90481eb}; !- Outlet Port + +OS:Connection, + {23463670-90eb-46ba-b58e-7b295019bc7a}, !- Handle + {f0f255e8-5994-40fd-8306-71cffa42e287}, !- Name + {2b7d6398-5d2d-49e9-a5ac-b7e671fdee4c}, !- Source Object + 3, !- Outlet Port + {8cc75900-e315-47e1-b5cf-a865c8815e4e}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {3b3e66da-fd0b-44da-ad1e-d504e43d0d99}, !- Handle + {4c259712-fdd1-4bd1-9b77-0db664034bd9}, !- Name + {8cc75900-e315-47e1-b5cf-a865c8815e4e}, !- Source Object + 6, !- Outlet Port + {65b5e52e-42ae-4b75-99c1-7032ddaeca38}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e02f8cc1-4d8e-4168-8560-d009f90481eb}, !- Handle + {c422db1c-18bd-4ee7-8a85-3a5e5aaa1f69}, !- Name + {65b5e52e-42ae-4b75-99c1-7032ddaeca38}, !- Source Object + 3, !- Outlet Port + {fef9a9fa-6788-42b2-b9e1-343b830cb71c}, !- Target Object + 4; !- Inlet Port + +OS:Controller:WaterCoil, + {b5f3e44e-736b-4357-b960-a511e20c13ae}, !- Handle + Controller Water Coil 1, !- Name + {8cc75900-e315-47e1-b5cf-a865c8815e4e}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + 0; !- Minimum Actuated Flow {m3/s} + +OS:Pipe:Adiabatic, + {aba009b0-7b29-4a1a-b4f0-2f8e3320482e}, !- Handle + Pipe Adiabatic 3, !- Name + {944d8226-1067-4655-b3c7-022b1a75c600}, !- Inlet Node Name + {17ce13b2-969e-480a-a827-f62b03b6bd41}; !- Outlet Node Name + +OS:Pipe:Adiabatic, + {8db34566-1af9-43a6-b656-b904e6a824a1}, !- Handle + Pipe Adiabatic 4, !- Name + {c63cc43b-02fc-4fa3-96b5-e78cbfade5d2}, !- Inlet Node Name + {c9d7e93f-e885-4ebc-8c2f-ccbd24e575c4}; !- Outlet Node Name + +OS:Node, + {f4dfe7f4-d122-440f-9039-fbf1b8df27d2}, !- Handle + Node 25, !- Name + {15d8884e-c332-42c4-b775-223d020c69fb}, !- Inlet Port + {c63cc43b-02fc-4fa3-96b5-e78cbfade5d2}; !- Outlet Port + +OS:Connection, + {15d8884e-c332-42c4-b775-223d020c69fb}, !- Handle + {0addfa7e-37a6-47a5-badb-7bd62f62416f}, !- Name + {fef9a9fa-6788-42b2-b9e1-343b830cb71c}, !- Source Object + 2, !- Outlet Port + {f4dfe7f4-d122-440f-9039-fbf1b8df27d2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c63cc43b-02fc-4fa3-96b5-e78cbfade5d2}, !- Handle + {e76f5106-9ad9-4042-9794-f5f3c65f08f2}, !- Name + {f4dfe7f4-d122-440f-9039-fbf1b8df27d2}, !- Source Object + 3, !- Outlet Port + {8db34566-1af9-43a6-b656-b904e6a824a1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c9d7e93f-e885-4ebc-8c2f-ccbd24e575c4}, !- Handle + {3776c263-e70e-46dc-8dec-08191742fb47}, !- Name + {8db34566-1af9-43a6-b656-b904e6a824a1}, !- Source Object + 3, !- Outlet Port + {1518b017-bb0a-4dcc-aa3b-f79b6376e12a}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {24988425-3301-4a3f-9093-95ad4ee359ba}, !- Handle + Node 26, !- Name + {17ce13b2-969e-480a-a827-f62b03b6bd41}, !- Inlet Port + {c604337f-9383-40a0-8e74-d3a198e34ffe}; !- Outlet Port + +OS:Connection, + {944d8226-1067-4655-b3c7-022b1a75c600}, !- Handle + {d74a6beb-4306-4ad7-b605-3d7211406976}, !- Name + {d0f20be7-16bf-4c4e-8a34-4fc71c37b429}, !- Source Object + 3, !- Outlet Port + {aba009b0-7b29-4a1a-b4f0-2f8e3320482e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {17ce13b2-969e-480a-a827-f62b03b6bd41}, !- Handle + {a177984f-5665-4afa-9b18-717de2c4598b}, !- Name + {aba009b0-7b29-4a1a-b4f0-2f8e3320482e}, !- Source Object + 3, !- Outlet Port + {24988425-3301-4a3f-9093-95ad4ee359ba}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c604337f-9383-40a0-8e74-d3a198e34ffe}, !- Handle + {03a7195c-cad0-4e67-bd22-4639a21583c3}, !- Name + {24988425-3301-4a3f-9093-95ad4ee359ba}, !- Source Object + 3, !- Outlet Port + {4a7aa2e7-4893-4283-a2c3-076ec69772ce}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {ef15d18e-51a8-4add-bf32-5e5edac04393}, !- Handle + Pipe Adiabatic 5, !- Name + {8f8b84ef-89b7-46dc-8f81-ec2bd1b96934}, !- Inlet Node Name + {a2e589bf-f5ae-4119-9163-90037ab8ace9}; !- Outlet Node Name + +OS:Node, + {1f19f272-a9d6-47c8-b944-9805ab6a3706}, !- Handle + Node 27, !- Name + {69657596-9180-438e-938c-0087920490f6}, !- Inlet Port + {8f8b84ef-89b7-46dc-8f81-ec2bd1b96934}; !- Outlet Port + +OS:Connection, + {69657596-9180-438e-938c-0087920490f6}, !- Handle + {f5968efa-278e-4a4d-9b2c-5496cc9223e7}, !- Name + {107b9780-d6a8-4ab9-89f4-3245e6158a49}, !- Source Object + 2, !- Outlet Port + {1f19f272-a9d6-47c8-b944-9805ab6a3706}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8f8b84ef-89b7-46dc-8f81-ec2bd1b96934}, !- Handle + {5e380688-6077-4cdf-be3a-f13a45530bbb}, !- Name + {1f19f272-a9d6-47c8-b944-9805ab6a3706}, !- Source Object + 3, !- Outlet Port + {ef15d18e-51a8-4add-bf32-5e5edac04393}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a2e589bf-f5ae-4119-9163-90037ab8ace9}, !- Handle + {7507e122-3161-453e-b916-04a8ba41abf1}, !- Name + {ef15d18e-51a8-4add-bf32-5e5edac04393}, !- Source Object + 3, !- Outlet Port + {81aed310-22b9-40da-b125-1468ca605ed3}, !- Target Object + 2; !- Inlet Port + +OS:SetpointManager:Scheduled, + {41396231-d24b-48e4-a698-abd495a5e238}, !- Handle + Setpoint Manager Scheduled 2, !- Name + Temperature, !- Control Variable + {a4c117af-ff65-4790-b667-d40cb53ddb25}, !- Schedule Name + {81aed310-22b9-40da-b125-1468ca605ed3}; !- Setpoint Node or NodeList Name + +OS:PlantLoop, + {b3e06549-329e-4a54-b6d2-72d7778e5a71}, !- Handle + Chilled Water Loop, !- Name + , !- Fluid Type + 0, !- Glycol Concentration + , !- User Defined Fluid Type + , !- Plant Equipment Operation Heating Load + , !- Plant Equipment Operation Cooling Load + , !- Primary Plant Equipment Operation Scheme + {bbd3b37c-d41f-4d6f-92d2-0e19e2398bce}, !- Loop Temperature Setpoint Node Name + , !- Maximum Loop Temperature {C} + , !- Minimum Loop Temperature {C} + , !- Maximum Loop Flow Rate {m3/s} + , !- Minimum Loop Flow Rate {m3/s} + Autocalculate, !- Plant Loop Volume {m3} + {3c39b7bf-d7d6-4f1c-bf80-9f2609f1a7a4}, !- Plant Side Inlet Node Name + {0c641f28-c0bc-4407-9831-ea603d3ab955}, !- Plant Side Outlet Node Name + , !- Plant Side Branch List Name + {3c79e292-6d2e-46b5-8f6f-4f8df3680292}, !- Demand Side Inlet Node Name + {ad26ce57-7c81-496b-b806-c688cb8d7d32}, !- Demand Side Outlet Node Name + , !- Demand Side Branch List Name + , !- Demand Side Connector List Name + Optimal, !- Load Distribution Scheme + {a4a87498-5af3-40cb-946d-c62393347e56}, !- 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 + {f6e26024-ddbc-4a96-9ab9-86401a5f4fed}, !- Demand Mixer Name + {ed60ddf2-3288-48f8-ad90-9e1be9e05b0f}, !- Demand Splitter Name + {384d6fcc-ad75-4efa-8ebc-70c735012cd2}, !- Supply Mixer Name + {c41b8a50-9360-4ce2-93c0-9521a9050a8e}; !- Supply Splitter Name + +OS:Node, + {336a4d79-94a3-421f-b945-ceae6ea31930}, !- Handle + Node 28, !- Name + {3c39b7bf-d7d6-4f1c-bf80-9f2609f1a7a4}, !- Inlet Port + {4f1be832-fcf4-4ed3-aed7-10c3b0808728}; !- Outlet Port + +OS:Node, + {bbd3b37c-d41f-4d6f-92d2-0e19e2398bce}, !- Handle + Node 29, !- Name + {842bb56f-1c0b-4778-92af-4f94a7734a22}, !- Inlet Port + {0c641f28-c0bc-4407-9831-ea603d3ab955}; !- Outlet Port + +OS:Node, + {bf121d87-c592-458f-9e0b-2672be092275}, !- Handle + Node 30, !- Name + {52d1741d-6a02-44f7-a1d5-8fb7b57f62af}, !- Inlet Port + {2df3220c-a42c-4a03-9ea5-7d22aa75352c}; !- Outlet Port + +OS:Connector:Mixer, + {384d6fcc-ad75-4efa-8ebc-70c735012cd2}, !- Handle + Connector Mixer 3, !- Name + {c8676233-3a80-4f28-8abe-c42927f5b294}, !- Outlet Branch Name + {d6244dd2-a4a7-4af1-afeb-71be70dadc25}, !- Inlet Branch Name 1 + {102b8549-72b8-4237-87b8-dd2acf673808}; !- Inlet Branch Name 2 + +OS:Connector:Splitter, + {c41b8a50-9360-4ce2-93c0-9521a9050a8e}, !- Handle + Connector Splitter 3, !- Name + {996e99e8-c96b-4355-93df-442fc09c022b}, !- Inlet Branch Name + {52d1741d-6a02-44f7-a1d5-8fb7b57f62af}, !- Outlet Branch Name 1 + {af3d608d-4975-4c3a-9c25-31dd2dc6b054}; !- Outlet Branch Name 2 + +OS:Connection, + {3c39b7bf-d7d6-4f1c-bf80-9f2609f1a7a4}, !- Handle + {12c8da7b-3b74-4a5d-aab2-f8bd62cd13bd}, !- Name + {b3e06549-329e-4a54-b6d2-72d7778e5a71}, !- Source Object + 14, !- Outlet Port + {336a4d79-94a3-421f-b945-ceae6ea31930}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {52d1741d-6a02-44f7-a1d5-8fb7b57f62af}, !- Handle + {1d0d7af2-8254-4250-95ad-a0499466ba28}, !- Name + {c41b8a50-9360-4ce2-93c0-9521a9050a8e}, !- Source Object + 3, !- Outlet Port + {bf121d87-c592-458f-9e0b-2672be092275}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0c641f28-c0bc-4407-9831-ea603d3ab955}, !- Handle + {cabd4124-a59f-43b4-8805-db458f5f822f}, !- Name + {bbd3b37c-d41f-4d6f-92d2-0e19e2398bce}, !- Source Object + 3, !- Outlet Port + {b3e06549-329e-4a54-b6d2-72d7778e5a71}, !- Target Object + 15; !- Inlet Port + +OS:Node, + {11aff530-df38-4d38-a47c-2ee77b5eb085}, !- Handle + Node 31, !- Name + {3c79e292-6d2e-46b5-8f6f-4f8df3680292}, !- Inlet Port + {35b1b637-0d91-4748-ad0e-85ef73f45756}; !- Outlet Port + +OS:Node, + {c8d44e05-ff08-4b9a-bab6-809973e5f04e}, !- Handle + Node 32, !- Name + {d1d6728b-1b47-4e31-b5a2-991c931877fe}, !- Inlet Port + {ad26ce57-7c81-496b-b806-c688cb8d7d32}; !- Outlet Port + +OS:Node, + {91ad88e8-cfee-47d7-9a04-7543e9919980}, !- Handle + Node 33, !- Name + {d3dd58b1-e1f0-4ddb-953e-c13e0e2bfcd7}, !- Inlet Port + {997f6d3d-5191-4852-907c-23ab8b49f8af}; !- Outlet Port + +OS:Connector:Mixer, + {f6e26024-ddbc-4a96-9ab9-86401a5f4fed}, !- Handle + Connector Mixer 4, !- Name + {8bcd5c81-c2e5-4215-afcf-5b3d450d80e8}, !- Outlet Branch Name + {fe8a4367-a3a0-4d3c-9b86-8c8cf718c876}, !- Inlet Branch Name 1 + {b86c668e-9ce7-4f59-9714-cfd8ea29b1f1}; !- Inlet Branch Name 2 + +OS:Connector:Splitter, + {ed60ddf2-3288-48f8-ad90-9e1be9e05b0f}, !- Handle + Connector Splitter 4, !- Name + {2da26dd3-9df0-4bef-b6f1-650ad956b946}, !- Inlet Branch Name + {d3dd58b1-e1f0-4ddb-953e-c13e0e2bfcd7}, !- Outlet Branch Name 1 + {1dc150fe-e08c-46ba-8343-d310fcdc69b3}; !- Outlet Branch Name 2 + +OS:Connection, + {3c79e292-6d2e-46b5-8f6f-4f8df3680292}, !- Handle + {d03e5c4d-2263-4476-8c34-2bc3416fab8b}, !- Name + {b3e06549-329e-4a54-b6d2-72d7778e5a71}, !- Source Object + 17, !- Outlet Port + {11aff530-df38-4d38-a47c-2ee77b5eb085}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d3dd58b1-e1f0-4ddb-953e-c13e0e2bfcd7}, !- Handle + {c8e0eeb1-a3a4-4477-9a8d-ddacc8eb2372}, !- Name + {ed60ddf2-3288-48f8-ad90-9e1be9e05b0f}, !- Source Object + 3, !- Outlet Port + {91ad88e8-cfee-47d7-9a04-7543e9919980}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ad26ce57-7c81-496b-b806-c688cb8d7d32}, !- Handle + {184c4ebf-5bfc-4c25-94d7-43f8de975cf5}, !- Name + {c8d44e05-ff08-4b9a-bab6-809973e5f04e}, !- Source Object + 3, !- Outlet Port + {b3e06549-329e-4a54-b6d2-72d7778e5a71}, !- Target Object + 18; !- Inlet Port + +OS:Sizing:Plant, + {2475a5a4-7ba8-4cab-a026-d7d4ca4f665c}, !- Handle + {b3e06549-329e-4a54-b6d2-72d7778e5a71}, !- Plant or Condenser Loop Name + Cooling, !- Loop Type + 7.22, !- Design Loop Exit Temperature {C} + 6.67, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:AvailabilityManagerAssignmentList, + {a4a87498-5af3-40cb-946d-c62393347e56}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name + +OS:Pump:VariableSpeed, + {9ead4633-b8a6-41e3-a9f0-c999d8e131e0}, !- Handle + Pump Variable Speed 2, !- Name + {4f1be832-fcf4-4ed3-aed7-10c3b0808728}, !- Inlet Node Name + {245b7fdc-c86c-46ee-b37d-75911249705d}, !- Outlet Node Name + , !- Rated Flow Rate {m3/s} + , !- Rated Pump Head {Pa} + , !- Rated Power Consumption {W} + , !- Motor Efficiency + , !- Fraction of Motor Inefficiencies to Fluid Stream + , !- Coefficient 1 of the Part Load Performance Curve + , !- Coefficient 2 of the Part Load Performance Curve + , !- 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, + {9de42e16-d80a-4393-8ea6-2052da44a9d3}, !- Handle + Node 34, !- Name + {245b7fdc-c86c-46ee-b37d-75911249705d}, !- Inlet Port + {996e99e8-c96b-4355-93df-442fc09c022b}; !- Outlet Port + +OS:Connection, + {4f1be832-fcf4-4ed3-aed7-10c3b0808728}, !- Handle + {1de32dd9-e655-4196-a228-c8419ba7c0b5}, !- Name + {336a4d79-94a3-421f-b945-ceae6ea31930}, !- Source Object + 3, !- Outlet Port + {9ead4633-b8a6-41e3-a9f0-c999d8e131e0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {245b7fdc-c86c-46ee-b37d-75911249705d}, !- Handle + {2cca7ab7-bc64-4693-acaf-990b7aeffed8}, !- Name + {9ead4633-b8a6-41e3-a9f0-c999d8e131e0}, !- Source Object + 3, !- Outlet Port + {9de42e16-d80a-4393-8ea6-2052da44a9d3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {996e99e8-c96b-4355-93df-442fc09c022b}, !- Handle + {b6008da5-21c4-46b3-a537-52218bef9cff}, !- Name + {9de42e16-d80a-4393-8ea6-2052da44a9d3}, !- Source Object + 3, !- Outlet Port + {c41b8a50-9360-4ce2-93c0-9521a9050a8e}, !- Target Object + 2; !- Inlet Port + +OS:Curve:Biquadratic, + {56868ea4-b077-493e-a8b4-86d3cae76e04}, !- Handle + Curve Biquadratic 1, !- Name + 0.258, !- Coefficient1 Constant + 0.0389, !- Coefficient2 x + -0.000217, !- Coefficient3 x**2 + 0.0469, !- Coefficient4 y + -0.000943, !- Coefficient5 y**2 + -0.000343, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Biquadratic, + {ae4dca70-9cab-4356-99e2-1f76b954bad1}, !- Handle + Curve Biquadratic 2, !- Name + 0.934, !- Coefficient1 Constant + -0.0582, !- Coefficient2 x + 0.0045, !- Coefficient3 x**2 + 0.00243, !- Coefficient4 y + 0.000486, !- Coefficient5 y**2 + -0.00122, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +OS:Curve:Quadratic, + {1fecc3ed-81bb-427b-9edb-c8c477f41dc9}, !- Handle + Curve Quadratic 1, !- Name + 0.222903, !- Coefficient1 Constant + 0.313387, !- Coefficient2 x + 0.46371, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Chiller:Electric:EIR, + {204d4442-066d-42c6-982a-f2ee444b84ea}, !- Handle + Chiller Electric EIR 1, !- Name + Autosize, !- Reference Capacity {W} + 5.5, !- Reference COP {W/W} + , !- Reference Leaving Chilled Water Temperature {C} + , !- Reference Entering Condenser Fluid Temperature {C} + Autosize, !- Reference Chilled Water Flow Rate {m3/s} + , !- Reference Condenser Fluid Flow Rate {m3/s} + {56868ea4-b077-493e-a8b4-86d3cae76e04}, !- Cooling Capacity Function of Temperature Curve Name + {ae4dca70-9cab-4356-99e2-1f76b954bad1}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {1fecc3ed-81bb-427b-9edb-c8c477f41dc9}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + , !- Minimum Part Load Ratio + , !- Maximum Part Load Ratio + , !- Optimum Part Load Ratio + , !- Minimum Unloading Ratio + {2df3220c-a42c-4a03-9ea5-7d22aa75352c}, !- Chilled Water Inlet Node Name + {af11fc46-0253-4073-a38b-9b239b40f3b2}, !- Chilled Water Outlet Node Name + {940fbd90-9e8e-44fd-bebe-56f60523d7c6}, !- Condenser Inlet Node Name + {e333bfcd-c61d-4a0e-82d0-d8b09dca0c99}, !- Condenser Outlet Node Name + WaterCooled, !- Condenser Type + , !- Condenser Fan Power Ratio {W/W} + , !- Fraction of Compressor Electric Consumption Rejected by Condenser + , !- Leaving Chilled Water Lower Temperature Limit {C} + , !- Chiller Flow Mode + Autosize, !- Design Heat Recovery Water Flow Rate {m3/s} + , !- Heat Recovery Inlet Node Name + , !- Heat Recovery Outlet Node Name + 1, !- Sizing Factor + 0, !- Basin Heater Capacity {W/K} + 10, !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule Name + 1, !- Condenser Heat Recovery Relative Capacity Fraction + , !- Heat Recovery Inlet High Temperature Limit Schedule Name + , !- Heat Recovery Leaving Temperature Setpoint Node Name + General; !- End-Use Subcategory + +OS:Node, + {71175991-e5c7-4596-a8d3-e824d92015a2}, !- Handle + Node 35, !- Name + {af11fc46-0253-4073-a38b-9b239b40f3b2}, !- Inlet Port + {d6244dd2-a4a7-4af1-afeb-71be70dadc25}; !- Outlet Port + +OS:Connection, + {2df3220c-a42c-4a03-9ea5-7d22aa75352c}, !- Handle + {6ea2b76a-5783-44c9-b0c3-ab828e67feff}, !- Name + {bf121d87-c592-458f-9e0b-2672be092275}, !- Source Object + 3, !- Outlet Port + {204d4442-066d-42c6-982a-f2ee444b84ea}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {af11fc46-0253-4073-a38b-9b239b40f3b2}, !- Handle + {e9293ab1-bf63-44de-83ab-9ac77f6ccd2a}, !- Name + {204d4442-066d-42c6-982a-f2ee444b84ea}, !- Source Object + 16, !- Outlet Port + {71175991-e5c7-4596-a8d3-e824d92015a2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d6244dd2-a4a7-4af1-afeb-71be70dadc25}, !- Handle + {7ded38f1-8ea0-434f-b9df-92cf9788ef5c}, !- Name + {71175991-e5c7-4596-a8d3-e824d92015a2}, !- Source Object + 3, !- Outlet Port + {384d6fcc-ad75-4efa-8ebc-70c735012cd2}, !- Target Object + 3; !- Inlet Port + +OS:Pipe:Adiabatic, + {942d74b9-d7a7-4393-9535-a413c4a89778}, !- Handle + Pipe Adiabatic 6, !- Name + {88ece719-49fb-45d8-b898-6bd621a202f0}, !- Inlet Node Name + {2269f5c6-da0e-462c-b684-21cdab3575c5}; !- Outlet Node Name + +OS:Node, + {9322da55-ae66-44f3-9c94-12be4d6efbff}, !- Handle + Node 36, !- Name + {af3d608d-4975-4c3a-9c25-31dd2dc6b054}, !- Inlet Port + {88ece719-49fb-45d8-b898-6bd621a202f0}; !- Outlet Port + +OS:Connection, + {af3d608d-4975-4c3a-9c25-31dd2dc6b054}, !- Handle + {61e4d241-cadb-4289-b5be-c5cf9c5085c9}, !- Name + {c41b8a50-9360-4ce2-93c0-9521a9050a8e}, !- Source Object + 4, !- Outlet Port + {9322da55-ae66-44f3-9c94-12be4d6efbff}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {5d5295ac-a479-46d3-9d7f-9f4274e41327}, !- Handle + Node 37, !- Name + {2269f5c6-da0e-462c-b684-21cdab3575c5}, !- Inlet Port + {102b8549-72b8-4237-87b8-dd2acf673808}; !- Outlet Port + +OS:Connection, + {88ece719-49fb-45d8-b898-6bd621a202f0}, !- Handle + {d6ee935e-1ff5-442e-96fb-e41447157532}, !- Name + {9322da55-ae66-44f3-9c94-12be4d6efbff}, !- Source Object + 3, !- Outlet Port + {942d74b9-d7a7-4393-9535-a413c4a89778}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2269f5c6-da0e-462c-b684-21cdab3575c5}, !- Handle + {8dc1bf62-5f98-4721-a225-ced05c5223e2}, !- Name + {942d74b9-d7a7-4393-9535-a413c4a89778}, !- Source Object + 3, !- Outlet Port + {5d5295ac-a479-46d3-9d7f-9f4274e41327}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {102b8549-72b8-4237-87b8-dd2acf673808}, !- Handle + {57ded34a-4be9-46bc-bd26-7977a15b4e59}, !- Name + {5d5295ac-a479-46d3-9d7f-9f4274e41327}, !- Source Object + 3, !- Outlet Port + {384d6fcc-ad75-4efa-8ebc-70c735012cd2}, !- Target Object + 4; !- Inlet Port + +OS:Pipe:Adiabatic, + {4b5aee5a-1413-472f-bb77-6fe17f5e852a}, !- Handle + Pipe Adiabatic 7, !- Name + {02fbd78b-ff59-4bae-a4a3-effeb49b124c}, !- Inlet Node Name + {842bb56f-1c0b-4778-92af-4f94a7734a22}; !- Outlet Node Name + +OS:Node, + {9b5e82ad-4743-4a10-8fd0-657bfdddffa5}, !- Handle + Node 38, !- Name + {c8676233-3a80-4f28-8abe-c42927f5b294}, !- Inlet Port + {02fbd78b-ff59-4bae-a4a3-effeb49b124c}; !- Outlet Port + +OS:Connection, + {c8676233-3a80-4f28-8abe-c42927f5b294}, !- Handle + {b63e31b1-9987-4dd8-8433-1bcf6a0c911e}, !- Name + {384d6fcc-ad75-4efa-8ebc-70c735012cd2}, !- Source Object + 2, !- Outlet Port + {9b5e82ad-4743-4a10-8fd0-657bfdddffa5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {02fbd78b-ff59-4bae-a4a3-effeb49b124c}, !- Handle + {645cf214-f184-41d6-8d79-42af190817e5}, !- Name + {9b5e82ad-4743-4a10-8fd0-657bfdddffa5}, !- Source Object + 3, !- Outlet Port + {4b5aee5a-1413-472f-bb77-6fe17f5e852a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {842bb56f-1c0b-4778-92af-4f94a7734a22}, !- Handle + {20a6faf9-2dd2-4bc3-8267-b8f21b400fb7}, !- Name + {4b5aee5a-1413-472f-bb77-6fe17f5e852a}, !- Source Object + 3, !- Outlet Port + {bbd3b37c-d41f-4d6f-92d2-0e19e2398bce}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {f1774bfa-ab62-4646-bbd3-425d0f24982b}, !- Handle + Node 39, !- Name + {ec3abceb-33d1-47dd-b187-6be08e7a31b2}, !- Inlet Port + {fe8a4367-a3a0-4d3c-9b86-8c8cf718c876}; !- Outlet Port + +OS:Connection, + {997f6d3d-5191-4852-907c-23ab8b49f8af}, !- Handle + {bcbc5bd0-397d-4d7a-af58-00cf42402cdc}, !- Name + {91ad88e8-cfee-47d7-9a04-7543e9919980}, !- Source Object + 3, !- Outlet Port + {972568df-d228-4eed-97ef-566188af2060}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {ec3abceb-33d1-47dd-b187-6be08e7a31b2}, !- Handle + {6e56fcae-adbb-4053-8197-2094fc4e667c}, !- Name + {972568df-d228-4eed-97ef-566188af2060}, !- Source Object + 11, !- Outlet Port + {f1774bfa-ab62-4646-bbd3-425d0f24982b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fe8a4367-a3a0-4d3c-9b86-8c8cf718c876}, !- Handle + {0d5bf6a7-42ef-4b51-8937-a454b6b5c01d}, !- Name + {f1774bfa-ab62-4646-bbd3-425d0f24982b}, !- Source Object + 3, !- Outlet Port + {f6e26024-ddbc-4a96-9ab9-86401a5f4fed}, !- Target Object + 3; !- Inlet Port + +OS:Controller:WaterCoil, + {325226a5-eb4b-46d4-9bf1-d686d567e073}, !- Handle + Controller Water Coil 2, !- Name + {972568df-d228-4eed-97ef-566188af2060}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + , !- Maximum Actuated Flow {m3/s} + 0; !- Minimum Actuated Flow {m3/s} + +OS:SetpointManager:Scheduled, + {93b0f19c-3f36-48e1-b863-1f4ac383d8cd}, !- Handle + Setpoint Manager Scheduled 3, !- Name + Temperature, !- Control Variable + {c5de521a-7ac5-4a88-8eb1-ae35116adb4a}, !- Schedule Name + {bbd3b37c-d41f-4d6f-92d2-0e19e2398bce}; !- Setpoint Node or NodeList Name + +OS:Coil:Heating:Water, + {d92a1a36-6fee-4532-8668-2ecc068a8722}, !- Handle + Coil Heating Water 2, !- Name + {000d4055-8f9c-43ea-889b-9e2eabc81fda}, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + {e8e1106c-0582-4acd-88c9-22036c32ec52}, !- Water Inlet Node Name + {2cd0bad6-427b-4864-95c9-aec44b624d69}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + , !- Performance Input Method + , !- Rated Capacity {W} + , !- Rated Inlet Water Temperature {C} + , !- Rated Inlet Air Temperature {C} + , !- Rated Outlet Water Temperature {C} + , !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:AirTerminal:SingleDuct:VAV:Reheat, + {78315eb5-20b5-4887-8a55-503fc12dd139}, !- Handle + Air Terminal Single Duct VAV Reheat 1, !- Name + {000d4055-8f9c-43ea-889b-9e2eabc81fda}, !- Availability Schedule Name + {67567045-66c9-42b4-b719-6cd91c7c2feb}, !- Air Inlet Node Name + AutoSize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + {d92a1a36-6fee-4532-8668-2ecc068a8722}, !- Reheat Coil Name + AutoSize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + {be8f93c7-4bd0-4442-9fe2-89a8071ac8a3}, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + AutoSize, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + AutoSize, !- Maximum Flow Fraction During Reheat + 35, !- Maximum Reheat Air Temperature {C} + Yes; !- Control For Outdoor Air + +OS:Node, + {90d9eeec-9a12-477a-ad11-7e9a992179d4}, !- Handle + Node 40, !- Name + {f5237a97-1360-45bf-9736-dcba3f2acebc}, !- Inlet Port + {67567045-66c9-42b4-b719-6cd91c7c2feb}; !- Outlet Port + +OS:Connection, + {f5237a97-1360-45bf-9736-dcba3f2acebc}, !- Handle + {8d58dfe1-7676-4958-b757-a0af6f9f2eff}, !- Name + {601c2de6-7e27-4b85-b073-109a0c6caff7}, !- Source Object + 3, !- Outlet Port + {90d9eeec-9a12-477a-ad11-7e9a992179d4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {67567045-66c9-42b4-b719-6cd91c7c2feb}, !- Handle + {a8528386-579e-4432-be63-c086ce0a3dc4}, !- Name + {90d9eeec-9a12-477a-ad11-7e9a992179d4}, !- Source Object + 3, !- Outlet Port + {78315eb5-20b5-4887-8a55-503fc12dd139}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {be8f93c7-4bd0-4442-9fe2-89a8071ac8a3}, !- Handle + {113e9a96-dbcb-430c-931a-cc12b12905fa}, !- Name + {78315eb5-20b5-4887-8a55-503fc12dd139}, !- Source Object + 12, !- Outlet Port + {9d53fa40-0a82-4b09-b42c-5ff01700f3d7}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {7b1862fb-7ca8-48ba-8439-1ca41f2ba7dd}, !- Handle + Pipe Adiabatic 8, !- Name + {11e53511-31f1-4a68-8029-1cba3fd48661}, !- Inlet Node Name + {ae60c1ae-fd57-4546-961e-6ba231dd5e8b}; !- Outlet Node Name + +OS:Node, + {b1f8f64e-99ae-420d-9f15-3349adbae99c}, !- Handle + Node 41, !- Name + {1dc150fe-e08c-46ba-8343-d310fcdc69b3}, !- Inlet Port + {11e53511-31f1-4a68-8029-1cba3fd48661}; !- Outlet Port + +OS:Connection, + {1dc150fe-e08c-46ba-8343-d310fcdc69b3}, !- Handle + {e0c0c7c1-f0da-4bca-be2e-4ff6e5aabdb0}, !- Name + {ed60ddf2-3288-48f8-ad90-9e1be9e05b0f}, !- Source Object + 4, !- Outlet Port + {b1f8f64e-99ae-420d-9f15-3349adbae99c}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {125d8caf-eb4a-44c9-93f3-34d2f513ff0f}, !- Handle + Node 42, !- Name + {ae60c1ae-fd57-4546-961e-6ba231dd5e8b}, !- Inlet Port + {b86c668e-9ce7-4f59-9714-cfd8ea29b1f1}; !- Outlet Port + +OS:Connection, + {11e53511-31f1-4a68-8029-1cba3fd48661}, !- Handle + {7186d5e5-51c7-4289-8361-998c93ff6906}, !- Name + {b1f8f64e-99ae-420d-9f15-3349adbae99c}, !- Source Object + 3, !- Outlet Port + {7b1862fb-7ca8-48ba-8439-1ca41f2ba7dd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ae60c1ae-fd57-4546-961e-6ba231dd5e8b}, !- Handle + {2cbb8825-3d12-4fce-b9c8-b5614b7bf184}, !- Name + {7b1862fb-7ca8-48ba-8439-1ca41f2ba7dd}, !- Source Object + 3, !- Outlet Port + {125d8caf-eb4a-44c9-93f3-34d2f513ff0f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b86c668e-9ce7-4f59-9714-cfd8ea29b1f1}, !- Handle + {16f5d152-4782-4a21-a095-9b163af9cbee}, !- Name + {125d8caf-eb4a-44c9-93f3-34d2f513ff0f}, !- Source Object + 3, !- Outlet Port + {f6e26024-ddbc-4a96-9ab9-86401a5f4fed}, !- Target Object + 4; !- Inlet Port + +OS:Node, + {ff8f5dac-67a0-4d5e-baab-63784f6f1c93}, !- Handle + Node 43, !- Name + {dbcbd3d7-8e3d-4d8b-abc5-486187c70c5f}, !- Inlet Port + {e8e1106c-0582-4acd-88c9-22036c32ec52}; !- Outlet Port + +OS:Connection, + {dbcbd3d7-8e3d-4d8b-abc5-486187c70c5f}, !- Handle + {765a5c11-2550-4d38-b853-76e259e17d50}, !- Name + {4a7aa2e7-4893-4283-a2c3-076ec69772ce}, !- Source Object + 5, !- Outlet Port + {ff8f5dac-67a0-4d5e-baab-63784f6f1c93}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {1084b3ff-a578-4ddb-8c9b-fe754c402bfe}, !- Handle + Node 44, !- Name + {2cd0bad6-427b-4864-95c9-aec44b624d69}, !- Inlet Port + {1cfcf513-6bba-4ed5-9604-a4a5e2ee9694}; !- Outlet Port + +OS:Connection, + {e8e1106c-0582-4acd-88c9-22036c32ec52}, !- Handle + {94c81fd8-0a5d-4654-98d1-2fa3e84d3328}, !- Name + {ff8f5dac-67a0-4d5e-baab-63784f6f1c93}, !- Source Object + 3, !- Outlet Port + {d92a1a36-6fee-4532-8668-2ecc068a8722}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {2cd0bad6-427b-4864-95c9-aec44b624d69}, !- Handle + {f6287a4e-1563-4cf2-8f27-602f53a45fbf}, !- Name + {d92a1a36-6fee-4532-8668-2ecc068a8722}, !- Source Object + 6, !- Outlet Port + {1084b3ff-a578-4ddb-8c9b-fe754c402bfe}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1cfcf513-6bba-4ed5-9604-a4a5e2ee9694}, !- Handle + {a89ec943-cb69-4993-8337-cc69c85fc523}, !- Name + {1084b3ff-a578-4ddb-8c9b-fe754c402bfe}, !- Source Object + 3, !- Outlet Port + {fef9a9fa-6788-42b2-b9e1-343b830cb71c}, !- Target Object + 5; !- Inlet Port + +OS:Pipe:Adiabatic, + {0a8dacd6-11fe-456e-8b2c-240b2ddfe4fd}, !- Handle + Pipe Adiabatic 9, !- Name + {35b1b637-0d91-4748-ad0e-85ef73f45756}, !- Inlet Node Name + {c18488b0-ce70-4e2c-9264-964a60c286f1}; !- Outlet Node Name + +OS:Node, + {4124db83-9968-4bb3-91be-97dee1c5764a}, !- Handle + Node 45, !- Name + {c18488b0-ce70-4e2c-9264-964a60c286f1}, !- Inlet Port + {2da26dd3-9df0-4bef-b6f1-650ad956b946}; !- Outlet Port + +OS:Connection, + {35b1b637-0d91-4748-ad0e-85ef73f45756}, !- Handle + {9cc68669-c1f9-4ee4-b3c7-35ae989e5ddb}, !- Name + {11aff530-df38-4d38-a47c-2ee77b5eb085}, !- Source Object + 3, !- Outlet Port + {0a8dacd6-11fe-456e-8b2c-240b2ddfe4fd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c18488b0-ce70-4e2c-9264-964a60c286f1}, !- Handle + {a940ceaf-4544-490c-8916-4736b8e52ff4}, !- Name + {0a8dacd6-11fe-456e-8b2c-240b2ddfe4fd}, !- Source Object + 3, !- Outlet Port + {4124db83-9968-4bb3-91be-97dee1c5764a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2da26dd3-9df0-4bef-b6f1-650ad956b946}, !- Handle + {a087e82d-edfc-4e80-a407-f696846eddcb}, !- Name + {4124db83-9968-4bb3-91be-97dee1c5764a}, !- Source Object + 3, !- Outlet Port + {ed60ddf2-3288-48f8-ad90-9e1be9e05b0f}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {8634fb28-4561-47a2-8265-876a223841f5}, !- Handle + Pipe Adiabatic 10, !- Name + {42262b36-c40a-4ad8-81c4-32588032f64a}, !- Inlet Node Name + {d1d6728b-1b47-4e31-b5a2-991c931877fe}; !- Outlet Node Name + +OS:Node, + {c43093ab-891b-4401-a647-6d702fa2696a}, !- Handle + Node 46, !- Name + {8bcd5c81-c2e5-4215-afcf-5b3d450d80e8}, !- Inlet Port + {42262b36-c40a-4ad8-81c4-32588032f64a}; !- Outlet Port + +OS:Connection, + {8bcd5c81-c2e5-4215-afcf-5b3d450d80e8}, !- Handle + {52b5be50-e964-4781-a4ba-46c2db6c5610}, !- Name + {f6e26024-ddbc-4a96-9ab9-86401a5f4fed}, !- Source Object + 2, !- Outlet Port + {c43093ab-891b-4401-a647-6d702fa2696a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {42262b36-c40a-4ad8-81c4-32588032f64a}, !- Handle + {9193a39b-fcb9-4f3a-8f00-8380924b5610}, !- Name + {c43093ab-891b-4401-a647-6d702fa2696a}, !- Source Object + 3, !- Outlet Port + {8634fb28-4561-47a2-8265-876a223841f5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d1d6728b-1b47-4e31-b5a2-991c931877fe}, !- Handle + {a3b63feb-769f-488d-9aa7-8234ca4f38a2}, !- Name + {8634fb28-4561-47a2-8265-876a223841f5}, !- Source Object + 3, !- Outlet Port + {c8d44e05-ff08-4b9a-bab6-809973e5f04e}, !- Target Object + 2; !- Inlet Port + +OS:PlantLoop, + {c7748cae-3ce0-4ae5-827b-3ba8a29c264b}, !- Handle + Condenser Water Loop, !- Name + , !- Fluid Type + 0, !- Glycol Concentration + , !- User Defined Fluid Type + , !- Plant Equipment Operation Heating Load + , !- Plant Equipment Operation Cooling Load + , !- Primary Plant Equipment Operation Scheme + {1e6e8d3e-5767-41a7-b544-6a439061c090}, !- Loop Temperature Setpoint Node Name + , !- Maximum Loop Temperature {C} + , !- Minimum Loop Temperature {C} + , !- Maximum Loop Flow Rate {m3/s} + , !- Minimum Loop Flow Rate {m3/s} + Autocalculate, !- Plant Loop Volume {m3} + {d7b3beb8-569c-44fe-8142-7496fd982714}, !- Plant Side Inlet Node Name + {fbb3909b-da56-4bed-872e-0a3151dbc411}, !- Plant Side Outlet Node Name + , !- Plant Side Branch List Name + {8236359a-e831-4d78-9830-981e5f95289c}, !- Demand Side Inlet Node Name + {d844f7de-31bb-4632-a3c2-732723776755}, !- Demand Side Outlet Node Name + , !- Demand Side Branch List Name + , !- Demand Side Connector List Name + Optimal, !- Load Distribution Scheme + {f72e3c69-e096-4414-8b82-0e600ebde7ca}, !- 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 + {25c13b15-b42b-43f4-9501-62a96bc4f984}, !- Demand Mixer Name + {7c695528-173c-4ddc-8595-5bcc2b3d4626}, !- Demand Splitter Name + {42dfa2af-b102-401c-87de-7fa16323e7cb}, !- Supply Mixer Name + {e724e5e1-4c11-42de-894b-51fe44fc85c1}; !- Supply Splitter Name + +OS:Node, + {051ede03-b9da-4cc0-b9d6-36f4f903722a}, !- Handle + Node 47, !- Name + {d7b3beb8-569c-44fe-8142-7496fd982714}, !- Inlet Port + {67e63b6a-21df-4197-973e-70f7bbc63d12}; !- Outlet Port + +OS:Node, + {1e6e8d3e-5767-41a7-b544-6a439061c090}, !- Handle + Node 48, !- Name + {0cc5569e-d293-4bb6-b36d-b2e82acb83b9}, !- Inlet Port + {fbb3909b-da56-4bed-872e-0a3151dbc411}; !- Outlet Port + +OS:Node, + {4216495d-f9e1-4b9b-9a1e-8b688368f744}, !- Handle + Node 49, !- Name + {0d019eb5-66c4-45f1-a2e9-0ccc40643684}, !- Inlet Port + {8fd3e31c-2904-4be5-afc3-4be358f7c533}; !- Outlet Port + +OS:Connector:Mixer, + {42dfa2af-b102-401c-87de-7fa16323e7cb}, !- Handle + Connector Mixer 5, !- Name + {afe45c00-3f3d-4074-9d86-6e6850a87ddf}, !- Outlet Branch Name + {bba16c72-105a-4957-b949-9ee512166074}, !- Inlet Branch Name 1 + {9fd4d26e-f6e6-44b5-855d-e364f8f9f11d}; !- Inlet Branch Name 2 + +OS:Connector:Splitter, + {e724e5e1-4c11-42de-894b-51fe44fc85c1}, !- Handle + Connector Splitter 5, !- Name + {d0a32de0-7596-4dc4-b7c5-448a07e6c380}, !- Inlet Branch Name + {0d019eb5-66c4-45f1-a2e9-0ccc40643684}, !- Outlet Branch Name 1 + {283e6ff7-7254-4e26-82ce-bfb4f4a7c9bb}; !- Outlet Branch Name 2 + +OS:Connection, + {d7b3beb8-569c-44fe-8142-7496fd982714}, !- Handle + {6f706c18-f40c-4eb2-aaee-37a4eccf64fd}, !- Name + {c7748cae-3ce0-4ae5-827b-3ba8a29c264b}, !- Source Object + 14, !- Outlet Port + {051ede03-b9da-4cc0-b9d6-36f4f903722a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0d019eb5-66c4-45f1-a2e9-0ccc40643684}, !- Handle + {eeb9af95-49e4-49f5-8d67-e36daabf7f72}, !- Name + {e724e5e1-4c11-42de-894b-51fe44fc85c1}, !- Source Object + 3, !- Outlet Port + {4216495d-f9e1-4b9b-9a1e-8b688368f744}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fbb3909b-da56-4bed-872e-0a3151dbc411}, !- Handle + {b828af1e-5e3d-407c-9558-6c19c0ce0549}, !- Name + {1e6e8d3e-5767-41a7-b544-6a439061c090}, !- Source Object + 3, !- Outlet Port + {c7748cae-3ce0-4ae5-827b-3ba8a29c264b}, !- Target Object + 15; !- Inlet Port + +OS:Node, + {c260751b-3a8d-4869-a1f1-dd1fd2e0e84e}, !- Handle + Node 50, !- Name + {8236359a-e831-4d78-9830-981e5f95289c}, !- Inlet Port + {ada7e448-ae7f-4f7a-9b48-de1f12af784d}; !- Outlet Port + +OS:Node, + {fbe1f0a4-a88b-4f89-b06e-7c222b7bbdd7}, !- Handle + Node 51, !- Name + {893bb6ae-d0a8-4f77-9788-c23c6190efed}, !- Inlet Port + {d844f7de-31bb-4632-a3c2-732723776755}; !- Outlet Port + +OS:Node, + {f5c35053-1c7b-483f-8c48-0b3d3ef98a8f}, !- Handle + Node 52, !- Name + {24bc76be-1b2c-4dfc-aaa3-f747a2356a32}, !- Inlet Port + {940fbd90-9e8e-44fd-bebe-56f60523d7c6}; !- Outlet Port + +OS:Connector:Mixer, + {25c13b15-b42b-43f4-9501-62a96bc4f984}, !- Handle + Connector Mixer 6, !- Name + {b65120e2-4237-4e3f-baf9-e4b7f6e10e7f}, !- Outlet Branch Name + {6508009a-0a30-4a20-8050-f99f6cccdcaf}, !- Inlet Branch Name 1 + {31cb2535-6e54-401c-b86c-4c68a2b1767f}; !- Inlet Branch Name 2 + +OS:Connector:Splitter, + {7c695528-173c-4ddc-8595-5bcc2b3d4626}, !- Handle + Connector Splitter 6, !- Name + {c559482c-db6a-4b4f-ae0b-47ba4f6f513e}, !- Inlet Branch Name + {24bc76be-1b2c-4dfc-aaa3-f747a2356a32}, !- Outlet Branch Name 1 + {7de6c5b7-3454-43d1-b6c6-4d09f9ee5d8b}; !- Outlet Branch Name 2 + +OS:Connection, + {8236359a-e831-4d78-9830-981e5f95289c}, !- Handle + {063ada12-13d1-4bf6-b383-378758e37a94}, !- Name + {c7748cae-3ce0-4ae5-827b-3ba8a29c264b}, !- Source Object + 17, !- Outlet Port + {c260751b-3a8d-4869-a1f1-dd1fd2e0e84e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {24bc76be-1b2c-4dfc-aaa3-f747a2356a32}, !- Handle + {d5e8c48c-ac80-4795-946c-c70b1fb29a7a}, !- Name + {7c695528-173c-4ddc-8595-5bcc2b3d4626}, !- Source Object + 3, !- Outlet Port + {f5c35053-1c7b-483f-8c48-0b3d3ef98a8f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d844f7de-31bb-4632-a3c2-732723776755}, !- Handle + {92485a9b-6cdc-496f-8344-ca115d0c2b29}, !- Name + {fbe1f0a4-a88b-4f89-b06e-7c222b7bbdd7}, !- Source Object + 3, !- Outlet Port + {c7748cae-3ce0-4ae5-827b-3ba8a29c264b}, !- Target Object + 18; !- Inlet Port + +OS:Sizing:Plant, + {64114983-7289-4a9f-8c8c-3a89ef4a5cba}, !- Handle + {c7748cae-3ce0-4ae5-827b-3ba8a29c264b}, !- Plant or Condenser Loop Name + Condenser, !- Loop Type + 29.4, !- Design Loop Exit Temperature {C} + 5.6, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:AvailabilityManagerAssignmentList, + {f72e3c69-e096-4414-8b82-0e600ebde7ca}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + +OS:CoolingTower:SingleSpeed, + {85348379-2939-47e2-9b18-294cd16aca62}, !- Handle + Cooling Tower Single Speed 1, !- Name + {8fd3e31c-2904-4be5-afc3-4be358f7c533}, !- Water Inlet Node Name + {400a814b-176c-4f98-a522-ce6564ed967e}, !- Water Outlet Node Name + autosize, !- Design Water Flow Rate {m3/s} + autosize, !- Design Air Flow Rate {m3/s} + autosize, !- Fan Power at Design Air Flow Rate {W} + autosize, !- U-Factor Times Area Value at Design Air Flow Rate {W/K} + autosize, !- Air Flow Rate in Free Convection Regime {m3/s} + autosize, !- U-Factor Times Area Value at Free Convection Air Flow Rate {W/K} + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + , !- Nominal Capacity {W} + 0, !- Free Convection Capacity {W} + 0, !- Basin Heater Capacity {W/K} + , !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule Name + LossFactor, !- Evaporation Loss Mode + 0.2, !- Evaporation Loss Factor {percent/K} + 0.008, !- Drift Loss Percent {percent} + ConcentrationRatio, !- Blowdown Calculation Mode + 3, !- Blowdown Concentration Ratio + , !- Blowdown Makeup Water Usage Schedule Name + , !- Outdoor Air Inlet Node Name + FanCycling, !- Capacity Control + 1, !- Number of Cells + MinimalCell, !- Cell Control + 0.33, !- Cell Minimum Water Flow Rate Fraction + 2.5, !- Cell Maximum Water Flow Rate Fraction + 1, !- Sizing Factor + 0.1, !- Free Convection Air Flow Rate Sizing Factor + 0.1, !- Free Convection U-Factor Times Area Value Sizing Factor + 1.25, !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio + 0.1, !- Free Convection Nominal Capacity Sizing Factor + 35, !- Design Inlet Air Dry-Bulb Temperature {C} + 25.6, !- Design Inlet Air Wet-Bulb Temperature {C} + autosize, !- Design Approach Temperature {deltaC} + autosize, !- Design Range Temperature {deltaC} + General; !- End-Use Subcategory + +OS:Node, + {fec373ea-3884-4a7f-9dd9-e908d4fb813f}, !- Handle + Node 53, !- Name + {400a814b-176c-4f98-a522-ce6564ed967e}, !- Inlet Port + {bba16c72-105a-4957-b949-9ee512166074}; !- Outlet Port + +OS:Connection, + {8fd3e31c-2904-4be5-afc3-4be358f7c533}, !- Handle + {9cd45e89-a170-4f69-9a6b-e00cac22b5ad}, !- Name + {4216495d-f9e1-4b9b-9a1e-8b688368f744}, !- Source Object + 3, !- Outlet Port + {85348379-2939-47e2-9b18-294cd16aca62}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {400a814b-176c-4f98-a522-ce6564ed967e}, !- Handle + {3abc4c20-875a-4fde-b18e-d1cc8be1d114}, !- Name + {85348379-2939-47e2-9b18-294cd16aca62}, !- Source Object + 3, !- Outlet Port + {fec373ea-3884-4a7f-9dd9-e908d4fb813f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bba16c72-105a-4957-b949-9ee512166074}, !- Handle + {fd7561c2-9001-4aeb-a349-fddcadf51dbe}, !- Name + {fec373ea-3884-4a7f-9dd9-e908d4fb813f}, !- Source Object + 3, !- Outlet Port + {42dfa2af-b102-401c-87de-7fa16323e7cb}, !- Target Object + 3; !- Inlet Port + +OS:Pipe:Adiabatic, + {2267696e-0dd1-419a-8ae4-40343abca7bb}, !- Handle + Pipe Adiabatic 11, !- Name + {b4999595-e07f-4ca4-a5b9-4a1aaae6c1d4}, !- Inlet Node Name + {20b72527-9b1e-4214-99eb-e81df384233b}; !- Outlet Node Name + +OS:Node, + {c2043caf-ff70-4088-8a04-49282e30a086}, !- Handle + Node 54, !- Name + {283e6ff7-7254-4e26-82ce-bfb4f4a7c9bb}, !- Inlet Port + {b4999595-e07f-4ca4-a5b9-4a1aaae6c1d4}; !- Outlet Port + +OS:Connection, + {283e6ff7-7254-4e26-82ce-bfb4f4a7c9bb}, !- Handle + {40bdce15-371b-4dca-85d4-f5d58cb6a02f}, !- Name + {e724e5e1-4c11-42de-894b-51fe44fc85c1}, !- Source Object + 4, !- Outlet Port + {c2043caf-ff70-4088-8a04-49282e30a086}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {2ed1f9e1-e8b2-4a1f-b3e1-0c029ed91d4d}, !- Handle + Node 55, !- Name + {20b72527-9b1e-4214-99eb-e81df384233b}, !- Inlet Port + {9fd4d26e-f6e6-44b5-855d-e364f8f9f11d}; !- Outlet Port + +OS:Connection, + {b4999595-e07f-4ca4-a5b9-4a1aaae6c1d4}, !- Handle + {5122003a-454d-48c9-9456-5c2f9fa1644e}, !- Name + {c2043caf-ff70-4088-8a04-49282e30a086}, !- Source Object + 3, !- Outlet Port + {2267696e-0dd1-419a-8ae4-40343abca7bb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {20b72527-9b1e-4214-99eb-e81df384233b}, !- Handle + {22e2b6bf-02f4-4703-85c8-13e23924c495}, !- Name + {2267696e-0dd1-419a-8ae4-40343abca7bb}, !- Source Object + 3, !- Outlet Port + {2ed1f9e1-e8b2-4a1f-b3e1-0c029ed91d4d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9fd4d26e-f6e6-44b5-855d-e364f8f9f11d}, !- Handle + {bac6db48-2fc9-4220-a653-e6119e66b76e}, !- Name + {2ed1f9e1-e8b2-4a1f-b3e1-0c029ed91d4d}, !- Source Object + 3, !- Outlet Port + {42dfa2af-b102-401c-87de-7fa16323e7cb}, !- Target Object + 4; !- Inlet Port + +OS:Pipe:Adiabatic, + {f9f8ed24-0c31-4286-b9fa-932e7c9d8423}, !- Handle + Pipe Adiabatic 12, !- Name + {ef5af5f6-08dd-4405-b1be-f94667d1f7c1}, !- Inlet Node Name + {0cc5569e-d293-4bb6-b36d-b2e82acb83b9}; !- Outlet Node Name + +OS:Node, + {7695ba71-11f4-4a89-86e3-29f841cf3372}, !- Handle + Node 56, !- Name + {afe45c00-3f3d-4074-9d86-6e6850a87ddf}, !- Inlet Port + {ef5af5f6-08dd-4405-b1be-f94667d1f7c1}; !- Outlet Port + +OS:Connection, + {afe45c00-3f3d-4074-9d86-6e6850a87ddf}, !- Handle + {867b45be-0849-49aa-a5f5-d1e29c7e62c3}, !- Name + {42dfa2af-b102-401c-87de-7fa16323e7cb}, !- Source Object + 2, !- Outlet Port + {7695ba71-11f4-4a89-86e3-29f841cf3372}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ef5af5f6-08dd-4405-b1be-f94667d1f7c1}, !- Handle + {79b89b4f-0f87-471a-8216-9daad972795a}, !- Name + {7695ba71-11f4-4a89-86e3-29f841cf3372}, !- Source Object + 3, !- Outlet Port + {f9f8ed24-0c31-4286-b9fa-932e7c9d8423}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0cc5569e-d293-4bb6-b36d-b2e82acb83b9}, !- Handle + {5276a34f-ae5f-405a-9bb8-f5a584c4f784}, !- Name + {f9f8ed24-0c31-4286-b9fa-932e7c9d8423}, !- Source Object + 3, !- Outlet Port + {1e6e8d3e-5767-41a7-b544-6a439061c090}, !- Target Object + 2; !- Inlet Port + +OS:Pump:VariableSpeed, + {02fe4fc0-4857-4c17-8d9c-b3cdfd04151c}, !- Handle + Pump Variable Speed 3, !- Name + {67e63b6a-21df-4197-973e-70f7bbc63d12}, !- Inlet Node Name + {268531ae-818d-41ea-bc42-707cdea31de8}, !- Outlet Node Name + , !- Rated Flow Rate {m3/s} + , !- Rated Pump Head {Pa} + , !- Rated Power Consumption {W} + , !- Motor Efficiency + , !- Fraction of Motor Inefficiencies to Fluid Stream + , !- Coefficient 1 of the Part Load Performance Curve + , !- Coefficient 2 of the Part Load Performance Curve + , !- 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, + {4d3cf425-76b1-4f80-a276-83c24ebd525b}, !- Handle + Node 57, !- Name + {268531ae-818d-41ea-bc42-707cdea31de8}, !- Inlet Port + {d0a32de0-7596-4dc4-b7c5-448a07e6c380}; !- Outlet Port + +OS:Connection, + {67e63b6a-21df-4197-973e-70f7bbc63d12}, !- Handle + {b9ac0e07-0873-42bf-b335-d85078392321}, !- Name + {051ede03-b9da-4cc0-b9d6-36f4f903722a}, !- Source Object + 3, !- Outlet Port + {02fe4fc0-4857-4c17-8d9c-b3cdfd04151c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {268531ae-818d-41ea-bc42-707cdea31de8}, !- Handle + {0e5906b4-4195-4608-a103-2ff97cd83dd9}, !- Name + {02fe4fc0-4857-4c17-8d9c-b3cdfd04151c}, !- Source Object + 3, !- Outlet Port + {4d3cf425-76b1-4f80-a276-83c24ebd525b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d0a32de0-7596-4dc4-b7c5-448a07e6c380}, !- Handle + {4712e64c-ec89-41ed-b889-f7672254a875}, !- Name + {4d3cf425-76b1-4f80-a276-83c24ebd525b}, !- Source Object + 3, !- Outlet Port + {e724e5e1-4c11-42de-894b-51fe44fc85c1}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {53638bb3-0415-4340-a12e-af3233599ecd}, !- Handle + Node 58, !- Name + {e333bfcd-c61d-4a0e-82d0-d8b09dca0c99}, !- Inlet Port + {6508009a-0a30-4a20-8050-f99f6cccdcaf}; !- Outlet Port + +OS:Connection, + {940fbd90-9e8e-44fd-bebe-56f60523d7c6}, !- Handle + {24faa177-b5b0-42d2-aee1-b208350f3aef}, !- Name + {f5c35053-1c7b-483f-8c48-0b3d3ef98a8f}, !- Source Object + 3, !- Outlet Port + {204d4442-066d-42c6-982a-f2ee444b84ea}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {e333bfcd-c61d-4a0e-82d0-d8b09dca0c99}, !- Handle + {e54a4444-ca47-4e64-a5b2-1e87b3a902b2}, !- Name + {204d4442-066d-42c6-982a-f2ee444b84ea}, !- Source Object + 18, !- Outlet Port + {53638bb3-0415-4340-a12e-af3233599ecd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6508009a-0a30-4a20-8050-f99f6cccdcaf}, !- Handle + {6fb87cc3-8cf0-4024-985d-09fb1fd98885}, !- Name + {53638bb3-0415-4340-a12e-af3233599ecd}, !- Source Object + 3, !- Outlet Port + {25c13b15-b42b-43f4-9501-62a96bc4f984}, !- Target Object + 3; !- Inlet Port + +OS:Pipe:Adiabatic, + {09ba8384-2afe-4b31-a09e-5ca03f93d1b0}, !- Handle + Pipe Adiabatic 13, !- Name + {0b953917-9af3-4272-a0a8-e7e104d34b3c}, !- Inlet Node Name + {ed7b098a-147b-429f-83e1-736bfdbcda3a}; !- Outlet Node Name + +OS:Node, + {5a2e5783-69bd-4f6c-87ee-c74b55f06577}, !- Handle + Node 59, !- Name + {7de6c5b7-3454-43d1-b6c6-4d09f9ee5d8b}, !- Inlet Port + {0b953917-9af3-4272-a0a8-e7e104d34b3c}; !- Outlet Port + +OS:Connection, + {7de6c5b7-3454-43d1-b6c6-4d09f9ee5d8b}, !- Handle + {670e7201-40fe-4829-b60c-010eaf8e0276}, !- Name + {7c695528-173c-4ddc-8595-5bcc2b3d4626}, !- Source Object + 4, !- Outlet Port + {5a2e5783-69bd-4f6c-87ee-c74b55f06577}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {683c4058-e4d5-4376-a28e-d1f206e7e46e}, !- Handle + Node 60, !- Name + {ed7b098a-147b-429f-83e1-736bfdbcda3a}, !- Inlet Port + {31cb2535-6e54-401c-b86c-4c68a2b1767f}; !- Outlet Port + +OS:Connection, + {0b953917-9af3-4272-a0a8-e7e104d34b3c}, !- Handle + {2baf58a6-c6b3-41bc-be9c-848faca1777d}, !- Name + {5a2e5783-69bd-4f6c-87ee-c74b55f06577}, !- Source Object + 3, !- Outlet Port + {09ba8384-2afe-4b31-a09e-5ca03f93d1b0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ed7b098a-147b-429f-83e1-736bfdbcda3a}, !- Handle + {8eaa114b-8091-4d45-9908-c89d3deec0a4}, !- Name + {09ba8384-2afe-4b31-a09e-5ca03f93d1b0}, !- Source Object + 3, !- Outlet Port + {683c4058-e4d5-4376-a28e-d1f206e7e46e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {31cb2535-6e54-401c-b86c-4c68a2b1767f}, !- Handle + {c380664b-ce48-4a85-8dd5-7ab758d9aaac}, !- Name + {683c4058-e4d5-4376-a28e-d1f206e7e46e}, !- Source Object + 3, !- Outlet Port + {25c13b15-b42b-43f4-9501-62a96bc4f984}, !- Target Object + 4; !- Inlet Port + +OS:Pipe:Adiabatic, + {4e5a9d65-2c07-42ed-b729-e15bbcfe2b64}, !- Handle + Pipe Adiabatic 14, !- Name + {ada7e448-ae7f-4f7a-9b48-de1f12af784d}, !- Inlet Node Name + {21f96d33-a41a-4643-bcb0-82467402693e}; !- Outlet Node Name + +OS:Node, + {757bc3fb-d5a9-4d93-95cd-85eca2bb9c65}, !- Handle + Node 61, !- Name + {21f96d33-a41a-4643-bcb0-82467402693e}, !- Inlet Port + {c559482c-db6a-4b4f-ae0b-47ba4f6f513e}; !- Outlet Port + +OS:Connection, + {ada7e448-ae7f-4f7a-9b48-de1f12af784d}, !- Handle + {bcae7926-d3c9-4435-9347-44f012f0bb64}, !- Name + {c260751b-3a8d-4869-a1f1-dd1fd2e0e84e}, !- Source Object + 3, !- Outlet Port + {4e5a9d65-2c07-42ed-b729-e15bbcfe2b64}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {21f96d33-a41a-4643-bcb0-82467402693e}, !- Handle + {c038bf47-93a1-4edf-9946-d68a23237ff6}, !- Name + {4e5a9d65-2c07-42ed-b729-e15bbcfe2b64}, !- Source Object + 3, !- Outlet Port + {757bc3fb-d5a9-4d93-95cd-85eca2bb9c65}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c559482c-db6a-4b4f-ae0b-47ba4f6f513e}, !- Handle + {93f7d95e-3760-4c46-9400-32fb6d2c79fb}, !- Name + {757bc3fb-d5a9-4d93-95cd-85eca2bb9c65}, !- Source Object + 3, !- Outlet Port + {7c695528-173c-4ddc-8595-5bcc2b3d4626}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {77d77dde-8e63-4426-b297-2b823ae084c7}, !- Handle + Pipe Adiabatic 15, !- Name + {d18c6fbd-0ea1-4057-a594-3205ff2d0859}, !- Inlet Node Name + {893bb6ae-d0a8-4f77-9788-c23c6190efed}; !- Outlet Node Name + +OS:Node, + {dcb505df-4999-46a9-adb2-5a59b87c5b52}, !- Handle + Node 62, !- Name + {b65120e2-4237-4e3f-baf9-e4b7f6e10e7f}, !- Inlet Port + {d18c6fbd-0ea1-4057-a594-3205ff2d0859}; !- Outlet Port + +OS:Connection, + {b65120e2-4237-4e3f-baf9-e4b7f6e10e7f}, !- Handle + {bf380fd8-14d9-4eb6-aebb-6589b4c07fd5}, !- Name + {25c13b15-b42b-43f4-9501-62a96bc4f984}, !- Source Object + 2, !- Outlet Port + {dcb505df-4999-46a9-adb2-5a59b87c5b52}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d18c6fbd-0ea1-4057-a594-3205ff2d0859}, !- Handle + {66a78c53-1c0b-4bac-907a-535aa87e7470}, !- Name + {dcb505df-4999-46a9-adb2-5a59b87c5b52}, !- Source Object + 3, !- Outlet Port + {77d77dde-8e63-4426-b297-2b823ae084c7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {893bb6ae-d0a8-4f77-9788-c23c6190efed}, !- Handle + {42ad3ce8-62be-4ae0-b3a9-f76a33bad332}, !- Name + {77d77dde-8e63-4426-b297-2b823ae084c7}, !- Source Object + 3, !- Outlet Port + {fbe1f0a4-a88b-4f89-b06e-7c222b7bbdd7}, !- Target Object + 2; !- Inlet Port + +OS:SetpointManager:FollowOutdoorAirTemperature, + {95c1a021-ebae-4149-a372-1c90f2c9b384}, !- Handle + Setpoint Manager Follow Outdoor Air Temperature 1, !- Name + Temperature, !- Control Variable + OutdoorAirWetBulb, !- Reference Temperature Type + 1.5, !- Offset Temperature Difference {deltaC} + 80, !- Maximum Setpoint Temperature {C} + 6, !- Minimum Setpoint Temperature {C} + {1e6e8d3e-5767-41a7-b544-6a439061c090}; !- Setpoint Node or NodeList Name + +OS:Node, + {9db2915a-18fe-4867-bafa-b5eb9a99059c}, !- Handle + Node 63, !- Name + {d1ebb5df-4f70-4c92-a79f-80084c295441}, !- Inlet Port + {d0bc99ae-6645-4a81-94e7-7ad9c840eda9}; !- Outlet Port + +OS:Connection, + {ec88f6dd-0359-45b3-ae34-7af1310c9156}, !- Handle + {f847dc96-969e-432c-b4d8-50e13c8db8f7}, !- Name + {9d53fa40-0a82-4b09-b42c-5ff01700f3d7}, !- Source Object + 3, !- Outlet Port + {b61419ec-255d-4cf3-9804-16dd33bdda23}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {d1ebb5df-4f70-4c92-a79f-80084c295441}, !- Handle + {bdd5dad3-726f-430e-b454-a73fceb57b04}, !- Name + {3b559f80-3940-48a4-90e8-c9fde13787ab}, !- Source Object + 3, !- Outlet Port + {9db2915a-18fe-4867-bafa-b5eb9a99059c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d0bc99ae-6645-4a81-94e7-7ad9c840eda9}, !- Handle + {4054226f-2981-4f49-8b60-b40c730ace89}, !- Name + {9db2915a-18fe-4867-bafa-b5eb9a99059c}, !- Source Object + 3, !- Outlet Port + {d3f4c66e-e5e0-49d4-a71e-54487b86fc51}, !- Target Object + 3; !- Inlet Port + +OS:DesignSpecification:OutdoorAir, + {e41e8934-3362-486a-b418-dccf91f0e71c}, !- Handle + Story 1 Core Space DSOA, !- Name + , !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + 50, !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {d7ebea37-af16-4582-83eb-322af15b8623}, !- Handle + Story 2 Core Space DSOA, !- Name + , !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + 50, !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {23273342-0b2e-4c32-bbc0-3aa4be3006ff}, !- Handle + Story 3 Core Space DSOA, !- Name + , !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + 50, !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DesignSpecification:OutdoorAir, + {4d90a14b-c996-460e-8cf6-4d12eb46ac3e}, !- Handle + Story 4 Core Space DSOA, !- Name + , !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + 50, !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:YearDescription, + {9d3b9f2d-7eba-419a-ac06-60399787d71d}, !- Handle + , !- Calendar Year + Thursday; !- Day of Week for Start Day + diff --git a/model/simulationtests/space_level_dsoa.py b/model/simulationtests/space_level_dsoa.py index 317deb38..053452ec 100644 --- a/model/simulationtests/space_level_dsoa.py +++ b/model/simulationtests/space_level_dsoa.py @@ -4,9 +4,8 @@ model = BaselineModel() -# make a 1 story, 100m X 50m, 5 zone building -model.add_geometry(length=100, width=50, num_floors=1, floor_to_floor_height=4, plenum_height=0, perimeter_zone_depth=3) - +# make a 1 story, 100m X 50m, 5 zone building, all zones are equally sized +model.add_geometry(length=100, width=50, num_floors=5, floor_to_floor_height=3, plenum_height=0, perimeter_zone_depth=0) # NOTE: Make all spaces under a single zone [z.remove() for z in model.getThermalZones()] z = openstudio.model.ThermalZone(model) @@ -54,7 +53,7 @@ dsoa.setOutdoorAirFlowRate(0.01 * space.floorArea()) dsoa.setName(f"{space.nameString()} DSOA") space.setDesignSpecificationOutdoorAir(dsoa) - print(f"For'{space.nameString()}' created '{dsoa.nameString()}'") + # print(f"For'{space.nameString()}' created '{dsoa.nameString()}'") # save the OpenStudio model (.osm) model.save_openstudio_osm(osm_save_directory=None, osm_name="in.osm") diff --git a/model/simulationtests/space_level_dsoa.rb b/model/simulationtests/space_level_dsoa.rb new file mode 100644 index 00000000..40f722fa --- /dev/null +++ b/model/simulationtests/space_level_dsoa.rb @@ -0,0 +1,73 @@ +# frozen_string_literal: true + +require 'openstudio' +require_relative 'lib/baseline_model' + +model = BaselineModel.new + +# make a 1 story, 100m X 50m, 5 zone building, all zones are equally sized +model.add_geometry({ 'length' => 100, + 'width' => 50, + 'num_floors' => 5, + 'floor_to_floor_height' => 3, + 'plenum_height' => 0, + 'perimeter_zone_depth' => 0 }) + +# NOTE: Make all spaces under a single zone +model.getThermalZones.each(&:remove) +z = OpenStudio::Model::ThermalZone.new(model) +z.setName('Zone with 5 Spaces') +model.getSpaces.each { |s| s.setThermalZone(z) } + +# add windows at a 40% window-to-wall ratio +model.add_windows({ 'wwr' => 0.4, + 'offset' => 1, + 'application_type' => 'Above Floor' }) + +# add thermostats +model.add_thermostats({ 'heating_setpoint' => 24, + 'cooling_setpoint' => 28 }) + +# assign constructions from a local library to the walls/windows/etc. in the model +model.set_constructions + +# set whole building space type; simplified 90.1-2004 Large Office Whole Building +model.set_space_type + +# add design days to the model (Chicago) +model.add_design_days + +# Add ASHRAE System type 07, VAV w/ Reheat, this creates a ChW, a HW loop and a +# Condenser Loop +model.add_hvac({ 'ashrae_sys_num' => '07' }) + +raise 'Expected 1 thermal zone' unless model.getThermalZones.size == 1 +raise 'Expected 5 spaces' unless model.getSpaces.size == 5 +raise 'Expected 1 air loop' unless model.getAirLoopHVACs.size == 1 + +air_loop = model.getAirLoopHVACs.first +raise 'Expected 1 VAV terminal with reheat' unless model.getAirTerminalSingleDuctVAVReheats.size == 1 + +atu = model.getAirTerminalSingleDuctVAVReheats.first +raise 'Failed to setControlForOutdoorAir' unless atu.setControlForOutdoorAir(true) + +# In order to produce more consistent results between different runs, +# we sort the spaces by names +spaces = model.getSpaces.sort_by(&:nameString) + +model.getDesignSpecificationOutdoorAirs.each(&:remove) + +# Create a Design Specification Outdoor Air for each space, but the last one +spaces[0..-2].each do |space| + # Create a Design Specification Outdoor Air object for each space + # We set it as an absolute outdoor air flow rate but as 0.01 m3/s per m2 of floor area + dsoa = OpenStudio::Model::DesignSpecificationOutdoorAir.new(model) + dsoa.setOutdoorAirFlowRate(0.01 * space.floorArea) + dsoa.setName("#{space.nameString} DSOA") + space.setDesignSpecificationOutdoorAir(dsoa) + # puts "For '#{space.nameString()}' created '#{dsoa.nameString()}'") +end + +# save the OpenStudio model (.osm) +model.save_openstudio_osm({ 'osm_save_directory' => Dir.pwd, + 'osm_name' => 'in.osm' }) diff --git a/model_tests.rb b/model_tests.rb index c2f00a73..607c01ec 100644 --- a/model_tests.rb +++ b/model_tests.rb @@ -1765,16 +1765,11 @@ def test_solar_collector_integralcollectorstorage_osm result = sim_test('solar_collector_integralcollectorstorage.osm') end - # def test_space_level_dsoa_rb - # result = sim_test('space_level_dsoa.rb') - # end - - def test_space_level_dsoa_py - # result = sim_test('space_level_dsoa.py') - # We're going to do it manually here, above line is just for CI to detect changed tests - filename = 'space_level_dsoa.py' + def _helper_space_level_dsoa(filename:) result_osw = sim_test(filename, { compare_eui: false }) if $UseEplusSpaces == false + cp_out_osw = File.join($OutOSWDir, "#{filename}_#{$SdkVersion}_out#{$Custom_tag}.osw") + compare_osw_eui_with_previous_version(cp_out_osw) return end @@ -1812,9 +1807,22 @@ def test_space_level_dsoa_py compare_osw_eui_with_previous_version(cp_out_osw) end - # def test_space_level_dsoa_osm - # result = sim_test('space_level_dsoa.osm') - # end + def test_space_level_dsoa_rb + # result = sim_test('space_level_dsoa.rb') + # We're going to do it manually here, above line is just for CI to detect changed tests + _helper_space_level_dsoa(filename: 'space_level_dsoa.rb') + end + + def test_space_level_dsoa_py + # result = sim_test('space_level_dsoa.py') + # We're going to do it manually here, above line is just for CI to detect changed tests + _helper_space_level_dsoa(filename: 'space_level_dsoa.py') + end + + def test_space_level_dsoa_osm + # result = sim_test('space_level_dsoa.osm') + _helper_space_level_dsoa(filename: 'space_level_dsoa.osm') + end def test_space_load_instances_rb result = sim_test('space_load_instances.rb') diff --git a/test/space_level_dsoa.osm_3.0.0_out.osw b/test/space_level_dsoa.osm_3.0.0_out.osw new file mode 100644 index 00000000..38d34af9 --- /dev/null +++ b/test/space_level_dsoa.osm_3.0.0_out.osw @@ -0,0 +1,1022 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 9.3.0-baff08990c, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Areas differ from calculated Zone Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 20 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.2.11" + }, + { + "name": "workflow_gem_version", + "value": "2.0.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120625907.8 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120625907.8 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.26 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.26 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7331.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3843.75 + }, + { + "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": 97550058.36 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8814007.31 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2637452.79 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1458538.9 + }, + { + "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": 23075839.96 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97550058.36 + }, + { + "name": "fuel_additional_fuel", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2583130.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 772961.11 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427455.56 + }, + { + "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": 975688.8 + }, + { + "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": 2583133.94 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 772960.83 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427455.76 + }, + { + "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": 6762864.97 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97550.04 + }, + { + "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": 97550.04 + }, + { + "name": "additional_fuel_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35351963.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2574.1 + }, + { + "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/space_level_dsoa.osm_3.0.1_out.osw b/test/space_level_dsoa.osm_3.0.1_out.osw new file mode 100644 index 00000000..38d34af9 --- /dev/null +++ b/test/space_level_dsoa.osm_3.0.1_out.osw @@ -0,0 +1,1022 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 9.3.0-baff08990c, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Areas differ from calculated Zone Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 20 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.2.11" + }, + { + "name": "workflow_gem_version", + "value": "2.0.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120625907.8 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120625907.8 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.26 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.26 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7331.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3843.75 + }, + { + "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": 97550058.36 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8814007.31 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2637452.79 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1458538.9 + }, + { + "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": 23075839.96 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97550058.36 + }, + { + "name": "fuel_additional_fuel", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2583130.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 772961.11 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427455.56 + }, + { + "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": 975688.8 + }, + { + "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": 2583133.94 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 772960.83 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427455.76 + }, + { + "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": 6762864.97 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97550.04 + }, + { + "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": 97550.04 + }, + { + "name": "additional_fuel_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35351963.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2574.1 + }, + { + "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/space_level_dsoa.osm_3.1.0_out.osw b/test/space_level_dsoa.osm_3.1.0_out.osw new file mode 100644 index 00000000..dfc52822 --- /dev/null +++ b/test/space_level_dsoa.osm_3.1.0_out.osw @@ -0,0 +1,1582 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 9.4.0-998c4b761e, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Areas differ from calculated Zone Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 20 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.2.12" + }, + { + "name": "workflow_gem_version", + "value": "2.1.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120653792.58 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120653792.58 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.36 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.36 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7331.25 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3843.5 + }, + { + "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": 97549176.89 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8825665.46 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654560.89 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1458548.38 + }, + { + "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": 23104615.68 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97549176.89 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2586547.22 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 777975.0 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427458.33 + }, + { + "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": 975679.99 + }, + { + "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": 2586547.67 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 777974.36 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427457.58 + }, + { + "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": 6771294.05 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97549.16 + }, + { + "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": 97549.16 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35360136.11 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2578.32 + }, + { + "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/space_level_dsoa.osm_3.2.0_out.osw b/test/space_level_dsoa.osm_3.2.0_out.osw new file mode 100644 index 00000000..0e9cdb27 --- /dev/null +++ b/test/space_level_dsoa.osm_3.2.0_out.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Areas differ from calculated Zone Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.2.13" + }, + { + "name": "workflow_gem_version", + "value": "2.2.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120653792.58 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120653792.58 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.36 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.36 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7331.25 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3843.5 + }, + { + "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": 97549176.89 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8825665.46 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654560.89 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1458548.38 + }, + { + "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": 23104615.68 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97549176.89 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2586547.22 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 777975.0 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427458.33 + }, + { + "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": 975679.99 + }, + { + "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": 2586547.67 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 777974.36 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427457.58 + }, + { + "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": 6771294.05 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97549.16 + }, + { + "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": 97549.16 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35360136.11 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2578.32 + }, + { + "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/space_level_dsoa.osm_3.2.1_out.osw b/test/space_level_dsoa.osm_3.2.1_out.osw new file mode 100644 index 00000000..95f4408e --- /dev/null +++ b/test/space_level_dsoa.osm_3.2.1_out.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Areas differ from calculated Zone Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.2.14" + }, + { + "name": "workflow_gem_version", + "value": "2.2.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120653792.58 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120653792.58 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.36 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.36 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7331.25 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3843.5 + }, + { + "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": 97549176.89 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8825665.46 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654560.89 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1458548.38 + }, + { + "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": 23104615.68 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97549176.89 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2586547.22 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 777975.0 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427458.33 + }, + { + "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": 975679.99 + }, + { + "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": 2586547.67 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 777974.36 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427457.58 + }, + { + "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": 6771294.05 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97549.16 + }, + { + "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": 97549.16 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35360136.11 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2578.32 + }, + { + "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/space_level_dsoa.osm_3.3.0_out.osw b/test/space_level_dsoa.osm_3.3.0_out.osw new file mode 100644 index 00000000..2db037a1 --- /dev/null +++ b/test/space_level_dsoa.osm_3.3.0_out.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 9.6.0-4b123cf80f, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Areas differ from calculated Zone Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.2.15" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120705657.13 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120705657.13 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.56 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.56 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7325.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3837.75 + }, + { + "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": 97600842.4 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8825674.94 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654750.45 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1458548.38 + }, + { + "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": 23104814.73 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97600842.4 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2586550.0 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778030.56 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427458.33 + }, + { + "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": 976196.74 + }, + { + "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": 2586547.67 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778030.58 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427457.58 + }, + { + "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": 6771350.27 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97600.82 + }, + { + "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": 97600.82 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35375336.11 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2578.33 + }, + { + "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/space_level_dsoa.osm_3.4.0_out.osw b/test/space_level_dsoa.osm_3.4.0_out.osw new file mode 100644 index 00000000..296f24bf --- /dev/null +++ b/test/space_level_dsoa.osm_3.4.0_out.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 22.1.0-ed759b17ee, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.2.16" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7325.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3837.75 + }, + { + "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": 97600880.32 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8823220.09 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654740.97 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1457913.34 + }, + { + "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": 23101715.36 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97600880.32 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2585830.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778027.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427272.22 + }, + { + "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": 976197.12 + }, + { + "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": 2585831.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778029.19 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427271.94 + }, + { + "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": 6770446.57 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97600.85 + }, + { + "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": 97600.85 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35374438.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2576.78 + }, + { + "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/space_level_dsoa.osm_3.5.0_out.osw b/test/space_level_dsoa.osm_3.5.0_out.osw new file mode 100644 index 00000000..9738a2a8 --- /dev/null +++ b/test/space_level_dsoa.osm_3.5.0_out.osw @@ -0,0 +1,1658 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 22.2.0-aa78da9668, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.3.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 50091357.6 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 50091357.6 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 186.15 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 186.15 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 388.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 46.5 + }, + { + "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": 25350402.0 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 12284288.05 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 425693.1 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 4259575.44 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 2548310.59 + }, + { + "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": 24740955.6 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 25350402.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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 3600169.44 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 124758.33 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 1248358.33 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 746836.11 + }, + { + "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": 253552.93 + }, + { + "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": 3600169.17 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 124757.17 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 1248356.94 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 746836.94 + }, + { + "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": 7250855.22 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 25350.4 + }, + { + "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": 25350.4 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 14680327.78 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 1241.65 + }, + { + "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/space_level_dsoa.osm_3.5.1_out.osw b/test/space_level_dsoa.osm_3.5.1_out.osw new file mode 100644 index 00000000..d1d97ff5 --- /dev/null +++ b/test/space_level_dsoa.osm_3.5.1_out.osw @@ -0,0 +1,1658 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 22.2.0-aa78da9668, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.3.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 96719088.14 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 96719088.14 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 359.42 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 359.42 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7397.75 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3907.75 + }, + { + "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": 66741224.96 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 12888445.64 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 4408268.99 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 2515307.6 + }, + { + "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": 29977863.18 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 66741224.96 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 3777230.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 1291936.11 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 737163.89 + }, + { + "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": 667541.03 + }, + { + "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": 3777230.83 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 1291935.28 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 737163.69 + }, + { + "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": 8785644.25 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 66741.22 + }, + { + "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": 66741.22 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 28345566.67 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 1825.07 + }, + { + "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/space_level_dsoa.osm_3.6.0_out.osw b/test/space_level_dsoa.osm_3.6.0_out.osw new file mode 100644 index 00000000..49677e30 --- /dev/null +++ b/test/space_level_dsoa.osm_3.6.0_out.osw @@ -0,0 +1,1658 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.1.0-87ed9199d4, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.4.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 96719088.14 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 96719088.14 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 359.42 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 359.42 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7397.75 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3907.75 + }, + { + "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": 66741224.96 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 12888445.64 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 4408268.99 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 2515307.6 + }, + { + "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": 29977863.18 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 66741224.96 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 3777230.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 1291936.11 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 737163.89 + }, + { + "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": 667541.03 + }, + { + "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": 3777230.83 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 1291935.28 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 737163.69 + }, + { + "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": 8785644.25 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 66741.22 + }, + { + "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": 66741.22 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 28345566.67 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 1825.07 + }, + { + "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/space_level_dsoa.osm_3.6.1_out.osw b/test/space_level_dsoa.osm_3.6.1_out.osw new file mode 100644 index 00000000..2a04d12c --- /dev/null +++ b/test/space_level_dsoa.osm_3.6.1_out.osw @@ -0,0 +1,1658 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.1.0-87ed9199d4, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.4.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 50091357.6 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 50091357.6 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 186.15 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 186.15 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 388.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 46.5 + }, + { + "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": 25350402.0 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 12284288.05 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 425693.1 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 4259575.44 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 2548310.59 + }, + { + "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": 24740955.6 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 25350402.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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 3600169.44 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 124758.33 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 1248358.33 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 746836.11 + }, + { + "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": 253552.93 + }, + { + "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": 3600169.17 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 124757.17 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 1248356.94 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 746836.94 + }, + { + "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": 7250855.22 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 25350.4 + }, + { + "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": 25350.4 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 14680327.78 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 1241.65 + }, + { + "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/space_level_dsoa.osm_3.7.0_out.osw b/test/space_level_dsoa.osm_3.7.0_out.osw new file mode 100644 index 00000000..2f489068 --- /dev/null +++ b/test/space_level_dsoa.osm_3.7.0_out.osw @@ -0,0 +1,1658 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.2.0-7636e6b3e9, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 20 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.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": 96719088.14 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 96719088.14 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 359.42 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 359.42 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7397.75 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3907.75 + }, + { + "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": 66741224.96 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 12888445.64 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 4408268.99 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 2515307.6 + }, + { + "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": 29977863.18 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 66741224.96 + }, + { + "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": 3777230.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 1291936.11 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 737163.89 + }, + { + "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": 667541.03 + }, + { + "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": 3777230.83 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 1291935.28 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 737163.69 + }, + { + "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": 8785644.25 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 66741.22 + }, + { + "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": 66741.22 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 28345566.67 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 1825.07 + }, + { + "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/space_level_dsoa.osm_3.8.0_out.osw b/test/space_level_dsoa.osm_3.8.0_out.osw new file mode 100644 index 00000000..55fcda7d --- /dev/null +++ b/test/space_level_dsoa.osm_3.8.0_out.osw @@ -0,0 +1,1637 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 24.1.0-9d7789a3ac, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATINGWATER:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 8 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.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 20 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.6.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 50090950.04 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 50090950.04 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 186.14 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 186.14 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 388.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 46.5 + }, + { + "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": 25350269.31 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 12284098.48 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 425693.1 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 4259509.1 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 2548301.11 + }, + { + "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": 24740680.73 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 25350269.31 + }, + { + "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": 3600113.89 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 124758.33 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 1248338.89 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 746833.33 + }, + { + "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": 253551.61 + }, + { + "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": 3600111.67 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 124757.17 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 1248339.72 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 746831.94 + }, + { + "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": 7250775.5 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 25350.27 + }, + { + "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": 25350.27 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 14680208.33 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 1241.65 + }, + { + "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": [ + "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", + "/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file diff --git a/test/space_level_dsoa.osm_3.9.0_out.osw b/test/space_level_dsoa.osm_3.9.0_out.osw new file mode 100644 index 00000000..e89fc04e --- /dev/null +++ b/test/space_level_dsoa.osm_3.9.0_out.osw @@ -0,0 +1,1637 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 24.2.0-94a887817b, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATINGWATER:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 8 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.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 20 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.7.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 96743067.91 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 96743067.91 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 359.51 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 359.51 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7390.25 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3900.25 + }, + { + "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": 66741025.91 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 12889801.02 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 4422306.16 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 2524084.38 + }, + { + "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": 30002042.0 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 66741025.91 + }, + { + "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": 3777627.78 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 1296050.0 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 739736.11 + }, + { + "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": 667539.03 + }, + { + "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": 3777625.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 1296051.11 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 739736.44 + }, + { + "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": 8792727.0 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 66741.03 + }, + { + "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": 66741.03 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 28352594.44 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 1825.88 + }, + { + "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": [ + "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", + "/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file diff --git a/test/space_level_dsoa.py_3.7.0_out.osw b/test/space_level_dsoa.py_3.7.0_out.osw index 11a263d8..135e3179 100644 --- a/test/space_level_dsoa.py_3.7.0_out.osw +++ b/test/space_level_dsoa.py_3.7.0_out.osw @@ -14,7 +14,7 @@ " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", - " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", " ************* Beginning System Sizing Calculations", " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", @@ -64,7 +64,7 @@ " ************* EnergyPlus Completed Successfully-- 20 Warning; 0 Severe Errors; " ], "file_paths": [ - "/home/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", "./files", "./weather", "../../files", @@ -196,32 +196,32 @@ { "name": "total_site_energy", "units": "kBtu", - "value": 14219417.83 + "value": 96719088.14 }, { "name": "net_site_energy", "units": "kBtu", - "value": 14219417.83 + "value": 96719088.14 }, { "name": "total_building_area", "units": "ft^2", - "value": 53819.55 + "value": 269097.76 }, { "name": "total_site_eui", "units": "kBtu/ft^2", - "value": 264.21 + "value": 359.42 }, { "name": "eui", "units": "kBtu/ft^2", - "value": 264.21 + "value": 359.42 }, { "name": "unmet_hours_during_heating", "units": "hr", - "value": 117.0 + "value": 7397.75 }, { "name": "unmet_hours_during_cooling", @@ -231,7 +231,7 @@ { "name": "unmet_hours_during_occupied_heating", "units": "hr", - "value": 16.0 + "value": 3907.75 }, { "name": "unmet_hours_during_occupied_cooling", @@ -251,17 +251,17 @@ { "name": "end_use_heating", "units": "kBtu", - "value": 8409308.36 + "value": 66741224.96 }, { "name": "end_use_cooling", "units": "kBtu", - "value": 2980998.58 + "value": 12888445.64 }, { "name": "end_use_interior_lighting", "units": "kBtu", - "value": 522304.1 + "value": 2611539.47 }, { "name": "end_use_exterior_lighting", @@ -271,7 +271,7 @@ { "name": "end_use_interior_equipment", "units": "kBtu", - "value": 522304.1 + "value": 2611539.47 }, { "name": "end_use_exterior_equipment", @@ -281,17 +281,17 @@ { "name": "end_use_fans", "units": "kBtu", - "value": 103425.8 + "value": 4942752.54 }, { "name": "end_use_pumps", "units": "kBtu", - "value": 1061621.52 + "value": 4408268.99 }, { "name": "end_use_heat_rejection", "units": "kBtu", - "value": 619455.36 + "value": 2515307.6 }, { "name": "end_use_humidification", @@ -321,12 +321,12 @@ { "name": "fuel_electricity", "units": "kBtu", - "value": 5810109.47 + "value": 29977863.18 }, { "name": "fuel_natural_gas", "units": "kBtu", - "value": 8409308.36 + "value": 66741224.96 }, { "name": "fuel_gasoline", @@ -391,12 +391,12 @@ { "name": "end_use_electricity_cooling", "units": "kWh", - "value": 873644.44 + "value": 3777230.56 }, { "name": "end_use_electricity_interior_lighting", "units": "kWh", - "value": 153072.22 + "value": 765366.67 }, { "name": "end_use_electricity_exterior_lighting", @@ -406,7 +406,7 @@ { "name": "end_use_electricity_interior_equipment", "units": "kWh", - "value": 153072.22 + "value": 765366.67 }, { "name": "end_use_electricity_exterior_equipment", @@ -416,17 +416,17 @@ { "name": "end_use_electricity_fans", "units": "kWh", - "value": 30311.11 + "value": 1448577.78 }, { "name": "end_use_electricity_pumps", "units": "kWh", - "value": 311130.56 + "value": 1291936.11 }, { "name": "end_use_electricity_heat_rejection", "units": "kWh", - "value": 181544.44 + "value": 737163.89 }, { "name": "end_use_electricity_humidification", @@ -456,7 +456,7 @@ { "name": "end_use_natural_gas_heating", "units": "therms", - "value": 84109.31 + "value": 667541.03 }, { "name": "end_use_natural_gas_cooling", @@ -531,12 +531,12 @@ { "name": "electricity_cooling_ip", "units": "kWh", - "value": 873645.28 + "value": 3777230.83 }, { "name": "electricity_interior_lighting_ip", "units": "kWh", - "value": 153073.56 + "value": 765367.5 }, { "name": "electricity_exterior_lighting_ip", @@ -546,7 +546,7 @@ { "name": "electricity_interior_equipment_ip", "units": "kWh", - "value": 153073.56 + "value": 765367.5 }, { "name": "electricity_exterior_equipment_ip", @@ -556,17 +556,17 @@ { "name": "electricity_fans_ip", "units": "kWh", - "value": 30309.76 + "value": 1448579.44 }, { "name": "electricity_pumps_ip", "units": "kWh", - "value": 311129.72 + "value": 1291935.28 }, { "name": "electricity_heat_rejection_ip", "units": "kWh", - "value": 181543.89 + "value": 737163.69 }, { "name": "electricity_humidification_ip", @@ -596,12 +596,12 @@ { "name": "electricity_ip", "units": "kWh", - "value": 1702775.76 + "value": 8785644.25 }, { "name": "natural_gas_heating_ip", "units": "MBtu", - "value": 8409.31 + "value": 66741.22 }, { "name": "natural_gas_cooling_ip", @@ -671,7 +671,7 @@ { "name": "natural_gas_ip", "units": "MBtu", - "value": 8409.31 + "value": 66741.22 }, { "name": "gasoline_heating_ip", @@ -1581,12 +1581,12 @@ { "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", "units": "ft^2", - "value": 7750.02 + "value": 29062.56 }, { "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", "units": "ft^2", - "value": 5166.68 + "value": 19375.04 }, { "name": "gross_window_wall_ratio", @@ -1606,7 +1606,7 @@ { "name": "space_type_baseline_model_space_type", "units": "ft^2", - "value": 53819.55 + "value": 269097.76 }, { "name": "exterior_lighting_total_power", @@ -1616,7 +1616,7 @@ { "name": "exterior_lighting_total_consumption", "units": "kWh", - "value": 4167300.0 + "value": 28345566.67 }, { "name": "inflation_approach", @@ -1630,7 +1630,7 @@ { "name": "annual_peak_electric_demand", "units": "kW", - "value": 281.0 + "value": 1825.07 }, { "name": "first_year_capital_cost", diff --git a/test/space_level_dsoa.py_3.8.0_out.osw b/test/space_level_dsoa.py_3.8.0_out.osw index 1d152b42..890fc9ce 100644 --- a/test/space_level_dsoa.py_3.8.0_out.osw +++ b/test/space_level_dsoa.py_3.8.0_out.osw @@ -12,7 +12,7 @@ " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", - " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", " ************* Beginning System Sizing Calculations", " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", @@ -62,7 +62,7 @@ " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " ], "file_paths": [ - "/home/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", "./files", "./weather", "../../files", @@ -194,32 +194,32 @@ { "name": "total_site_energy", "units": "kBtu", - "value": 31776914.86 + "value": 96720680.47 }, { "name": "net_site_energy", "units": "kBtu", - "value": 31776914.86 + "value": 96720680.47 }, { "name": "total_building_area", "units": "ft^2", - "value": 53819.55 + "value": 269097.76 }, { "name": "total_site_eui", "units": "kBtu/ft^2", - "value": 590.43 + "value": 359.43 }, { "name": "eui", "units": "kBtu/ft^2", - "value": 590.43 + "value": 359.43 }, { "name": "unmet_hours_during_heating", "units": "hr", - "value": 4828.25 + "value": 7390.25 }, { "name": "unmet_hours_during_cooling", @@ -229,7 +229,7 @@ { "name": "unmet_hours_during_occupied_heating", "units": "hr", - "value": 1646.0 + "value": 3900.25 }, { "name": "unmet_hours_during_occupied_cooling", @@ -249,17 +249,17 @@ { "name": "end_use_heating", "units": "kBtu", - "value": 23910155.98 + "value": 66741025.91 }, { "name": "end_use_cooling", "units": "kBtu", - "value": 3781117.36 + "value": 12889943.19 }, { "name": "end_use_interior_lighting", "units": "kBtu", - "value": 522304.1 + "value": 2611539.47 }, { "name": "end_use_exterior_lighting", @@ -269,7 +269,7 @@ { "name": "end_use_interior_equipment", "units": "kBtu", - "value": 522304.1 + "value": 2611539.47 }, { "name": "end_use_exterior_equipment", @@ -279,17 +279,17 @@ { "name": "end_use_fans", "units": "kBtu", - "value": 1200846.38 + "value": 4942752.54 }, { "name": "end_use_pumps", "units": "kBtu", - "value": 1174553.93 + "value": 4408496.47 }, { "name": "end_use_heat_rejection", "units": "kBtu", - "value": 665633.01 + "value": 2515373.94 }, { "name": "end_use_humidification", @@ -319,12 +319,12 @@ { "name": "fuel_electricity", "units": "kBtu", - "value": 7866758.88 + "value": 29979654.56 }, { "name": "fuel_natural_gas", "units": "kBtu", - "value": 23910155.98 + "value": 66741025.91 }, { "name": "fuel_gasoline", @@ -389,12 +389,12 @@ { "name": "end_use_electricity_cooling", "units": "kWh", - "value": 1108136.11 + "value": 3777669.44 }, { "name": "end_use_electricity_interior_lighting", "units": "kWh", - "value": 153072.22 + "value": 765366.67 }, { "name": "end_use_electricity_exterior_lighting", @@ -404,7 +404,7 @@ { "name": "end_use_electricity_interior_equipment", "units": "kWh", - "value": 153072.22 + "value": 765366.67 }, { "name": "end_use_electricity_exterior_equipment", @@ -414,17 +414,17 @@ { "name": "end_use_electricity_fans", "units": "kWh", - "value": 351933.33 + "value": 1448577.78 }, { "name": "end_use_electricity_pumps", "units": "kWh", - "value": 344227.78 + "value": 1292002.78 }, { "name": "end_use_electricity_heat_rejection", "units": "kWh", - "value": 195077.78 + "value": 737183.33 }, { "name": "end_use_electricity_humidification", @@ -454,7 +454,7 @@ { "name": "end_use_natural_gas_heating", "units": "therms", - "value": 239147.69 + "value": 667539.03 }, { "name": "end_use_natural_gas_cooling", @@ -529,12 +529,12 @@ { "name": "electricity_cooling_ip", "units": "kWh", - "value": 1108135.56 + "value": 3777669.44 }, { "name": "electricity_interior_lighting_ip", "units": "kWh", - "value": 153073.56 + "value": 765367.5 }, { "name": "electricity_exterior_lighting_ip", @@ -544,7 +544,7 @@ { "name": "electricity_interior_equipment_ip", "units": "kWh", - "value": 153073.56 + "value": 765367.5 }, { "name": "electricity_exterior_equipment_ip", @@ -554,17 +554,17 @@ { "name": "electricity_fans_ip", "units": "kWh", - "value": 351930.86 + "value": 1448579.44 }, { "name": "electricity_pumps_ip", "units": "kWh", - "value": 344227.33 + "value": 1292001.39 }, { "name": "electricity_heat_rejection_ip", "units": "kWh", - "value": 195077.42 + "value": 737182.61 }, { "name": "electricity_humidification_ip", @@ -594,12 +594,12 @@ { "name": "electricity_ip", "units": "kWh", - "value": 2305518.28 + "value": 8786167.89 }, { "name": "natural_gas_heating_ip", "units": "MBtu", - "value": 23910.17 + "value": 66741.03 }, { "name": "natural_gas_cooling_ip", @@ -669,7 +669,7 @@ { "name": "natural_gas_ip", "units": "MBtu", - "value": 23910.17 + "value": 66741.03 }, { "name": "gasoline_heating_ip", @@ -1579,12 +1579,12 @@ { "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", "units": "ft^2", - "value": 7750.02 + "value": 29062.56 }, { "name": "space_type_baseline_model_space_type", "units": "ft^2", - "value": 53819.55 + "value": 269097.76 }, { "name": "exterior_lighting_total_power", @@ -1594,7 +1594,7 @@ { "name": "exterior_lighting_total_consumption", "units": "kWh", - "value": 9312894.44 + "value": 28346033.33 }, { "name": "inflation_approach", @@ -1608,7 +1608,7 @@ { "name": "annual_peak_electric_demand", "units": "kW", - "value": 371.55 + "value": 1825.08 }, { "name": "first_year_capital_cost", @@ -1628,7 +1628,7 @@ ], "step_warnings": [ "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", - "/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + "/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" ] } } diff --git a/test/space_level_dsoa.py_3.9.0_out.osw b/test/space_level_dsoa.py_3.9.0_out.osw index 9985d8dd..887bf758 100644 --- a/test/space_level_dsoa.py_3.9.0_out.osw +++ b/test/space_level_dsoa.py_3.9.0_out.osw @@ -12,7 +12,7 @@ " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", - " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", " ************* Beginning System Sizing Calculations", " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", @@ -62,7 +62,7 @@ " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " ], "file_paths": [ - "/home/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", "./files", "./weather", "../../files", @@ -194,32 +194,32 @@ { "name": "total_site_energy", "units": "kBtu", - "value": 14224640.3 + "value": 96743067.91 }, { "name": "net_site_energy", "units": "kBtu", - "value": 14224640.3 + "value": 96743067.91 }, { "name": "total_building_area", "units": "ft^2", - "value": 53819.55 + "value": 269097.76 }, { "name": "total_site_eui", "units": "kBtu/ft^2", - "value": 264.3 + "value": 359.51 }, { "name": "eui", "units": "kBtu/ft^2", - "value": 264.3 + "value": 359.51 }, { "name": "unmet_hours_during_heating", "units": "hr", - "value": 116.25 + "value": 7390.25 }, { "name": "unmet_hours_during_cooling", @@ -229,7 +229,7 @@ { "name": "unmet_hours_during_occupied_heating", "units": "hr", - "value": 15.25 + "value": 3900.25 }, { "name": "unmet_hours_during_occupied_cooling", @@ -249,17 +249,17 @@ { "name": "end_use_heating", "units": "kBtu", - "value": 8409232.53 + "value": 66741025.91 }, { "name": "end_use_cooling", "units": "kBtu", - "value": 2980998.58 + "value": 12889801.02 }, { "name": "end_use_interior_lighting", "units": "kBtu", - "value": 522304.1 + "value": 2611539.47 }, { "name": "end_use_exterior_lighting", @@ -269,7 +269,7 @@ { "name": "end_use_interior_equipment", "units": "kBtu", - "value": 522304.1 + "value": 2611539.47 }, { "name": "end_use_exterior_equipment", @@ -279,17 +279,17 @@ { "name": "end_use_fans", "units": "kBtu", - "value": 103425.8 + "value": 4942752.54 }, { "name": "end_use_pumps", "units": "kBtu", - "value": 1065081.05 + "value": 4422306.16 }, { "name": "end_use_heat_rejection", "units": "kBtu", - "value": 621284.64 + "value": 2524084.38 }, { "name": "end_use_humidification", @@ -319,12 +319,12 @@ { "name": "fuel_electricity", "units": "kBtu", - "value": 5815407.77 + "value": 30002042.0 }, { "name": "fuel_natural_gas", "units": "kBtu", - "value": 8409232.53 + "value": 66741025.91 }, { "name": "fuel_gasoline", @@ -389,12 +389,12 @@ { "name": "end_use_electricity_cooling", "units": "kWh", - "value": 873644.44 + "value": 3777627.78 }, { "name": "end_use_electricity_interior_lighting", "units": "kWh", - "value": 153072.22 + "value": 765366.67 }, { "name": "end_use_electricity_exterior_lighting", @@ -404,7 +404,7 @@ { "name": "end_use_electricity_interior_equipment", "units": "kWh", - "value": 153072.22 + "value": 765366.67 }, { "name": "end_use_electricity_exterior_equipment", @@ -414,17 +414,17 @@ { "name": "end_use_electricity_fans", "units": "kWh", - "value": 30311.11 + "value": 1448577.78 }, { "name": "end_use_electricity_pumps", "units": "kWh", - "value": 312144.44 + "value": 1296050.0 }, { "name": "end_use_electricity_heat_rejection", "units": "kWh", - "value": 182080.56 + "value": 739736.11 }, { "name": "end_use_electricity_humidification", @@ -454,7 +454,7 @@ { "name": "end_use_natural_gas_heating", "units": "therms", - "value": 84108.55 + "value": 667539.03 }, { "name": "end_use_natural_gas_cooling", @@ -529,12 +529,12 @@ { "name": "electricity_cooling_ip", "units": "kWh", - "value": 873643.06 + "value": 3777625.0 }, { "name": "electricity_interior_lighting_ip", "units": "kWh", - "value": 153073.56 + "value": 765367.5 }, { "name": "electricity_exterior_lighting_ip", @@ -544,7 +544,7 @@ { "name": "electricity_interior_equipment_ip", "units": "kWh", - "value": 153073.56 + "value": 765367.5 }, { "name": "electricity_exterior_equipment_ip", @@ -554,17 +554,17 @@ { "name": "electricity_fans_ip", "units": "kWh", - "value": 30309.76 + "value": 1448579.44 }, { "name": "electricity_pumps_ip", "units": "kWh", - "value": 312145.81 + "value": 1296051.11 }, { "name": "electricity_heat_rejection_ip", "units": "kWh", - "value": 182080.33 + "value": 739736.44 }, { "name": "electricity_humidification_ip", @@ -594,12 +594,12 @@ { "name": "electricity_ip", "units": "kWh", - "value": 1704326.06 + "value": 8792727.0 }, { "name": "natural_gas_heating_ip", "units": "MBtu", - "value": 8409.23 + "value": 66741.03 }, { "name": "natural_gas_cooling_ip", @@ -669,7 +669,7 @@ { "name": "natural_gas_ip", "units": "MBtu", - "value": 8409.23 + "value": 66741.03 }, { "name": "gasoline_heating_ip", @@ -1579,12 +1579,12 @@ { "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", "units": "ft^2", - "value": 7750.02 + "value": 29062.56 }, { "name": "space_type_baseline_model_space_type", "units": "ft^2", - "value": 53819.55 + "value": 269097.76 }, { "name": "exterior_lighting_total_power", @@ -1594,7 +1594,7 @@ { "name": "exterior_lighting_total_consumption", "units": "kWh", - "value": 4168830.56 + "value": 28352594.44 }, { "name": "inflation_approach", @@ -1608,7 +1608,7 @@ { "name": "annual_peak_electric_demand", "units": "kW", - "value": 281.15 + "value": 1825.88 }, { "name": "first_year_capital_cost", @@ -1628,7 +1628,7 @@ ], "step_warnings": [ "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", - "/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + "/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" ] } } diff --git a/test/space_level_dsoa.rb_3.0.0_out.osw b/test/space_level_dsoa.rb_3.0.0_out.osw new file mode 100644 index 00000000..709a8592 --- /dev/null +++ b/test/space_level_dsoa.rb_3.0.0_out.osw @@ -0,0 +1,1022 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 9.3.0-baff08990c, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Areas differ from calculated Zone Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 20 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.2.11" + }, + { + "name": "workflow_gem_version", + "value": "2.0.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120625907.8 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120625907.8 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.26 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.26 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7331.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3843.75 + }, + { + "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": 97550058.36 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8814007.31 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2637452.79 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1458538.9 + }, + { + "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": 23075839.96 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97550058.36 + }, + { + "name": "fuel_additional_fuel", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2583130.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 772961.11 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427455.56 + }, + { + "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": 975688.8 + }, + { + "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": 2583133.94 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 772960.83 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427455.76 + }, + { + "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": 6762864.97 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97550.04 + }, + { + "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": 97550.04 + }, + { + "name": "additional_fuel_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35351963.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2574.1 + }, + { + "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/space_level_dsoa.rb_3.0.1_out.osw b/test/space_level_dsoa.rb_3.0.1_out.osw new file mode 100644 index 00000000..709a8592 --- /dev/null +++ b/test/space_level_dsoa.rb_3.0.1_out.osw @@ -0,0 +1,1022 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 9.3.0-baff08990c, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Areas differ from calculated Zone Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 20 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.2.11" + }, + { + "name": "workflow_gem_version", + "value": "2.0.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120625907.8 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120625907.8 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.26 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.26 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7331.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3843.75 + }, + { + "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": 97550058.36 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8814007.31 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2637452.79 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1458538.9 + }, + { + "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": 23075839.96 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97550058.36 + }, + { + "name": "fuel_additional_fuel", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_cooling", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "fuel_district_heating", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2583130.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 772961.11 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427455.56 + }, + { + "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": 975688.8 + }, + { + "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": 2583133.94 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 772960.83 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427455.76 + }, + { + "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": 6762864.97 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97550.04 + }, + { + "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": 97550.04 + }, + { + "name": "additional_fuel_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "additional_fuel_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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35351963.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2574.1 + }, + { + "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/space_level_dsoa.rb_3.1.0_out.osw b/test/space_level_dsoa.rb_3.1.0_out.osw new file mode 100644 index 00000000..79688545 --- /dev/null +++ b/test/space_level_dsoa.rb_3.1.0_out.osw @@ -0,0 +1,1582 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 9.4.0-998c4b761e, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Areas differ from calculated Zone Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 20 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.2.12" + }, + { + "name": "workflow_gem_version", + "value": "2.1.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120653792.58 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120653792.58 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.36 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.36 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7331.25 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3843.5 + }, + { + "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": 97549176.89 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8825665.46 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654560.89 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1458548.38 + }, + { + "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": 23104615.68 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97549176.89 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2586547.22 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 777975.0 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427458.33 + }, + { + "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": 975679.99 + }, + { + "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": 2586547.67 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 777974.36 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427457.58 + }, + { + "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": 6771294.05 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97549.16 + }, + { + "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": 97549.16 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35360136.11 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2578.32 + }, + { + "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/space_level_dsoa.rb_3.2.0_out.osw b/test/space_level_dsoa.rb_3.2.0_out.osw new file mode 100644 index 00000000..840c3994 --- /dev/null +++ b/test/space_level_dsoa.rb_3.2.0_out.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Areas differ from calculated Zone Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.2.13" + }, + { + "name": "workflow_gem_version", + "value": "2.2.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120653792.58 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120653792.58 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.36 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.36 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7331.25 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3843.5 + }, + { + "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": 97549176.89 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8825665.46 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654560.89 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1458548.38 + }, + { + "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": 23104615.68 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97549176.89 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2586547.22 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 777975.0 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427458.33 + }, + { + "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": 975679.99 + }, + { + "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": 2586547.67 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 777974.36 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427457.58 + }, + { + "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": 6771294.05 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97549.16 + }, + { + "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": 97549.16 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35360136.11 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2578.32 + }, + { + "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/space_level_dsoa.rb_3.2.1_out.osw b/test/space_level_dsoa.rb_3.2.1_out.osw new file mode 100644 index 00000000..027e1c55 --- /dev/null +++ b/test/space_level_dsoa.rb_3.2.1_out.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Areas differ from calculated Zone Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.2.14" + }, + { + "name": "workflow_gem_version", + "value": "2.2.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120653792.58 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120653792.58 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.36 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.36 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7331.25 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3843.5 + }, + { + "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": 97549176.89 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8825665.46 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654560.89 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1458548.38 + }, + { + "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": 23104615.68 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97549176.89 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2586547.22 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 777975.0 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427458.33 + }, + { + "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": 975679.99 + }, + { + "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": 2586547.67 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 777974.36 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427457.58 + }, + { + "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": 6771294.05 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97549.16 + }, + { + "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": 97549.16 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35360136.11 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2578.32 + }, + { + "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/space_level_dsoa.rb_3.3.0_out.osw b/test/space_level_dsoa.rb_3.3.0_out.osw new file mode 100644 index 00000000..d5464cdc --- /dev/null +++ b/test/space_level_dsoa.rb_3.3.0_out.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 9.6.0-4b123cf80f, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Areas differ from calculated Zone Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.2.15" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120705657.13 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120705657.13 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.56 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.56 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7325.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3837.75 + }, + { + "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": 97600842.4 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8825674.94 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654750.45 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1458548.38 + }, + { + "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": 23104814.73 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97600842.4 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2586550.0 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778030.56 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427458.33 + }, + { + "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": 976196.74 + }, + { + "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": 2586547.67 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778030.58 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427457.58 + }, + { + "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": 6771350.27 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97600.82 + }, + { + "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": 97600.82 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35375336.11 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2578.33 + }, + { + "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/space_level_dsoa.rb_3.4.0_out.osw b/test/space_level_dsoa.rb_3.4.0_out.osw new file mode 100644 index 00000000..4a3cdc43 --- /dev/null +++ b/test/space_level_dsoa.rb_3.4.0_out.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 22.1.0-ed759b17ee, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.2.16" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7325.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3837.75 + }, + { + "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": 97600880.32 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8823220.09 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654740.97 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1457913.34 + }, + { + "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": 23101715.36 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97600880.32 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2585830.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778027.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427272.22 + }, + { + "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": 976197.12 + }, + { + "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": 2585831.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778029.19 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427271.94 + }, + { + "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": 6770446.57 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97600.85 + }, + { + "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": 97600.85 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35374438.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2576.78 + }, + { + "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/space_level_dsoa.rb_3.5.0_out.osw b/test/space_level_dsoa.rb_3.5.0_out.osw new file mode 100644 index 00000000..f22a8789 --- /dev/null +++ b/test/space_level_dsoa.rb_3.5.0_out.osw @@ -0,0 +1,1658 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 22.2.0-aa78da9668, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.3.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 96719088.14 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 96719088.14 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 359.42 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 359.42 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7397.75 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3907.75 + }, + { + "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": 66741224.96 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 12888445.64 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 4408268.99 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 2515307.6 + }, + { + "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": 29977863.18 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 66741224.96 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 3777230.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 1291936.11 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 737163.89 + }, + { + "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": 667541.03 + }, + { + "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": 3777230.83 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 1291935.28 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 737163.69 + }, + { + "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": 8785644.25 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 66741.22 + }, + { + "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": 66741.22 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 28345566.67 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 1825.07 + }, + { + "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/space_level_dsoa.rb_3.5.1_out.osw b/test/space_level_dsoa.rb_3.5.1_out.osw new file mode 100644 index 00000000..f22a8789 --- /dev/null +++ b/test/space_level_dsoa.rb_3.5.1_out.osw @@ -0,0 +1,1658 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 22.2.0-aa78da9668, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.3.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 96719088.14 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 96719088.14 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 359.42 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 359.42 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7397.75 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3907.75 + }, + { + "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": 66741224.96 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 12888445.64 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 4408268.99 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 2515307.6 + }, + { + "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": 29977863.18 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 66741224.96 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 3777230.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 1291936.11 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 737163.89 + }, + { + "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": 667541.03 + }, + { + "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": 3777230.83 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 1291935.28 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 737163.69 + }, + { + "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": 8785644.25 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 66741.22 + }, + { + "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": 66741.22 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 28345566.67 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 1825.07 + }, + { + "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/space_level_dsoa.rb_3.6.0_out.osw b/test/space_level_dsoa.rb_3.6.0_out.osw new file mode 100644 index 00000000..78f22b00 --- /dev/null +++ b/test/space_level_dsoa.rb_3.6.0_out.osw @@ -0,0 +1,1658 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.1.0-87ed9199d4, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.4.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 50091357.6 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 50091357.6 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 186.15 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 186.15 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 388.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 46.5 + }, + { + "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": 25350402.0 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 12284288.05 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 425693.1 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 4259575.44 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 2548310.59 + }, + { + "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": 24740955.6 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 25350402.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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 3600169.44 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 124758.33 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 1248358.33 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 746836.11 + }, + { + "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": 253552.93 + }, + { + "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": 3600169.17 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 124757.17 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 1248356.94 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 746836.94 + }, + { + "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": 7250855.22 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 25350.4 + }, + { + "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": 25350.4 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 14680327.78 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 1241.65 + }, + { + "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/space_level_dsoa.rb_3.6.1_out.osw b/test/space_level_dsoa.rb_3.6.1_out.osw new file mode 100644 index 00000000..2efe8820 --- /dev/null +++ b/test/space_level_dsoa.rb_3.6.1_out.osw @@ -0,0 +1,1658 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.1.0-87ed9199d4, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.4.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 96719088.14 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 96719088.14 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 359.42 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 359.42 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7397.75 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3907.75 + }, + { + "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": 66741224.96 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 12888445.64 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 4408268.99 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 2515307.6 + }, + { + "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": 29977863.18 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 66741224.96 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 3777230.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 1291936.11 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 737163.89 + }, + { + "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": 667541.03 + }, + { + "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": 3777230.83 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 1291935.28 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 737163.69 + }, + { + "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": 8785644.25 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 66741.22 + }, + { + "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": 66741.22 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 28345566.67 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 1825.07 + }, + { + "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/space_level_dsoa.rb_3.7.0_out.osw b/test/space_level_dsoa.rb_3.7.0_out.osw new file mode 100644 index 00000000..1a78c548 --- /dev/null +++ b/test/space_level_dsoa.rb_3.7.0_out.osw @@ -0,0 +1,1658 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.2.0-7636e6b3e9, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 20 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.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": 96719088.14 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 96719088.14 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 359.42 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 359.42 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7397.75 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3907.75 + }, + { + "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": 66741224.96 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 12888445.64 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 4408268.99 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 2515307.6 + }, + { + "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": 29977863.18 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 66741224.96 + }, + { + "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": 3777230.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 1291936.11 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 737163.89 + }, + { + "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": 667541.03 + }, + { + "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": 3777230.83 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 1291935.28 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 737163.69 + }, + { + "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": 8785644.25 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 66741.22 + }, + { + "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": 66741.22 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 28345566.67 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 1825.07 + }, + { + "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/space_level_dsoa.rb_3.8.0_out.osw b/test/space_level_dsoa.rb_3.8.0_out.osw new file mode 100644 index 00000000..f68f4de9 --- /dev/null +++ b/test/space_level_dsoa.rb_3.8.0_out.osw @@ -0,0 +1,1637 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 24.1.0-9d7789a3ac, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATINGWATER:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 8 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.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 20 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.6.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 96720680.47 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 96720680.47 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 359.43 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 359.43 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7390.25 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3900.25 + }, + { + "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": 66741025.91 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 12889943.19 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 4408496.47 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 2515373.94 + }, + { + "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": 29979654.56 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 66741025.91 + }, + { + "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": 3777669.44 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 1292002.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 737183.33 + }, + { + "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": 667539.03 + }, + { + "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": 3777669.44 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 1292001.39 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 737182.61 + }, + { + "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": 8786167.89 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 66741.03 + }, + { + "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": 66741.03 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 28346033.33 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 1825.08 + }, + { + "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": [ + "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", + "/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file diff --git a/test/space_level_dsoa.rb_3.9.0_out.osw b/test/space_level_dsoa.rb_3.9.0_out.osw new file mode 100644 index 00000000..78588de7 --- /dev/null +++ b/test/space_level_dsoa.rb_3.9.0_out.osw @@ -0,0 +1,1637 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 24.2.0-94a887817b, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** CalculateZoneVolume: 1 zone is not fully enclosed. For more details use: Output:Diagnostics,DisplayExtrawarnings; ", + " ** Warning ** CheckUsedConstructions: There are 7 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATINGWATER:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 8 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/var/simdata/openstudio/OpenStudio-resources/testruns/space_level_dsoa.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 20 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.7.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 50112569.75 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 50112569.75 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 186.22 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 186.22 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 388.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 46.5 + }, + { + "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": 25350269.31 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 12284051.09 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 425693.1 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 4273783.22 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 2555694.08 + }, + { + "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": 24762300.44 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 25350269.31 + }, + { + "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": 3600100.0 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 124758.33 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 1252522.22 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 749000.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": 253551.61 + }, + { + "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": 3600097.78 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 124757.17 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 1252522.22 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 748999.17 + }, + { + "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": 7257111.33 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 25350.27 + }, + { + "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": 25350.27 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 14686544.44 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 1242.28 + }, + { + "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": [ + "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", + "/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/var/simdata/openstudio/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file From f209cdb304940965d2ae94c049bb45a273b0ebc0 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Mon, 26 May 2025 23:24:24 +0200 Subject: [PATCH 07/11] Commit changes to the docker stuff that I made to be able to run on mac arm64 --- launch_all.sh | 37 +++++++++++++++++++++++++++++-------- launch_docker.sh | 44 +++++++++++++++++++++++++++----------------- 2 files changed, 56 insertions(+), 25 deletions(-) diff --git a/launch_all.sh b/launch_all.sh index b5f7afc7..353dc0bb 100755 --- a/launch_all.sh +++ b/launch_all.sh @@ -8,15 +8,36 @@ # Source the file that has the colors source colors.sh +unameOut="$(uname -s)" +case "${unameOut}" in + Linux*) machine=Linux;; + Darwin*) machine=Darwin;; + CYGWIN*|MINGW*|MSYS*) machine=Windows;; + *) machine="UNKNOWN:${unameOut}" +esac + +if [[ "$(arch)" == "arm64" ]]; then + platform="--platform linux/amd64" +fi + ####################################################################################### # H A R D C O D E D A R G U M E N T S ######################################################################################## # All versions you want to run # 2.0.4 is supported, but it's very broken, transition to 2.0.5 is likely going to just fail, so remove it -declare -a all_versions=("2.0.5" "2.1.0" "2.1.1" "2.1.2" "2.2.0" "2.2.1" "2.2.2" "2.3.0" "2.3.1" "2.4.0" "2.4.1" "2.5.0" "2.5.1" "2.5.2" "2.6.0" "2.6.1" "2.7.0" "2.7.1" "2.8.0" "2.8.1" "2.9.0" "2.9.1" "3.0.0" "3.0.1" "3.1.0" "3.2.0" "3.2.1" "3.3.0" "3.4.0" "3.5.0" "3.5.1") +declare -a all_versions=( + "2.0.5" "2.1.0" "2.1.1" "2.1.2" "2.2.0" "2.2.1" "2.2.2" "2.3.0" "2.3.1" "2.4.0" "2.4.1" "2.5.0" + "2.5.1" "2.5.2" "2.6.0" "2.6.1" "2.7.0" "2.7.1" "2.8.0" "2.8.1" "2.9.0" "2.9.1" + "3.0.0" "3.0.1" "3.1.0" "3.2.0" "3.2.1" "3.3.0" "3.4.0" "3.5.0" "3.5.1" "3.6.0" "3.6.1" "3.7.0" "3.8.0" "3.9.0" +) + # declare -a all_versions=("3.0.0" "3.0.1" "3.1.0") +#for os_version in "${all_versions[@]}"; do +# /Applications/OpenStudio-${os_version}/bin/openstudio model_tests.rb -n /space_level_dsoa/ +#done + # Do you want to ask the user to set these arguments? # If false, will just use the hardcoded ones ask_user=true @@ -28,7 +49,7 @@ force_rebuild=false test_file="model_tests.rb" # Test filter: passed as model_tests -n /$filter/ -filter="" +filter="space_level_dsoa" # Run only osms tests: filter="_osm" # Delete custom/openstudio:$os_version image after having used it? @@ -238,13 +259,13 @@ for os_version in "${all_versions[@]}"; do # If the docker image doesn't already exists if [ -z $(docker images -q $os_image_name) ]; then echo -e "* Building the $os_image_str from Dockerfile" - docker build -t $os_image_name . + docker build $platform -t $os_image_name . else if [ "$force_rebuild" = true ]; then echo -e "* Rebuilding the image $os_image_str from Dockerfile" docker rmi $os_image_name > $OUT - docker build -t $os_image_name . + docker build $platform -t $os_image_name . fi echo fi @@ -260,9 +281,9 @@ for os_version in "${all_versions[@]}"; do echo -e "* Launching the $os_container_str" if [ "$use_mongo" = true ]; then # Launch, with link to the mongo one - docker run --name $os_container_name --cpus="$n_cores" --link $mongo_container_name:mongo -v `pwd`/test:/root/test -d -it --rm $os_image_name /bin/bash > $OUT + docker run $platform --name $os_container_name --cpus="$n_cores" --link $mongo_container_name:mongo -v `pwd`/test:/var/simdata/openstudio/OpenStudio-resources/test -d -it --rm $os_image_name /bin/bash > $OUT else - docker run --name $os_container_name --cpus="$n_cores" -v `pwd`/test:/root/test -d -it --rm $os_image_name /bin/bash > $OUT + docker run $platform --name $os_container_name --cpus="$n_cores" -v `pwd`/test:/var/simdata/openstudio/OpenStudio-resources/test -d -it --rm $os_image_name /bin/bash > $OUT fi # Chmod execute the script @@ -312,8 +333,8 @@ for os_version in "${all_versions[@]}"; do done -# On other systems than windows, fix permissions -if [[ "$(uname)" != MINGW* ]]; then +# On other Linux only, fix permissions +if [[ $machine == Linux ]]; then echo echo -e "${On_Blue}Fixing ownership: setting it to user=$USER and chmod=664 (requires sudo)${Color_Off}" sudo chown -R $USER * diff --git a/launch_docker.sh b/launch_docker.sh index 81a9b4e6..d094fcf8 100755 --- a/launch_docker.sh +++ b/launch_docker.sh @@ -13,6 +13,18 @@ source colors.sh # Switch this to true to debug. verbose=false +unameOut="$(uname -s)" +case "${unameOut}" in + Linux*) machine=Linux;; + Darwin*) machine=Darwin;; + CYGWIN*|MINGW*|MSYS*) machine=Windows;; + *) machine="UNKNOWN:${unameOut}" +esac + +if [[ "$(arch)" == "arm64" ]]; then + platform="--platform linux/amd64" +fi + ######################################################################################## # Verbosity @@ -31,9 +43,9 @@ if [[ "$(uname)" = MINGW* ]]; then fi docker() { - export MSYS_NO_PATHCONV=1 - ("docker.exe" "$@") - export MSYS_NO_PATHCONV=0 + export MSYS_NO_PATHCONV=1 + ("docker.exe" "$@") + export MSYS_NO_PATHCONV=0 } fi @@ -231,11 +243,11 @@ function cleanup() { stop_running_container "$mongo_container_name" "$mongo_container_str" N - if [[ "$(uname)" != MINGW* ]]; then - echo - echo -e "${On_Blue}Fixing ownership: setting it to user=$USER and chmod=664 (requires sudo)${Color_Off}" - sudo chown -R $USER * - sudo find ./test/ -type f -exec chmod 664 {} \; + if [[ $machine == Linux ]]; then + echo + echo -e "${On_Blue}Fixing ownership: setting it to user=$USER and chmod=664 (requires sudo)${Color_Off}" + sudo chown -R $USER:$USER ./test/ + sudo find ./test/ -type f -exec chmod 664 {} \; fi exit $1 @@ -326,7 +338,7 @@ if [ -z $(docker images -q $os_image_name) ]; then fi echo -e "* Building the $os_image_str from Dockerfile" - docker build -t $os_image_name . + docker build $platform -t $os_image_name . else echo -e "The docker $os_image_str already exists" @@ -337,7 +349,7 @@ else then echo -e "* Rebuilding the image $os_image_str from Dockerfile" docker rmi $os_image_name > $OUT - docker build -t $os_image_name . + docker build $platform -t $os_image_name . fi echo fi @@ -355,9 +367,10 @@ fi echo -e "* Launching the $os_container_str" if [ "$use_mongo" = true ]; then # Launch, with link to the mongo one - docker run --name $os_container_name --link $mongo_container_name:mongo -v `pwd`/test:/root/test -d -it --rm $os_image_name /bin/bash > $OUT + docker run $platform --name $os_container_name --link $mongo_container_name:mongo -v `pwd`/test:/var/simdata/openstudio/OpenStudio-resources -d -it --rm $os_image_name /bin/bash > $OUT else - docker run --name $os_container_name -v `pwd`/test:/root/test -d -it --rm $os_image_name /bin/bash > $OUT + # docker run $platform --name $os_container_name -v `pwd`/test:/root/test -d -it --rm $os_image_name /bin/bash > $OUT + docker run $platform --name $os_container_name -v `pwd`/test:/var/simdata/openstudio/OpenStudio-resources/test -d -it --rm $os_image_name /bin/bash > $OUT fi # Chmod execute the script @@ -400,9 +413,9 @@ echo # (optional) move to a new line if [[ ! $REPLY =~ ^[Nn]$ ]] then if [[ "$(uname)" = MINGW* ]]; then - winpty docker attach $os_container_name + winpty docker attach $os_container_name else - docker attach $os_container_name + docker attach $os_container_name fi fi @@ -410,6 +423,3 @@ fi # Run cleanup when normal execution cleanup 0 - - - From 9a59ce93e492727f49cd87f58109420adc81cf77 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Mon, 26 May 2025 23:37:48 +0200 Subject: [PATCH 08/11] Relax pct threshold for the space_level_dsoa, we know it's broken in 3.5.0 to 3.10.0 --- model_tests.rb | 7 ++++++- test_helpers.rb | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/model_tests.rb b/model_tests.rb index 607c01ec..71db6a5f 100644 --- a/model_tests.rb +++ b/model_tests.rb @@ -1804,7 +1804,12 @@ def _helper_space_level_dsoa(filename:) assert_equal('Zone with 5 Spaces DSOA Space List', atu.getString(dsoa_field_idx).get) cp_out_osw = File.join($OutOSWDir, "#{filename}_#{$SdkVersion}_out#{$Custom_tag}.osw") - compare_osw_eui_with_previous_version(cp_out_osw) + # We know it was broken between 3.5.0 and 3.10.0 + eui_pct_threshold = 0.5 + if Gem::Version.new($SdkVersion) >= Gem::Version.new('3.5.0') && Gem::Version.new($SdkVersion) <= Gem::Version.new('3.10.0') + eui_pct_threshold = 200.0 + end + compare_osw_eui_with_previous_version(cp_out_osw, eui_pct_threshold: eui_pct_threshold) end def test_space_level_dsoa_rb diff --git a/test_helpers.rb b/test_helpers.rb index 2820f823..43a6537d 100644 --- a/test_helpers.rb +++ b/test_helpers.rb @@ -470,7 +470,7 @@ def parse_total_site_energy(out_osw_path) # Will look for the previous one in there based on $SdkPreviousVersion # Will remove custom tags to find previous version, so that it uses the # previous **official** run -def compare_osw_eui_with_previous_version(cp_out_osw) +def compare_osw_eui_with_previous_version(cp_out_osw, eui_pct_threshold: $EuiPctThreshold) # We can't just replace the versions, in case there's a custom tag # which is almost guaranteed to not exist in the previous version # So instead, we try to compare to the last **official** run @@ -493,7 +493,7 @@ def compare_osw_eui_with_previous_version(cp_out_osw) pct_diff = 100 * (new_eui - old_eui) / old_eui.to_f - assert (pct_diff < $EuiPctThreshold), "#{pct_diff.round(3)}% difference in EUI is too large for #{cp_out_osw}" \ + assert (pct_diff < eui_pct_threshold), "#{pct_diff.round(3)}% difference in EUI is too large for #{cp_out_osw}" \ " between #{$SdkPreviousVersion} and #{$SdkVersion}" end From 85be1323477f9918a0f4dd48c5fdb68edbbb8cb3 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Mon, 26 May 2025 23:46:35 +0200 Subject: [PATCH 09/11] Adjust highlevel_tests and register OSM in SDD_tests --- SDD_tests.rb | 4 ++++ highlevel_tests.rb | 11 ++++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/SDD_tests.rb b/SDD_tests.rb index 22101d50..59a46d9e 100644 --- a/SDD_tests.rb +++ b/SDD_tests.rb @@ -725,6 +725,10 @@ def test_FT_solar_collector_integralcollectorstorage sdd_ft_test('solar_collector_integralcollectorstorage.osm') end + def test_FT_space_level_dsoa + sdd_ft_test('space_level_dsoa.osm') + end + def test_FT_space_load_instances sdd_ft_test('space_load_instances.osm') end diff --git a/highlevel_tests.rb b/highlevel_tests.rb index 2845a49d..62b3ba78 100644 --- a/highlevel_tests.rb +++ b/highlevel_tests.rb @@ -26,7 +26,10 @@ def test_osms_are_defined_sim_tests missing_osms = all_model_filenames - osms_in_sim_test # These are the OSMS we expect NOT to find in a sim_test - expected_sim_missing = [] + expected_sim_missing = [ + # Unusual structure + 'space_level_dsoa.osm' + ] missing_osms -= expected_sim_missing assert missing_osms.empty?, "Error in model_tests.rb: The following OSMs are not in any sim_tests:\n * #{missing_osms.join("\n * ")}" @@ -48,7 +51,8 @@ def test_rbs_are_defined_sim_tests 'autosize_hvac.rb', # This one has an unusual structure, and I don't feel like playing with the # regex above any more - 'outputcontrol_files.rb' + 'outputcontrol_files.rb', + 'space_level_dsoa.rb' ] missing_rbs -= expected_sim_missing @@ -68,7 +72,8 @@ def test_pys_are_defined_sim_tests missing_pys = all_python_filenames - pys_in_sim_test expected_sim_missing = [ - 'outputcontrol_files.py' + 'outputcontrol_files.py', + 'space_level_dsoa.py' ] missing_pys -= expected_sim_missing From ea34a46e78db3b2503ec2d13eb88f670787a4654 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Tue, 27 May 2025 00:09:56 +0200 Subject: [PATCH 10/11] Run the withoutSpaces case again down to 3.5.0 --- ...level_dsoa.osm_3.5.0_out_WithoutSpaces.osw | 1659 ++++++++++++++++ ...level_dsoa.osm_3.5.1_out_WithoutSpaces.osw | 1659 ++++++++++++++++ ...level_dsoa.osm_3.6.0_out_WithoutSpaces.osw | 1659 ++++++++++++++++ ...level_dsoa.osm_3.6.1_out_WithoutSpaces.osw | 1659 ++++++++++++++++ ...level_dsoa.osm_3.7.0_out_WithoutSpaces.osw | 1663 +++++++++++++++++ ...level_dsoa.osm_3.8.0_out_WithoutSpaces.osw | 1642 ++++++++++++++++ ...level_dsoa.osm_3.9.0_out_WithoutSpaces.osw | 1642 ++++++++++++++++ ..._level_dsoa.py_3.7.0_out_WithoutSpaces.osw | 82 +- ..._level_dsoa.py_3.8.0_out_WithoutSpaces.osw | 82 +- ..._level_dsoa.py_3.9.0_out_WithoutSpaces.osw | 82 +- ..._level_dsoa.rb_3.5.0_out_WithoutSpaces.osw | 1659 ++++++++++++++++ ..._level_dsoa.rb_3.5.1_out_WithoutSpaces.osw | 1659 ++++++++++++++++ ..._level_dsoa.rb_3.6.0_out_WithoutSpaces.osw | 1659 ++++++++++++++++ ..._level_dsoa.rb_3.6.1_out_WithoutSpaces.osw | 1659 ++++++++++++++++ ..._level_dsoa.rb_3.7.0_out_WithoutSpaces.osw | 1663 +++++++++++++++++ ..._level_dsoa.rb_3.8.0_out_WithoutSpaces.osw | 1642 ++++++++++++++++ ..._level_dsoa.rb_3.9.0_out_WithoutSpaces.osw | 1642 ++++++++++++++++ 17 files changed, 23292 insertions(+), 120 deletions(-) create mode 100644 test/space_level_dsoa.osm_3.5.0_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.osm_3.5.1_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.osm_3.6.0_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.osm_3.6.1_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.osm_3.7.0_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.osm_3.8.0_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.osm_3.9.0_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.rb_3.5.0_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.rb_3.5.1_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.rb_3.6.0_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.rb_3.6.1_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.rb_3.7.0_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.rb_3.8.0_out_WithoutSpaces.osw create mode 100644 test/space_level_dsoa.rb_3.9.0_out_WithoutSpaces.osw diff --git a/test/space_level_dsoa.osm_3.5.0_out_WithoutSpaces.osw b/test/space_level_dsoa.osm_3.5.0_out_WithoutSpaces.osw new file mode 100644 index 00000000..a599f852 --- /dev/null +++ b/test/space_level_dsoa.osm_3.5.0_out_WithoutSpaces.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 22.2.0-aa78da9668, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.3.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7325.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3837.75 + }, + { + "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": 97600880.32 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8823220.09 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654740.97 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1457913.34 + }, + { + "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": 23101715.36 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97600880.32 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2585830.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778027.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427272.22 + }, + { + "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": 976197.12 + }, + { + "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": 2585831.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778029.19 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427271.94 + }, + { + "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": 6770446.57 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97600.85 + }, + { + "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": 97600.85 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35374438.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2576.78 + }, + { + "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/space_level_dsoa.osm_3.5.1_out_WithoutSpaces.osw b/test/space_level_dsoa.osm_3.5.1_out_WithoutSpaces.osw new file mode 100644 index 00000000..a599f852 --- /dev/null +++ b/test/space_level_dsoa.osm_3.5.1_out_WithoutSpaces.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 22.2.0-aa78da9668, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.3.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7325.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3837.75 + }, + { + "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": 97600880.32 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8823220.09 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654740.97 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1457913.34 + }, + { + "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": 23101715.36 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97600880.32 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2585830.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778027.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427272.22 + }, + { + "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": 976197.12 + }, + { + "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": 2585831.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778029.19 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427271.94 + }, + { + "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": 6770446.57 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97600.85 + }, + { + "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": 97600.85 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35374438.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2576.78 + }, + { + "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/space_level_dsoa.osm_3.6.0_out_WithoutSpaces.osw b/test/space_level_dsoa.osm_3.6.0_out_WithoutSpaces.osw new file mode 100644 index 00000000..5fe5f739 --- /dev/null +++ b/test/space_level_dsoa.osm_3.6.0_out_WithoutSpaces.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.1.0-87ed9199d4, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.4.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7325.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3837.75 + }, + { + "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": 97600880.32 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8823220.09 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654740.97 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1457913.34 + }, + { + "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": 23101715.36 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97600880.32 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2585830.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778027.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427272.22 + }, + { + "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": 976197.12 + }, + { + "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": 2585831.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778029.19 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427271.94 + }, + { + "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": 6770446.57 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97600.85 + }, + { + "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": 97600.85 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35374438.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2576.78 + }, + { + "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/space_level_dsoa.osm_3.6.1_out_WithoutSpaces.osw b/test/space_level_dsoa.osm_3.6.1_out_WithoutSpaces.osw new file mode 100644 index 00000000..5fe5f739 --- /dev/null +++ b/test/space_level_dsoa.osm_3.6.1_out_WithoutSpaces.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.1.0-87ed9199d4, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.4.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7325.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3837.75 + }, + { + "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": 97600880.32 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8823220.09 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654740.97 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1457913.34 + }, + { + "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": 23101715.36 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97600880.32 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2585830.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778027.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427272.22 + }, + { + "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": 976197.12 + }, + { + "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": 2585831.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778029.19 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427271.94 + }, + { + "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": 6770446.57 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97600.85 + }, + { + "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": 97600.85 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35374438.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2576.78 + }, + { + "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/space_level_dsoa.osm_3.7.0_out_WithoutSpaces.osw b/test/space_level_dsoa.osm_3.7.0_out_WithoutSpaces.osw new file mode 100644 index 00000000..88cfacb9 --- /dev/null +++ b/test/space_level_dsoa.osm_3.7.0_out_WithoutSpaces.osw @@ -0,0 +1,1663 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.2.0-7636e6b3e9, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 20 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": { + "ft_options": { + "no_space_translation": true + } + }, + "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": 120702605.16 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120702605.16 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7325.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3837.75 + }, + { + "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": 97600880.32 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8823220.09 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654740.97 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1457913.34 + }, + { + "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": 23101715.36 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97600880.32 + }, + { + "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": 2585830.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778027.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427272.22 + }, + { + "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": 976197.12 + }, + { + "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": 2585831.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778029.19 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427271.94 + }, + { + "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": 6770446.57 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97600.86 + }, + { + "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": 97600.86 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35374441.67 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2576.78 + }, + { + "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/space_level_dsoa.osm_3.8.0_out_WithoutSpaces.osw b/test/space_level_dsoa.osm_3.8.0_out_WithoutSpaces.osw new file mode 100644 index 00000000..c7ef87d4 --- /dev/null +++ b/test/space_level_dsoa.osm_3.8.0_out_WithoutSpaces.osw @@ -0,0 +1,1642 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 24.1.0-9d7789a3ac, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATINGWATER:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 8 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": { + "ft_options": { + "no_space_translation": true + } + }, + "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 20 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.6.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120702898.98 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120702898.98 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7324.0 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3836.25 + }, + { + "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": 97601174.14 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8823229.57 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654740.97 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1457913.34 + }, + { + "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": 23101734.32 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97601174.14 + }, + { + "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": 2585833.33 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778027.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427272.22 + }, + { + "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": 976200.06 + }, + { + "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": 2585833.78 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778029.19 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427271.94 + }, + { + "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": 6770449.35 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97601.19 + }, + { + "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": 97601.19 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35374527.78 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2576.78 + }, + { + "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": [ + "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", + "/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file diff --git a/test/space_level_dsoa.osm_3.9.0_out_WithoutSpaces.osw b/test/space_level_dsoa.osm_3.9.0_out_WithoutSpaces.osw new file mode 100644 index 00000000..455f6720 --- /dev/null +++ b/test/space_level_dsoa.osm_3.9.0_out_WithoutSpaces.osw @@ -0,0 +1,1642 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 24.2.0-94a887817b, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATINGWATER:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 8 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.osm/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": { + "ft_options": { + "no_space_translation": true + } + }, + "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 20 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.7.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120714367.57 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120714367.57 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.59 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.59 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7324.0 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3836.25 + }, + { + "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": 97601174.14 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8822367.06 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2661423.08 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1463571.81 + }, + { + "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": 23113202.91 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97601174.14 + }, + { + "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": 2585580.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 779986.11 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 428930.56 + }, + { + "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": 976200.06 + }, + { + "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": 2585575.72 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 779985.31 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 428931.36 + }, + { + "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": 6773806.84 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97601.19 + }, + { + "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": 97601.19 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35377888.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2577.22 + }, + { + "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": [ + "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", + "/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file diff --git a/test/space_level_dsoa.py_3.7.0_out_WithoutSpaces.osw b/test/space_level_dsoa.py_3.7.0_out_WithoutSpaces.osw index 3927d395..787bd6fc 100644 --- a/test/space_level_dsoa.py_3.7.0_out_WithoutSpaces.osw +++ b/test/space_level_dsoa.py_3.7.0_out_WithoutSpaces.osw @@ -13,6 +13,8 @@ " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", " ************* Beginning System Sizing Calculations", @@ -59,11 +61,11 @@ " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", " *************", " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", - " ************* EnergyPlus Sizing Error Summary. During Sizing: 9 Warning; 0 Severe Errors.", - " ************* EnergyPlus Completed Successfully-- 19 Warning; 0 Severe Errors; " + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 20 Warning; 0 Severe Errors; " ], "file_paths": [ - "/home/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", "./files", "./weather", "../../files", @@ -199,32 +201,32 @@ { "name": "total_site_energy", "units": "kBtu", - "value": 36080506.93 + "value": 120702605.16 }, { "name": "net_site_energy", "units": "kBtu", - "value": 36080506.93 + "value": 120702605.16 }, { "name": "total_building_area", "units": "ft^2", - "value": 53819.55 + "value": 269097.76 }, { "name": "total_site_eui", "units": "kBtu/ft^2", - "value": 670.4 + "value": 448.55 }, { "name": "eui", "units": "kBtu/ft^2", - "value": 670.4 + "value": 448.55 }, { "name": "unmet_hours_during_heating", "units": "hr", - "value": 6091.75 + "value": 7325.5 }, { "name": "unmet_hours_during_cooling", @@ -234,7 +236,7 @@ { "name": "unmet_hours_during_occupied_heating", "units": "hr", - "value": 2725.5 + "value": 3837.75 }, { "name": "unmet_hours_during_occupied_cooling", @@ -254,17 +256,17 @@ { "name": "end_use_heating", "units": "kBtu", - "value": 30663627.83 + "value": 97600880.32 }, { "name": "end_use_cooling", "units": "kBtu", - "value": 2143848.59 + "value": 8823220.09 }, { "name": "end_use_interior_lighting", "units": "kBtu", - "value": 522304.1 + "value": 2611539.47 }, { "name": "end_use_exterior_lighting", @@ -274,7 +276,7 @@ { "name": "end_use_interior_equipment", "units": "kBtu", - "value": 522304.1 + "value": 2611539.47 }, { "name": "end_use_exterior_equipment", @@ -284,17 +286,17 @@ { "name": "end_use_fans", "units": "kBtu", - "value": 1200846.38 + "value": 4942752.54 }, { "name": "end_use_pumps", "units": "kBtu", - "value": 673386.15 + "value": 2654740.97 }, { "name": "end_use_heat_rejection", "units": "kBtu", - "value": 354180.3 + "value": 1457913.34 }, { "name": "end_use_humidification", @@ -324,12 +326,12 @@ { "name": "fuel_electricity", "units": "kBtu", - "value": 5416869.62 + "value": 23101715.36 }, { "name": "fuel_natural_gas", "units": "kBtu", - "value": 30663627.83 + "value": 97600880.32 }, { "name": "fuel_gasoline", @@ -394,12 +396,12 @@ { "name": "end_use_electricity_cooling", "units": "kWh", - "value": 628300.0 + "value": 2585830.56 }, { "name": "end_use_electricity_interior_lighting", "units": "kWh", - "value": 153072.22 + "value": 765366.67 }, { "name": "end_use_electricity_exterior_lighting", @@ -409,7 +411,7 @@ { "name": "end_use_electricity_interior_equipment", "units": "kWh", - "value": 153072.22 + "value": 765366.67 }, { "name": "end_use_electricity_exterior_equipment", @@ -419,17 +421,17 @@ { "name": "end_use_electricity_fans", "units": "kWh", - "value": 351933.33 + "value": 1448577.78 }, { "name": "end_use_electricity_pumps", "units": "kWh", - "value": 197350.0 + "value": 778027.78 }, { "name": "end_use_electricity_heat_rejection", "units": "kWh", - "value": 103800.0 + "value": 427272.22 }, { "name": "end_use_electricity_humidification", @@ -459,7 +461,7 @@ { "name": "end_use_natural_gas_heating", "units": "therms", - "value": 306695.44 + "value": 976197.12 }, { "name": "end_use_natural_gas_cooling", @@ -534,12 +536,12 @@ { "name": "electricity_cooling_ip", "units": "kWh", - "value": 628299.02 + "value": 2585831.0 }, { "name": "electricity_interior_lighting_ip", "units": "kWh", - "value": 153073.56 + "value": 765367.5 }, { "name": "electricity_exterior_lighting_ip", @@ -549,7 +551,7 @@ { "name": "electricity_interior_equipment_ip", "units": "kWh", - "value": 153073.56 + "value": 765367.5 }, { "name": "electricity_exterior_equipment_ip", @@ -559,17 +561,17 @@ { "name": "electricity_fans_ip", "units": "kWh", - "value": 351930.86 + "value": 1448579.44 }, { "name": "electricity_pumps_ip", "units": "kWh", - "value": 197349.75 + "value": 778029.19 }, { "name": "electricity_heat_rejection_ip", "units": "kWh", - "value": 103800.73 + "value": 427271.94 }, { "name": "electricity_humidification_ip", @@ -599,12 +601,12 @@ { "name": "electricity_ip", "units": "kWh", - "value": 1587527.47 + "value": 6770446.57 }, { "name": "natural_gas_heating_ip", "units": "MBtu", - "value": 30663.63 + "value": 97600.86 }, { "name": "natural_gas_cooling_ip", @@ -674,7 +676,7 @@ { "name": "natural_gas_ip", "units": "MBtu", - "value": 30663.63 + "value": 97600.86 }, { "name": "gasoline_heating_ip", @@ -1584,12 +1586,12 @@ { "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", "units": "ft^2", - "value": 7750.02 + "value": 29062.56 }, { "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", "units": "ft^2", - "value": 5166.68 + "value": 19375.04 }, { "name": "gross_window_wall_ratio", @@ -1609,7 +1611,7 @@ { "name": "space_type_baseline_model_space_type", "units": "ft^2", - "value": 53819.55 + "value": 269097.76 }, { "name": "exterior_lighting_total_power", @@ -1619,7 +1621,7 @@ { "name": "exterior_lighting_total_consumption", "units": "kWh", - "value": 10574152.78 + "value": 35374441.67 }, { "name": "inflation_approach", @@ -1633,7 +1635,7 @@ { "name": "annual_peak_electric_demand", "units": "kW", - "value": 605.02 + "value": 2576.78 }, { "name": "first_year_capital_cost", diff --git a/test/space_level_dsoa.py_3.8.0_out_WithoutSpaces.osw b/test/space_level_dsoa.py_3.8.0_out_WithoutSpaces.osw index 68789a0e..46075561 100644 --- a/test/space_level_dsoa.py_3.8.0_out_WithoutSpaces.osw +++ b/test/space_level_dsoa.py_3.8.0_out_WithoutSpaces.osw @@ -11,6 +11,8 @@ " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", " ************* Beginning System Sizing Calculations", @@ -57,11 +59,11 @@ " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", " *************", " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", - " ************* EnergyPlus Sizing Error Summary. During Sizing: 7 Warning; 0 Severe Errors.", - " ************* EnergyPlus Completed Successfully-- 17 Warning; 0 Severe Errors; " + " ************* EnergyPlus Sizing Error Summary. During Sizing: 8 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " ], "file_paths": [ - "/home/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", "./files", "./weather", "../../files", @@ -197,32 +199,32 @@ { "name": "total_site_energy", "units": "kBtu", - "value": 36080478.49 + "value": 120702898.98 }, { "name": "net_site_energy", "units": "kBtu", - "value": 36080478.49 + "value": 120702898.98 }, { "name": "total_building_area", "units": "ft^2", - "value": 53819.55 + "value": 269097.76 }, { "name": "total_site_eui", "units": "kBtu/ft^2", - "value": 670.4 + "value": 448.55 }, { "name": "eui", "units": "kBtu/ft^2", - "value": 670.4 + "value": 448.55 }, { "name": "unmet_hours_during_heating", "units": "hr", - "value": 6091.5 + "value": 7324.0 }, { "name": "unmet_hours_during_cooling", @@ -232,7 +234,7 @@ { "name": "unmet_hours_during_occupied_heating", "units": "hr", - "value": 2725.25 + "value": 3836.25 }, { "name": "unmet_hours_during_occupied_cooling", @@ -252,17 +254,17 @@ { "name": "end_use_heating", "units": "kBtu", - "value": 30663608.87 + "value": 97601174.14 }, { "name": "end_use_cooling", "units": "kBtu", - "value": 2143848.59 + "value": 8823229.57 }, { "name": "end_use_interior_lighting", "units": "kBtu", - "value": 522304.1 + "value": 2611539.47 }, { "name": "end_use_exterior_lighting", @@ -272,7 +274,7 @@ { "name": "end_use_interior_equipment", "units": "kBtu", - "value": 522304.1 + "value": 2611539.47 }, { "name": "end_use_exterior_equipment", @@ -282,17 +284,17 @@ { "name": "end_use_fans", "units": "kBtu", - "value": 1200846.38 + "value": 4942752.54 }, { "name": "end_use_pumps", "units": "kBtu", - "value": 673386.15 + "value": 2654740.97 }, { "name": "end_use_heat_rejection", "units": "kBtu", - "value": 354180.3 + "value": 1457913.34 }, { "name": "end_use_humidification", @@ -322,12 +324,12 @@ { "name": "fuel_electricity", "units": "kBtu", - "value": 5416869.62 + "value": 23101734.32 }, { "name": "fuel_natural_gas", "units": "kBtu", - "value": 30663608.87 + "value": 97601174.14 }, { "name": "fuel_gasoline", @@ -392,12 +394,12 @@ { "name": "end_use_electricity_cooling", "units": "kWh", - "value": 628300.0 + "value": 2585833.33 }, { "name": "end_use_electricity_interior_lighting", "units": "kWh", - "value": 153072.22 + "value": 765366.67 }, { "name": "end_use_electricity_exterior_lighting", @@ -407,7 +409,7 @@ { "name": "end_use_electricity_interior_equipment", "units": "kWh", - "value": 153072.22 + "value": 765366.67 }, { "name": "end_use_electricity_exterior_equipment", @@ -417,17 +419,17 @@ { "name": "end_use_electricity_fans", "units": "kWh", - "value": 351933.33 + "value": 1448577.78 }, { "name": "end_use_electricity_pumps", "units": "kWh", - "value": 197350.0 + "value": 778027.78 }, { "name": "end_use_electricity_heat_rejection", "units": "kWh", - "value": 103800.0 + "value": 427272.22 }, { "name": "end_use_electricity_humidification", @@ -457,7 +459,7 @@ { "name": "end_use_natural_gas_heating", "units": "therms", - "value": 306695.25 + "value": 976200.06 }, { "name": "end_use_natural_gas_cooling", @@ -532,12 +534,12 @@ { "name": "electricity_cooling_ip", "units": "kWh", - "value": 628299.02 + "value": 2585833.78 }, { "name": "electricity_interior_lighting_ip", "units": "kWh", - "value": 153073.56 + "value": 765367.5 }, { "name": "electricity_exterior_lighting_ip", @@ -547,7 +549,7 @@ { "name": "electricity_interior_equipment_ip", "units": "kWh", - "value": 153073.56 + "value": 765367.5 }, { "name": "electricity_exterior_equipment_ip", @@ -557,17 +559,17 @@ { "name": "electricity_fans_ip", "units": "kWh", - "value": 351930.86 + "value": 1448579.44 }, { "name": "electricity_pumps_ip", "units": "kWh", - "value": 197349.75 + "value": 778029.19 }, { "name": "electricity_heat_rejection_ip", "units": "kWh", - "value": 103800.73 + "value": 427271.94 }, { "name": "electricity_humidification_ip", @@ -597,12 +599,12 @@ { "name": "electricity_ip", "units": "kWh", - "value": 1587527.47 + "value": 6770449.35 }, { "name": "natural_gas_heating_ip", "units": "MBtu", - "value": 30663.61 + "value": 97601.19 }, { "name": "natural_gas_cooling_ip", @@ -672,7 +674,7 @@ { "name": "natural_gas_ip", "units": "MBtu", - "value": 30663.61 + "value": 97601.19 }, { "name": "gasoline_heating_ip", @@ -1582,12 +1584,12 @@ { "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", "units": "ft^2", - "value": 7750.02 + "value": 29062.56 }, { "name": "space_type_baseline_model_space_type", "units": "ft^2", - "value": 53819.55 + "value": 269097.76 }, { "name": "exterior_lighting_total_power", @@ -1597,7 +1599,7 @@ { "name": "exterior_lighting_total_consumption", "units": "kWh", - "value": 10574144.44 + "value": 35374527.78 }, { "name": "inflation_approach", @@ -1611,7 +1613,7 @@ { "name": "annual_peak_electric_demand", "units": "kW", - "value": 605.02 + "value": 2576.78 }, { "name": "first_year_capital_cost", @@ -1631,7 +1633,7 @@ ], "step_warnings": [ "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", - "/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + "/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" ] } } diff --git a/test/space_level_dsoa.py_3.9.0_out_WithoutSpaces.osw b/test/space_level_dsoa.py_3.9.0_out_WithoutSpaces.osw index e84d1189..d2126e2e 100644 --- a/test/space_level_dsoa.py_3.9.0_out_WithoutSpaces.osw +++ b/test/space_level_dsoa.py_3.9.0_out_WithoutSpaces.osw @@ -11,6 +11,8 @@ " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", " ************* Beginning System Sizing Calculations", @@ -57,11 +59,11 @@ " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", " *************", " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", - " ************* EnergyPlus Sizing Error Summary. During Sizing: 7 Warning; 0 Severe Errors.", - " ************* EnergyPlus Completed Successfully-- 17 Warning; 0 Severe Errors; " + " ************* EnergyPlus Sizing Error Summary. During Sizing: 8 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " ], "file_paths": [ - "/home/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.py/generated_files", "./files", "./weather", "../../files", @@ -197,32 +199,32 @@ { "name": "total_site_energy", "units": "kBtu", - "value": 36083265.08 + "value": 120714367.57 }, { "name": "net_site_energy", "units": "kBtu", - "value": 36083265.08 + "value": 120714367.57 }, { "name": "total_building_area", "units": "ft^2", - "value": 53819.55 + "value": 269097.76 }, { "name": "total_site_eui", "units": "kBtu/ft^2", - "value": 670.45 + "value": 448.59 }, { "name": "eui", "units": "kBtu/ft^2", - "value": 670.45 + "value": 448.59 }, { "name": "unmet_hours_during_heating", "units": "hr", - "value": 6091.5 + "value": 7324.0 }, { "name": "unmet_hours_during_cooling", @@ -232,7 +234,7 @@ { "name": "unmet_hours_during_occupied_heating", "units": "hr", - "value": 2725.25 + "value": 3836.25 }, { "name": "unmet_hours_during_occupied_cooling", @@ -252,17 +254,17 @@ { "name": "end_use_heating", "units": "kBtu", - "value": 30663608.87 + "value": 97601174.14 }, { "name": "end_use_cooling", "units": "kBtu", - "value": 2143630.59 + "value": 8822367.06 }, { "name": "end_use_interior_lighting", "units": "kBtu", - "value": 522304.1 + "value": 2611539.47 }, { "name": "end_use_exterior_lighting", @@ -272,7 +274,7 @@ { "name": "end_use_interior_equipment", "units": "kBtu", - "value": 522304.1 + "value": 2611539.47 }, { "name": "end_use_exterior_equipment", @@ -282,17 +284,17 @@ { "name": "end_use_fans", "units": "kBtu", - "value": 1200846.38 + "value": 4942752.54 }, { "name": "end_use_pumps", "units": "kBtu", - "value": 675006.92 + "value": 2661423.08 }, { "name": "end_use_heat_rejection", "units": "kBtu", - "value": 355554.64 + "value": 1463571.81 }, { "name": "end_use_humidification", @@ -322,12 +324,12 @@ { "name": "fuel_electricity", "units": "kBtu", - "value": 5419656.21 + "value": 23113202.91 }, { "name": "fuel_natural_gas", "units": "kBtu", - "value": 30663608.87 + "value": 97601174.14 }, { "name": "fuel_gasoline", @@ -392,12 +394,12 @@ { "name": "end_use_electricity_cooling", "units": "kWh", - "value": 628236.11 + "value": 2585580.56 }, { "name": "end_use_electricity_interior_lighting", "units": "kWh", - "value": 153072.22 + "value": 765366.67 }, { "name": "end_use_electricity_exterior_lighting", @@ -407,7 +409,7 @@ { "name": "end_use_electricity_interior_equipment", "units": "kWh", - "value": 153072.22 + "value": 765366.67 }, { "name": "end_use_electricity_exterior_equipment", @@ -417,17 +419,17 @@ { "name": "end_use_electricity_fans", "units": "kWh", - "value": 351933.33 + "value": 1448577.78 }, { "name": "end_use_electricity_pumps", "units": "kWh", - "value": 197825.0 + "value": 779986.11 }, { "name": "end_use_electricity_heat_rejection", "units": "kWh", - "value": 104202.78 + "value": 428930.56 }, { "name": "end_use_electricity_humidification", @@ -457,7 +459,7 @@ { "name": "end_use_natural_gas_heating", "units": "therms", - "value": 306695.25 + "value": 976200.06 }, { "name": "end_use_natural_gas_cooling", @@ -532,12 +534,12 @@ { "name": "electricity_cooling_ip", "units": "kWh", - "value": 628237.63 + "value": 2585575.72 }, { "name": "electricity_interior_lighting_ip", "units": "kWh", - "value": 153073.56 + "value": 765367.5 }, { "name": "electricity_exterior_lighting_ip", @@ -547,7 +549,7 @@ { "name": "electricity_interior_equipment_ip", "units": "kWh", - "value": 153073.56 + "value": 765367.5 }, { "name": "electricity_exterior_equipment_ip", @@ -557,17 +559,17 @@ { "name": "electricity_fans_ip", "units": "kWh", - "value": 351930.86 + "value": 1448579.44 }, { "name": "electricity_pumps_ip", "units": "kWh", - "value": 197824.89 + "value": 779985.31 }, { "name": "electricity_heat_rejection_ip", "units": "kWh", - "value": 104203.63 + "value": 428931.36 }, { "name": "electricity_humidification_ip", @@ -597,12 +599,12 @@ { "name": "electricity_ip", "units": "kWh", - "value": 1588344.12 + "value": 6773806.84 }, { "name": "natural_gas_heating_ip", "units": "MBtu", - "value": 30663.61 + "value": 97601.19 }, { "name": "natural_gas_cooling_ip", @@ -672,7 +674,7 @@ { "name": "natural_gas_ip", "units": "MBtu", - "value": 30663.61 + "value": 97601.19 }, { "name": "gasoline_heating_ip", @@ -1582,12 +1584,12 @@ { "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", "units": "ft^2", - "value": 7750.02 + "value": 29062.56 }, { "name": "space_type_baseline_model_space_type", "units": "ft^2", - "value": 53819.55 + "value": 269097.76 }, { "name": "exterior_lighting_total_power", @@ -1597,7 +1599,7 @@ { "name": "exterior_lighting_total_consumption", "units": "kWh", - "value": 10574961.11 + "value": 35377888.89 }, { "name": "inflation_approach", @@ -1611,7 +1613,7 @@ { "name": "annual_peak_electric_demand", "units": "kW", - "value": 605.13 + "value": 2577.22 }, { "name": "first_year_capital_cost", @@ -1631,7 +1633,7 @@ ], "step_warnings": [ "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", - "/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/home/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + "/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" ] } } diff --git a/test/space_level_dsoa.rb_3.5.0_out_WithoutSpaces.osw b/test/space_level_dsoa.rb_3.5.0_out_WithoutSpaces.osw new file mode 100644 index 00000000..26e86c9d --- /dev/null +++ b/test/space_level_dsoa.rb_3.5.0_out_WithoutSpaces.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 22.2.0-aa78da9668, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.3.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7325.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3837.75 + }, + { + "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": 97600880.32 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8823220.09 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654740.97 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1457913.34 + }, + { + "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": 23101715.36 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97600880.32 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2585830.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778027.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427272.22 + }, + { + "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": 976197.12 + }, + { + "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": 2585831.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778029.19 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427271.94 + }, + { + "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": 6770446.57 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97600.85 + }, + { + "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": 97600.85 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35374438.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2576.78 + }, + { + "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/space_level_dsoa.rb_3.5.1_out_WithoutSpaces.osw b/test/space_level_dsoa.rb_3.5.1_out_WithoutSpaces.osw new file mode 100644 index 00000000..26e86c9d --- /dev/null +++ b/test/space_level_dsoa.rb_3.5.1_out_WithoutSpaces.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 22.2.0-aa78da9668, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.3.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7325.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3837.75 + }, + { + "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": 97600880.32 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8823220.09 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654740.97 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1457913.34 + }, + { + "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": 23101715.36 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97600880.32 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2585830.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778027.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427272.22 + }, + { + "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": 976197.12 + }, + { + "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": 2585831.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778029.19 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427271.94 + }, + { + "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": 6770446.57 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97600.85 + }, + { + "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": 97600.85 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35374438.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2576.78 + }, + { + "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/space_level_dsoa.rb_3.6.0_out_WithoutSpaces.osw b/test/space_level_dsoa.rb_3.6.0_out_WithoutSpaces.osw new file mode 100644 index 00000000..5399fdaf --- /dev/null +++ b/test/space_level_dsoa.rb_3.6.0_out_WithoutSpaces.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.1.0-87ed9199d4, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.4.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7325.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3837.75 + }, + { + "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": 97600880.32 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8823220.09 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654740.97 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1457913.34 + }, + { + "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": 23101715.36 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97600880.32 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2585830.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778027.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427272.22 + }, + { + "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": 976197.12 + }, + { + "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": 2585831.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778029.19 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427271.94 + }, + { + "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": 6770446.57 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97600.85 + }, + { + "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": 97600.85 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35374438.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2576.78 + }, + { + "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/space_level_dsoa.rb_3.6.1_out_WithoutSpaces.osw b/test/space_level_dsoa.rb_3.6.1_out_WithoutSpaces.osw new file mode 100644 index 00000000..5399fdaf --- /dev/null +++ b/test/space_level_dsoa.rb_3.6.1_out_WithoutSpaces.osw @@ -0,0 +1,1659 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.1.0-87ed9199d4, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY' invalid Variable or Meter Name 'REFRIGERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - ELECTRICITY PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:ELECTRICITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COOLING:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - NATURAL GAS PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:NATURALGAS'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTHEATING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT HEATING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTHEATING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'DISTRICTCOOLING:FACILITY'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIORLIGHTS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'INTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'FANS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'PUMPS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COOLING:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATREJECTION:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HUMIDIFIER:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'HEATRECOVERY:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'WATERSYSTEMS:DISTRICTCOOLING'", + " ** Warning ** In Output:Table:Monthly 'BUILDING ENERGY PERFORMANCE - DISTRICT COOLING PEAK DEMAND' invalid Variable or Meter Name 'COGENERATION:DISTRICTCOOLING'", + " ** 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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 97 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "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.4.0" + }, + { + "name": "workflow_gem_version", + "value": "2.3.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120702595.68 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7325.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3837.75 + }, + { + "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": 97600880.32 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8823220.09 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654740.97 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1457913.34 + }, + { + "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": 23101715.36 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97600880.32 + }, + { + "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", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_electricity_heating", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_cooling", + "units": "kWh", + "value": 2585830.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778027.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427272.22 + }, + { + "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": 976197.12 + }, + { + "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": 2585831.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778029.19 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427271.94 + }, + { + "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": 6770446.57 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97600.85 + }, + { + "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": 97600.85 + }, + { + "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_heating_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_cooling_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_lighting_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_interior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_exterior_equipment_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_fans_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_pumps_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_rejection_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_humidification_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_heat_recovery_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_water_systems_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_refrigeration_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_generators_ip", + "units": "MBtu", + "value": 0.0 + }, + { + "name": "district_heating_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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35374438.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2576.78 + }, + { + "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/space_level_dsoa.rb_3.7.0_out_WithoutSpaces.osw b/test/space_level_dsoa.rb_3.7.0_out_WithoutSpaces.osw new file mode 100644 index 00000000..3beb63a7 --- /dev/null +++ b/test/space_level_dsoa.rb_3.7.0_out_WithoutSpaces.osw @@ -0,0 +1,1663 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 23.2.0-7636e6b3e9, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", 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 ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 10 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 20 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": { + "ft_options": { + "no_space_translation": true + } + }, + "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": 120702605.16 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120702605.16 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7325.5 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3837.75 + }, + { + "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": 97600880.32 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8823220.09 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654740.97 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1457913.34 + }, + { + "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": 23101715.36 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97600880.32 + }, + { + "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": 2585830.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778027.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427272.22 + }, + { + "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": 976197.12 + }, + { + "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": 2585831.0 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778029.19 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427271.94 + }, + { + "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": 6770446.57 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97600.86 + }, + { + "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": 97600.86 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "ashrae_189_1_2009_ext_window_climate_zone_4_5", + "units": "ft^2", + "value": 19375.04 + }, + { + "name": "gross_window_wall_ratio", + "units": "%", + "value": 40.0 + }, + { + "name": "gross_window_wall_ratio_conditioned", + "units": "%", + "value": 40.0 + }, + { + "name": "skylight_roof_ratio", + "units": "%", + "value": 0.0 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35374441.67 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2576.78 + }, + { + "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/space_level_dsoa.rb_3.8.0_out_WithoutSpaces.osw b/test/space_level_dsoa.rb_3.8.0_out_WithoutSpaces.osw new file mode 100644 index 00000000..6904cb83 --- /dev/null +++ b/test/space_level_dsoa.rb_3.8.0_out_WithoutSpaces.osw @@ -0,0 +1,1642 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 24.1.0-9d7789a3ac, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATINGWATER:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 8 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": { + "ft_options": { + "no_space_translation": true + } + }, + "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 20 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.6.1" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120702898.98 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120702898.98 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.55 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7324.0 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3836.25 + }, + { + "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": 97601174.14 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8823229.57 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2654740.97 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1457913.34 + }, + { + "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": 23101734.32 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97601174.14 + }, + { + "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": 2585833.33 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 778027.78 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 427272.22 + }, + { + "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": 976200.06 + }, + { + "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": 2585833.78 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 778029.19 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 427271.94 + }, + { + "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": 6770449.35 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97601.19 + }, + { + "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": 97601.19 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35374527.78 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2576.78 + }, + { + "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": [ + "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", + "/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file diff --git a/test/space_level_dsoa.rb_3.9.0_out_WithoutSpaces.osw b/test/space_level_dsoa.rb_3.9.0_out_WithoutSpaces.osw new file mode 100644 index 00000000..d75265e4 --- /dev/null +++ b/test/space_level_dsoa.rb_3.9.0_out_WithoutSpaces.osw @@ -0,0 +1,1642 @@ +{ + "completed_status": "Success", + "current_step": 1, + "eplusout_err": [ + "Program Version,EnergyPlus, Version 24.2.0-94a887817b, ", + " ************* Beginning Zone 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:Day:Interval=\"SCHEDULE DAY 4\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** ProcessScheduleInput: Schedule:Day:Interval=\"SCHEDULE DAY 5\", Blank Schedule Type Limits Name input -- will not be validated.", + " ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input.", + " ** ~~~ ** Found first in surface=STORY 1 CORE SPACE EXTERIOR GROUND FLOOR", + " ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.", + " ** Warning ** GetSurfaceData: Entered Zone Floor Area(s) differ more than 5% from the sum of the Space Floor Area(s).", + " ** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual zones.", + " ** Warning ** CheckUsedConstructions: There are 8 nominally unused constructions in input.", + " ** ~~~ ** For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", + " ************* Beginning System Sizing Calculations", + " ** Warning ** Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored.", + " ** ~~~ ** Occurs in AirTerminal:SingleDuct:VAV:Reheat = AIR TERMINAL SINGLE DUCT VAV REHEAT 1", + " ************* Beginning Plant Sizing Calculations", + " ** Warning ** GetOAControllerInputs: Controller:MechanicalVentilation=\"CONTROLLER MECHANICAL VENTILATION 1\"", + " ** ~~~ ** Cannot locate a matching DesignSpecification:ZoneAirDistribution object for Zone=\"ZONE WITH 5 SPACES\".", + " ** ~~~ ** Using default zone air distribution effectiveness of 1.0 for heating and cooling.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTHEATINGWATER:FACILITY\" - not found.", + " ** Warning ** Output:Meter: invalid Key Name=\"DISTRICTCOOLING: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 *************", + " ************* There are 2 unused schedules in input.", + " ************* There are 2 unused week schedules in input.", + " ************* There are 6 unused day schedules in input.", + " ************* Use Output:Diagnostics,DisplayUnusedSchedules; to see them.", + " *************", + " ************* ===== Final Error Summary =====", + " ************* The following error categories occurred. Consider correcting or noting.", + " ************* Nominally Unused Constructions", + " ************* ..The nominally unused constructions warning is provided to alert you to potential conditions that can cause", + " ************* ..extra time during simulation. Each construction is calculated by the algorithm indicated in the HeatBalanceAlgorithm", + " ************* ..object. You may remove the constructions indicated (when you use the DisplayExtraWarnings option).", + " *************", + " ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.", + " ************* EnergyPlus Sizing Error Summary. During Sizing: 8 Warning; 0 Severe Errors.", + " ************* EnergyPlus Completed Successfully-- 18 Warning; 0 Severe Errors; " + ], + "file_paths": [ + "/Users/julien/Software/Others/OpenStudio-resources/testruns/space_level_dsoa.rb/generated_files", + "./files", + "./weather", + "../../files", + "../../weather", + "./" + ], + "run_options": { + "ft_options": { + "no_space_translation": true + } + }, + "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 20 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.7.0" + }, + { + "display_name": "Building 1", + "name": "building_name", + "value": "n/a" + }, + { + "name": "total_site_energy", + "units": "kBtu", + "value": 120714367.57 + }, + { + "name": "net_site_energy", + "units": "kBtu", + "value": 120714367.57 + }, + { + "name": "total_building_area", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "total_site_eui", + "units": "kBtu/ft^2", + "value": 448.59 + }, + { + "name": "eui", + "units": "kBtu/ft^2", + "value": 448.59 + }, + { + "name": "unmet_hours_during_heating", + "units": "hr", + "value": 7324.0 + }, + { + "name": "unmet_hours_during_cooling", + "units": "hr", + "value": 0.0 + }, + { + "name": "unmet_hours_during_occupied_heating", + "units": "hr", + "value": 3836.25 + }, + { + "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": 97601174.14 + }, + { + "name": "end_use_cooling", + "units": "kBtu", + "value": 8822367.06 + }, + { + "name": "end_use_interior_lighting", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_lighting", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_interior_equipment", + "units": "kBtu", + "value": 2611539.47 + }, + { + "name": "end_use_exterior_equipment", + "units": "kBtu", + "value": 0.0 + }, + { + "name": "end_use_fans", + "units": "kBtu", + "value": 4942752.54 + }, + { + "name": "end_use_pumps", + "units": "kBtu", + "value": 2661423.08 + }, + { + "name": "end_use_heat_rejection", + "units": "kBtu", + "value": 1463571.81 + }, + { + "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": 23113202.91 + }, + { + "name": "fuel_natural_gas", + "units": "kBtu", + "value": 97601174.14 + }, + { + "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": 2585580.56 + }, + { + "name": "end_use_electricity_interior_lighting", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_lighting", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_interior_equipment", + "units": "kWh", + "value": 765366.67 + }, + { + "name": "end_use_electricity_exterior_equipment", + "units": "kWh", + "value": 0.0 + }, + { + "name": "end_use_electricity_fans", + "units": "kWh", + "value": 1448577.78 + }, + { + "name": "end_use_electricity_pumps", + "units": "kWh", + "value": 779986.11 + }, + { + "name": "end_use_electricity_heat_rejection", + "units": "kWh", + "value": 428930.56 + }, + { + "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": 976200.06 + }, + { + "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": 2585575.72 + }, + { + "name": "electricity_interior_lighting_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_lighting_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_interior_equipment_ip", + "units": "kWh", + "value": 765367.5 + }, + { + "name": "electricity_exterior_equipment_ip", + "units": "kWh", + "value": 0.0 + }, + { + "name": "electricity_fans_ip", + "units": "kWh", + "value": 1448579.44 + }, + { + "name": "electricity_pumps_ip", + "units": "kWh", + "value": 779985.31 + }, + { + "name": "electricity_heat_rejection_ip", + "units": "kWh", + "value": 428931.36 + }, + { + "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": 6773806.84 + }, + { + "name": "natural_gas_heating_ip", + "units": "MBtu", + "value": 97601.19 + }, + { + "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": 97601.19 + }, + { + "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": "ashrae_189_1_2009_ext_roof_iead_climate_zone_2_5", + "units": "ft^2", + "value": 53819.55 + }, + { + "name": "ashrae_189_1_2009_ext_wall_steel_frame_climate_zone_4_8", + "units": "ft^2", + "value": 29062.56 + }, + { + "name": "space_type_baseline_model_space_type", + "units": "ft^2", + "value": 269097.76 + }, + { + "name": "exterior_lighting_total_power", + "units": "W", + "value": 0.0 + }, + { + "name": "exterior_lighting_total_consumption", + "units": "kWh", + "value": 35377888.89 + }, + { + "name": "inflation_approach", + "value": "Constant Dollar" + }, + { + "name": "analysis_length", + "units": "yrs", + "value": 25 + }, + { + "name": "annual_peak_electric_demand", + "units": "kW", + "value": 2577.22 + }, + { + "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": [ + "Envelope Summary section failed and was skipped because: undefined local variable or method `surface_construction' for OsLib_Reporting:Module. Detail on error follows.", + "/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1488:in `block in envelope_section_section'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `each'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/resources/os_lib_reporting.rb:1468:in `envelope_section_section'\n(eval):1:in `block in run'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `eval'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:237:in `block in run'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `each'\n/Users/julien/Software/Others/OpenStudio-resources/measures/openstudio_results/measure.rb:233:in `run'" + ] + } + } + ], + "weather_file": "../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw" +} \ No newline at end of file From 7008377ea69f3ce8c7d9063599e3398c7856d34f Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Tue, 27 May 2025 00:19:04 +0200 Subject: [PATCH 11/11] Improve notebook --- Analyzing_Regression_Tests.ipynb | 86 ++++++++++++++++---------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/Analyzing_Regression_Tests.ipynb b/Analyzing_Regression_Tests.ipynb index 46a4eeea..6efc7f51 100644 --- a/Analyzing_Regression_Tests.ipynb +++ b/Analyzing_Regression_Tests.ipynb @@ -149,7 +149,7 @@ "metadata": {}, "outputs": [], "source": [ - "version_info = regression_analysis.test_os_cli('/home/julien/Software/Others/OS-build-release/Products/openstudio')\n", + "version_info = regression_analysis.test_os_cli('/Users/julien/Software/Others/OS-build-release3/Products/openstudio')\n", "# version_info = regression_analysis.test_os_cli('openstudio')" ] }, @@ -177,7 +177,7 @@ "# Force a new version (don't want to be prompted each time I parse df_files)\n", "new_version = compat_matrix.iloc[0].copy()\n", "new_version['OpenStudio'] = version\n", - "new_version['E+'] = \"24.2.0\"\n", + "new_version['E+'] = \"25.1.0\"\n", "new_version['SHA'] = sha\n", "new_version['Released'] = 'TBD'\n", "new_version['Has_Docker'] = False\n", @@ -353,7 +353,13 @@ "metadata": {}, "outputs": [], "source": [ - "df_files = regression_analysis.find_info_osws(compat_matrix=compat_matrix, testtype='model')" + "def filter_max_eplus_versions(df_files: pd.DataFrame, max_eplus_versions: int = 3) -> pd.DataFrame:\n", + " df_files = df_files[sorted(df_files.columns, key=lambda x: packaging.version.parse(x[0]))]\n", + " df_files = df_files[\n", + " df_files.columns.get_level_values(level='E+')\n", + " .unique()[-max_eplus_versions:]\n", + " ]\n", + " return df_files" ] }, { @@ -362,28 +368,26 @@ "metadata": {}, "outputs": [], "source": [ - "# Limit to most recent versions so to no clutter display\n", - "df_files = df_files[['23.1.0', '23.2.0', '24.1.0']]\n", - "#df_files = df_files[['9.4.0', '9.5.0']]" + "df_files = regression_analysis.find_info_osws(compat_matrix=compat_matrix, testtype='model')" ] }, { - "cell_type": "markdown", + "cell_type": "code", + "execution_count": null, "metadata": {}, + "outputs": [], "source": [ - "## With custom Tags" + "# Limit to most recent versions so to no clutter display\\n\",\n", + "# df_files = df_files[['23.1.0', '23.2.0', '24.1.0', '24.2.0', '25.1.0']]\n", + "df_files = filter_max_eplus_versions(df_files=df_files, max_eplus_versions=3)\n", + "df_files" ] }, { - "cell_type": "code", - "execution_count": null, + "cell_type": "markdown", "metadata": {}, - "outputs": [], "source": [ - "df_files = regression_analysis.find_info_osws_with_tags(compat_matrix=compat_matrix,\n", - " # Switch to True/False\n", - " tags_only=False,\n", - " testtype='model')" + "## With custom Tags" ] }, { @@ -415,7 +419,17 @@ " else:\n", " if space_tag != 'WithSpaces':\n", " cols.append(col)\n", - " return df_files[cols]" + " return df_files[cols]\n", + "\n", + "def fill_space_tag(df_files: pd.DataFrame) -> pd.DataFrame:\n", + " new_cols = [] \n", + " for ep_version, os_version, tag in df_files.columns.tolist():\n", + " if not tag:\n", + " v = version.parse(os_version)\n", + " tag = 'WithSpaces' if v >= version.parse(SPACE_DEFAULTED_TO_ON) else 'WithoutSpaces'\n", + " new_cols.append((ep_version, os_version, tag))\n", + " df_files.columns = pd.MultiIndex.from_tuples(new_cols, names=df_files.columns.names)\n", + " return df_files" ] }, { @@ -424,27 +438,10 @@ "metadata": {}, "outputs": [], "source": [ - "# WithSpaces\n", - "# df_files = filter_on_space_enabled(df_files, True)\n", - "\n", - "# WithoutSpaces\n", - "df_files = filter_on_space_enabled(df_files, False)" - ] - }, - { - "cell_type": "raw", - "metadata": {}, - "source": [ - "# Limit to most recent versions so to no clutter display\n", - "df_files = df_files[[\n", - " #'9.2.0', '9.3.0', \n", - " #'9.4.0',\n", - " #'9.5.0',\n", - " #'9.6.0'\n", - " '22.1.0',\n", - " '22.2.0',\n", - " '23.1.0',\n", - "]]" + "df_files = regression_analysis.find_info_osws_with_tags(compat_matrix=compat_matrix,\n", + " # Switch to True/False\n", + " tags_only=False,\n", + " testtype='model')" ] }, { @@ -453,11 +450,14 @@ "metadata": {}, "outputs": [], "source": [ - "max_eplus_versions = 3\n", - "df_files = df_files[\n", - " df_files.columns.get_level_values(level='E+')\n", - " .unique()[-max_eplus_versions:]\n", - " ]" + "# WithSpaces\n", + "# df_files = filter_on_space_enabled(df_files, True)\n", + "\n", + "# WithoutSpaces\n", + "# df_files = filter_on_space_enabled(df_files, False)\n", + "\n", + "# Or just fill it up\n", + "df_files = fill_space_tag(df_files)" ] }, { @@ -466,7 +466,7 @@ "metadata": {}, "outputs": [], "source": [ - "df_files.columns.tolist()" + "df_files = filter_max_eplus_versions(df_files=df_files, max_eplus_versions=3)" ] }, {