urbanopt-cli 0.10.0 → 0.11.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/release.yml +24 -0
- data/.github/workflows/nightly_ci_build.yml +37 -33
- data/.gitignore +1 -0
- data/CHANGELOG.md +25 -0
- data/CMakeLists.txt +7 -7
- data/FindOpenStudioSDK.cmake +10 -10
- data/LICENSE.md +8 -35
- data/README.md +25 -10
- data/example_files/Gemfile +9 -9
- data/example_files/example_project_combined.json +6 -2
- data/example_files/example_project_with_ghe.json +859 -0
- data/example_files/mappers/Baseline.rb +39 -415
- data/example_files/mappers/ChilledWaterStorage.rb +1 -1
- data/example_files/mappers/CreateBar.rb +1 -1
- data/example_files/mappers/EvCharging.rb +1 -1
- data/example_files/mappers/FlexibleHotWater.rb +1 -1
- data/example_files/mappers/Floorspace.rb +1 -1
- data/example_files/mappers/HighEfficiency.rb +1 -1
- data/example_files/mappers/HighEfficiencyCreateBar.rb +1 -1
- data/example_files/mappers/HighEfficiencyFloorspace.rb +1 -1
- data/example_files/mappers/PeakHoursMelsShedding.rb +1 -1
- data/example_files/mappers/PeakHoursThermostatAdjust.rb +1 -1
- data/example_files/mappers/ThermalStorage.rb +1 -1
- data/example_files/mappers/base_workflow.osw +11 -4
- data/example_files/mappers/residential/template/util.rb +138 -0
- data/example_files/mappers/residential/util.rb +276 -0
- data/example_files/measures/BuildResidentialModel/measure.rb +118 -230
- data/example_files/measures/BuildResidentialModel/measure.xml +344 -233
- data/example_files/measures/BuildResidentialModel/resources/geometry.rb +7 -2
- data/example_files/measures/BuildResidentialModel/resources/unit_conversions.rb +5 -0
- data/example_files/measures/BuildResidentialModel/resources/util.rb +5 -0
- data/example_files/measures/BuildResidentialModel/tests/test_build_residential_model.rb +344 -0
- data/example_files/measures/BuildResidentialModel/tests/xml_building/17/feature1.xml +2112 -0
- data/example_files/measures/BuildResidentialModel/tests/xml_building/17/feature2.xml +2112 -0
- data/example_files/osm_building/7.osm +0 -2
- data/example_files/osm_building/8.osm +0 -2
- data/example_files/osm_building/9.osm +0 -2
- data/example_files/python_deps/dependencies.json +4 -3
- data/example_files/resources/hpxml-measures/.gitattributes +3 -0
- data/example_files/resources/hpxml-measures/.github/pull_request_template.md +2 -2
- data/example_files/resources/hpxml-measures/.github/workflows/add_to_project.yml +17 -0
- data/example_files/resources/hpxml-measures/.github/workflows/config.yml +37 -8
- data/example_files/resources/hpxml-measures/.gitignore +1 -0
- data/example_files/resources/hpxml-measures/.readthedocs.yml +6 -2
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/README.md +5596 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/README.md.erb +41 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +1324 -1035
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +325 -236
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb +119 -152
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{build_residential_hpxml_test.rb → test_build_residential_hpxml.rb} +225 -107
- data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/README.md +96 -0
- data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/README.md.erb +41 -0
- data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb +73 -31
- data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml +60 -40
- data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md +48 -23
- data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/constants.rb +5 -0
- data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb +6 -12
- data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/{build_residential_schedule_file_test.rb → test_build_residential_schedule_file.rb} +162 -35
- data/example_files/resources/hpxml-measures/Changelog.md +57 -1
- data/example_files/resources/hpxml-measures/Gemfile +1 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/README.md +83 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/README.md.erb +41 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +1081 -878
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +258 -204
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb +205 -178
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/battery.rb +43 -18
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +37 -112
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +34 -73
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/Xing_okstate_0664D_13659_Table_A-3.csv +4165 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/unavailable_periods.csv +2 -2
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb +5 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/generator.rb +13 -7
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb +95 -42
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +132 -108
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +1695 -1267
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +668 -589
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd +304 -553
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +197 -112
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +1140 -1745
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +412 -325
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb +56 -48
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb +49 -38
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb +5 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb +17 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper.rb +5 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb +94 -78
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/output.rb +60 -2
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/psychrometrics.rb +6 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb +11 -5
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-non-stochastic.csv +1 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv +52561 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv +8761 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv +8761 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_4.csv +8761 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_5.csv +8761 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_6.csv +8761 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +129 -137
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb +12 -21
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb +5 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/util.rb +7 -2
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/utility_bills.rb +6 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb +7 -2
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +179 -144
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb +129 -71
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb +5 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb +23 -6
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb +129 -118
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_battery.rb +25 -20
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +2282 -2239
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb +395 -204
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb +12 -7
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb +56 -51
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +369 -230
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +371 -191
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb +27 -20
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb +55 -5
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb +35 -30
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb +13 -8
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb +107 -93
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb +11 -6
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +757 -573
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb +77 -72
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_weather.rb +36 -6
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/util.rb +5 -0
- data/example_files/resources/hpxml-measures/README.md +2 -0
- data/example_files/resources/hpxml-measures/Rakefile +10 -3
- data/example_files/resources/hpxml-measures/ReportSimulationOutput/README.md +787 -0
- data/example_files/resources/hpxml-measures/ReportSimulationOutput/README.md.erb +41 -0
- data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.rb +730 -418
- data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.xml +1215 -9
- data/example_files/resources/hpxml-measures/ReportSimulationOutput/tests/{output_report_test.rb → test_report_sim_output.rb} +130 -299
- data/example_files/resources/hpxml-measures/ReportUtilityBills/README.md +87 -0
- data/example_files/resources/hpxml-measures/ReportUtilityBills/README.md.erb +41 -0
- data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.rb +261 -89
- data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.xml +179 -94
- data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/Average_retail_price_of_electricity.csv +68 -68
- data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv +3 -2
- data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv +713 -685
- data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv +716 -688
- data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/README.md +5 -2
- data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/util.rb +18 -9
- data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/test_report_utility_bills.rb +1308 -0
- data/example_files/resources/hpxml-measures/docs/requirements.txt +5 -0
- data/example_files/resources/hpxml-measures/docs/source/conf.py +1 -2
- data/example_files/resources/hpxml-measures/docs/source/intro.rst +3 -20
- data/example_files/resources/hpxml-measures/docs/source/usage_instructions.rst +1 -1
- data/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst +917 -564
- data/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst +79 -42
- data/example_files/resources/hpxml-measures/tasks.rb +2305 -2055
- data/example_files/resources/hpxml-measures/workflow/hpxml_inputs.json +270 -587
- data/example_files/resources/hpxml-measures/workflow/real_homes/house001.xml +559 -557
- data/example_files/resources/hpxml-measures/workflow/real_homes/house002.xml +522 -520
- data/example_files/resources/hpxml-measures/workflow/real_homes/house003.xml +534 -532
- data/example_files/resources/hpxml-measures/workflow/real_homes/house004.xml +547 -545
- data/example_files/resources/hpxml-measures/workflow/real_homes/house005.xml +546 -544
- data/example_files/resources/hpxml-measures/workflow/real_homes/house006.xml +603 -623
- data/example_files/resources/hpxml-measures/workflow/real_homes/house007.xml +613 -633
- data/example_files/resources/hpxml-measures/workflow/real_homes/house008.xml +699 -721
- data/example_files/resources/hpxml-measures/workflow/real_homes/house009.xml +662 -661
- data/example_files/resources/hpxml-measures/workflow/real_homes/house010.xml +657 -677
- data/example_files/resources/hpxml-measures/workflow/real_homes/house011.xml +470 -467
- data/example_files/resources/hpxml-measures/workflow/real_homes/house012.xml +441 -438
- data/example_files/resources/hpxml-measures/workflow/real_homes/house013.xml +468 -465
- data/example_files/resources/hpxml-measures/workflow/real_homes/house014.xml +469 -466
- data/example_files/resources/hpxml-measures/workflow/real_homes/house015.xml +468 -465
- data/example_files/resources/hpxml-measures/workflow/real_homes/house016.xml +717 -714
- data/example_files/resources/hpxml-measures/workflow/real_homes/house017.xml +647 -645
- data/example_files/resources/hpxml-measures/workflow/real_homes/house018.xml +569 -566
- data/example_files/resources/hpxml-measures/workflow/real_homes/house019.xml +602 -599
- data/example_files/resources/hpxml-measures/workflow/real_homes/house020.xml +630 -627
- data/example_files/resources/hpxml-measures/workflow/real_homes/house021.xml +776 -774
- data/example_files/resources/hpxml-measures/workflow/real_homes/house022.xml +670 -667
- data/example_files/resources/hpxml-measures/workflow/real_homes/house023.xml +632 -629
- data/example_files/resources/hpxml-measures/workflow/real_homes/house024.xml +731 -729
- data/example_files/resources/hpxml-measures/workflow/real_homes/house025.xml +672 -669
- data/example_files/resources/hpxml-measures/workflow/real_homes/house026.xml +667 -644
- data/example_files/resources/hpxml-measures/workflow/real_homes/house027.xml +646 -644
- data/example_files/resources/hpxml-measures/workflow/real_homes/house028.xml +690 -688
- data/example_files/resources/hpxml-measures/workflow/real_homes/house029.xml +701 -699
- data/example_files/resources/hpxml-measures/workflow/real_homes/house030.xml +637 -615
- data/example_files/resources/hpxml-measures/workflow/real_homes/house031.xml +690 -688
- data/example_files/resources/hpxml-measures/workflow/real_homes/house032.xml +557 -554
- data/example_files/resources/hpxml-measures/workflow/real_homes/house033.xml +534 -531
- data/example_files/resources/hpxml-measures/workflow/real_homes/house034.xml +636 -635
- data/example_files/resources/hpxml-measures/workflow/real_homes/house035.xml +616 -613
- data/example_files/resources/hpxml-measures/workflow/real_homes/house036.xml +601 -598
- data/example_files/resources/hpxml-measures/workflow/real_homes/house037.xml +581 -578
- data/example_files/resources/hpxml-measures/workflow/real_homes/house038.xml +624 -622
- data/example_files/resources/hpxml-measures/workflow/real_homes/house039.xml +584 -582
- data/example_files/resources/hpxml-measures/workflow/real_homes/house040.xml +631 -629
- data/example_files/resources/hpxml-measures/workflow/real_homes/house041.xml +922 -921
- data/example_files/resources/hpxml-measures/workflow/real_homes/house042.xml +855 -853
- data/example_files/resources/hpxml-measures/workflow/real_homes/house043.xml +739 -737
- data/example_files/resources/hpxml-measures/workflow/real_homes/house044.xml +798 -796
- data/example_files/resources/hpxml-measures/workflow/real_homes/house045.xml +696 -694
- data/example_files/resources/hpxml-measures/workflow/real_homes/house046.xml +487 -483
- data/example_files/resources/hpxml-measures/workflow/real_homes/house047.xml +443 -440
- data/example_files/resources/hpxml-measures/workflow/real_homes/house048.xml +688 -686
- data/example_files/resources/hpxml-measures/workflow/real_homes/house049.xml +722 -720
- data/example_files/resources/hpxml-measures/workflow/real_homes/house050.xml +619 -617
- data/example_files/resources/hpxml-measures/workflow/run_simulation.rb +13 -20
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +11 -12
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +11 -12
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +12 -13
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +11 -12
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +4 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +10 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +10 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +8 -8
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml +571 -569
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml → base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml} +5 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-adjacent-to-multiple.xml → base-bldgtype-mf-unit-adjacent-to-multiple.xml} +17 -17
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml → base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml} +5 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-adjacent-to-other-heated-space.xml → base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml} +5 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml → base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml} +5 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-infil-compartmentalization-test.xml → base-bldgtype-mf-unit-infil-compartmentalization-test.xml} +461 -461
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-residents-1.xml → base-bldgtype-mf-unit-residents-1.xml} +453 -453
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml → base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml → base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml → base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml → base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml → base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-only-baseboard.xml → base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml → base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml → base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml +433 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml → base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml → base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-chiller-only-baseboard.xml → base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml → base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml → base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml → base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml → base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml} +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-generator.xml → base-bldgtype-mf-unit-shared-generator.xml} +13 -13
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml → base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml} +13 -13
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml → base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml} +480 -480
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-laundry-room.xml → base-bldgtype-mf-unit-shared-laundry-room.xml} +10 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-mechvent-multiple.xml → base-bldgtype-mf-unit-shared-mechvent-multiple.xml} +15 -15
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-mechvent-preconditioning.xml → base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml} +13 -13
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-mechvent.xml → base-bldgtype-mf-unit-shared-mechvent.xml} +13 -13
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-pv.xml → base-bldgtype-mf-unit-shared-pv.xml} +13 -13
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-water-heater-recirc.xml → base-bldgtype-mf-unit-shared-water-heater-recirc.xml} +13 -13
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-water-heater.xml → base-bldgtype-mf-unit-shared-water-heater.xml} +13 -13
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily.xml → base-bldgtype-mf-unit.xml} +13 -13
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-attached-2stories.xml → base-bldgtype-sfa-unit-2stories.xml} +610 -610
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-attached-atticroof-cathedral.xml → base-bldgtype-sfa-unit-atticroof-cathedral.xml} +558 -558
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-attached-infil-compartmentalization-test.xml → base-bldgtype-sfa-unit-infil-compartmentalization-test.xml} +610 -610
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-attached.xml → base-bldgtype-sfa-unit.xml} +610 -610
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +8 -8
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml +507 -505
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +8 -8
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +12 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +14 -14
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +5 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +12 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +8 -8
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +13 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +8 -8
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +12 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +12 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +8 -8
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +13 -14
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +11 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml +576 -576
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml +519 -519
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +4 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml +548 -548
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml +551 -551
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +10 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +19 -19
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml +555 -553
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml +560 -558
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +10 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +10 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml +496 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-skirt.xml +496 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +18 -18
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-schedules-simple-power-outage-natvent-unavailable.xml → base-foundation-conditioned-basement-slab-insulation-full.xml} +552 -564
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml +555 -555
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +8 -8
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +5 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +10 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +4 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +4 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +4 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +4 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml +558 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +15 -15
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml +552 -552
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +562 -562
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +557 -557
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml +586 -586
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml → base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml} +89 -13
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml → base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml} +107 -13
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml +567 -565
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml +512 -512
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +536 -536
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-central-ac-only-var-speed.xml → base-hvac-central-ac-only-var-speed-detailed-performance.xml} +49 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +559 -559
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml +11 -12
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml +558 -558
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml +554 -554
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-furnace-gas-room-ac.xml → base-hvac-ducts-defaults.xml} +28 -14
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml +552 -552
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +15 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +12 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml +541 -541
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml → base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml} +650 -556
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml → base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml} +50 -49
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml → base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml} +109 -14
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml +524 -524
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml → base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml} +560 -552
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml +563 -563
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml → base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml} +108 -60
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml +505 -505
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml +10 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml +504 -504
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml +512 -512
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +12 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml +504 -504
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +517 -517
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-fixed-heater-gas-only.xml → base-hvac-space-heater-gas-only.xml} +10 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml +531 -528
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml +536 -536
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml +515 -515
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +10 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +4 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +10 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +10 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +10 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +576 -576
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +576 -576
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml +21 -19
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml +605 -605
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml +587 -587
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml +3 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml +587 -585
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml +584 -584
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml +555 -555
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +26 -26
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +26 -26
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml +508 -508
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-schedules-simple-power-outage-natvent-available.xml → base-misc-unit-multiplier.xml} +553 -564
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +26 -26
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-mf-units.xml +2755 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-multiple-buildings.xml → base-multiple-sfd-buildings.xml} +31 -22
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml +4 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml +597 -597
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml +599 -597
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml +615 -613
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml +612 -612
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml +596 -596
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml +559 -559
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0.xml +555 -555
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml +616 -616
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml +616 -616
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1.xml +547 -547
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-5.xml +515 -515
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +14 -12
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-crankcase-heater-40w.xml → base-schedules-detailed-mixed-timesteps-power-outage.xml} +565 -555
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml → base-schedules-detailed-mixed-timesteps.xml} +554 -563
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +12 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml +566 -564
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +12 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +12 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +12 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +12 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml +12 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml +619 -619
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml +618 -618
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml +553 -553
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +12 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +12 -10
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml +552 -552
- data/example_files/resources/hpxml-measures/workflow/sample_files/base.xml +9 -9
- data/example_files/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw +2 -0
- data/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw +2 -0
- data/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy.osw +2 -0
- data/example_files/resources/hpxml-measures/workflow/template-run-hpxml.osw +4 -1
- data/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Long_Residence.xml +385 -385
- data/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Vatilo_Residence.xml +378 -380
- data/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Victor_Residence.xml +369 -369
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml +7 -7
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml +7 -8
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml +7 -8
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml +6 -6
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml +6 -6
- data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_sizing.csv +363 -0
- data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1.csv +281 -0
- data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1_bills.csv +281 -0
- data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2.csv +141 -0
- data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2_bills.csv +141 -0
- data/example_files/resources/hpxml-measures/workflow/tests/compare.py +12 -6
- data/example_files/resources/hpxml-measures/workflow/tests/util.rb +1141 -0
- data/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.ddy +536 -0
- data/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.epw +8768 -0
- data/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.stat +554 -0
- data/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.ddy +536 -0
- data/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.epw +8768 -0
- data/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.stat +553 -0
- data/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3-cache.csv +35 -0
- data/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.ddy +536 -0
- data/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.epw +8768 -0
- data/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.stat +553 -0
- data/example_files/weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3-cache.csv +35 -0
- data/example_files/xml_building/17/README.md +4 -2
- data/example_files/xml_building/17/feature.xml +2112 -0
- data/lib/uo_cli/version.rb +1 -1
- data/lib/uo_cli.rb +122 -22
- data/uo_cli.gemspec +6 -8
- metadata +130 -177
- data/Jenkinsfile +0 -10
- data/example_files/base_workflow_res.osw +0 -276
- data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/utility_bills_test.rb +0 -1226
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil-location-miami-fl.xml +0 -551
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane-location-portland-or.xml +0 -551
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml +0 -544
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml +0 -550
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +0 -552
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +0 -552
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml +0 -552
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +0 -552
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml +0 -552
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml +0 -552
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml +0 -552
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml +0 -569
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml +0 -599
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml +0 -552
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml +0 -506
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml +0 -560
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml +0 -507
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml +0 -536
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml +0 -536
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml +0 -565
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +0 -553
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +0 -553
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +0 -553
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml +0 -497
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml +0 -544
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml +0 -500
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml +0 -536
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml +0 -551
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml +0 -551
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml +0 -536
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +0 -546
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +0 -552
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml +0 -554
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml +0 -554
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml +0 -554
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml +0 -543
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml +0 -549
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml +0 -551
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml +0 -551
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml +0 -519
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml +0 -522
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml +0 -503
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac.xml +0 -496
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml +0 -518
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml +0 -518
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml +0 -518
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml +0 -496
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-heating.xml +0 -503
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml +0 -518
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml +0 -518
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml +0 -518
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml +0 -500
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml +0 -500
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only-pilot-light.xml +0 -506
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml +0 -501
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml +0 -556
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-none.xml +0 -548
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy-year-round.xml +0 -619
- data/example_files/resources/hpxml-measures/workflow/tests/base_results/results.csv +0 -475
- data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_bills.csv +0 -475
- data/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb +0 -1313
- data/example_files/resources/measure-info.json +0 -26
- data/example_files/resources/meta_measure.rb +0 -301
- data/example_files/xml_building/17/unit 1.xml +0 -580
- data/example_files/xml_building/17/unit 2.xml +0 -553
- data/example_files/xml_building/17/unit 3.xml +0 -553
- data/example_files/xml_building/17/unit 4.xml +0 -580
- /data/example_files/{residential → mappers/residential/template/iecc}/clothes_dryer.tsv +0 -0
- /data/example_files/{residential → mappers/residential/template/iecc}/clothes_washer.tsv +0 -0
- /data/example_files/{residential → mappers/residential/template/iecc}/cooling_system.tsv +0 -0
- /data/example_files/{residential → mappers/residential/template/iecc}/dishwasher.tsv +0 -0
- /data/example_files/{residential → mappers/residential/template/iecc}/enclosure.tsv +0 -0
- /data/example_files/{residential → mappers/residential/template/iecc}/heat_pump.tsv +0 -0
- /data/example_files/{residential → mappers/residential/template/iecc}/heating_system.tsv +0 -0
- /data/example_files/{residential → mappers/residential/template/iecc}/mechanical_ventilation.tsv +0 -0
- /data/example_files/{residential → mappers/residential/template/iecc}/refrigerator.tsv +0 -0
- /data/example_files/{residential → mappers/residential/template/iecc}/water_heater.tsv +0 -0
- /data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/{JacksonElectricMemberCorp-ResidentialSeniorCitizenLowIncomeAssistance.json → Detailed Rate.json} +0 -0
@@ -0,0 +1,2755 @@
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
2
|
+
<HPXML xmlns='http://hpxmlonline.com/2023/09' schemaVersion='4.0'>
|
3
|
+
<XMLTransactionHeaderInformation>
|
4
|
+
<XMLType>HPXML</XMLType>
|
5
|
+
<XMLGeneratedBy>tasks.rb</XMLGeneratedBy>
|
6
|
+
<CreatedDateAndTime>2000-01-01T00:00:00-07:00</CreatedDateAndTime>
|
7
|
+
<Transaction>create</Transaction>
|
8
|
+
</XMLTransactionHeaderInformation>
|
9
|
+
<SoftwareInfo>
|
10
|
+
<extension>
|
11
|
+
<SimulationControl>
|
12
|
+
<Timestep>60</Timestep>
|
13
|
+
</SimulationControl>
|
14
|
+
<UtilityBillScenarios>
|
15
|
+
<UtilityBillScenario>
|
16
|
+
<Name>Bills</Name>
|
17
|
+
</UtilityBillScenario>
|
18
|
+
</UtilityBillScenarios>
|
19
|
+
</extension>
|
20
|
+
</SoftwareInfo>
|
21
|
+
<Building>
|
22
|
+
<BuildingID id='MyBuilding'/>
|
23
|
+
<Site>
|
24
|
+
<SiteID id='SiteID'/>
|
25
|
+
<Address>
|
26
|
+
<StateCode>CO</StateCode>
|
27
|
+
</Address>
|
28
|
+
</Site>
|
29
|
+
<ProjectStatus>
|
30
|
+
<EventType>proposed workscope</EventType>
|
31
|
+
</ProjectStatus>
|
32
|
+
<BuildingDetails>
|
33
|
+
<BuildingSummary>
|
34
|
+
<Site>
|
35
|
+
<SiteType>suburban</SiteType>
|
36
|
+
<Surroundings>attached on one side</Surroundings>
|
37
|
+
<VerticalSurroundings>unit above</VerticalSurroundings>
|
38
|
+
<AzimuthOfFrontOfHome>180</AzimuthOfFrontOfHome>
|
39
|
+
<FuelTypesAvailable>
|
40
|
+
<Fuel>electricity</Fuel>
|
41
|
+
<Fuel>natural gas</Fuel>
|
42
|
+
</FuelTypesAvailable>
|
43
|
+
</Site>
|
44
|
+
<BuildingConstruction>
|
45
|
+
<ResidentialFacilityType>apartment unit</ResidentialFacilityType>
|
46
|
+
<NumberofConditionedFloors>1.0</NumberofConditionedFloors>
|
47
|
+
<NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
|
48
|
+
<AverageCeilingHeight>8.0</AverageCeilingHeight>
|
49
|
+
<NumberofBedrooms>3</NumberofBedrooms>
|
50
|
+
<NumberofBathrooms>2</NumberofBathrooms>
|
51
|
+
<ConditionedFloorArea>1200.0</ConditionedFloorArea>
|
52
|
+
<ConditionedBuildingVolume>9600.0</ConditionedBuildingVolume>
|
53
|
+
</BuildingConstruction>
|
54
|
+
<extension>
|
55
|
+
<SchedulesFilePath>../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv</SchedulesFilePath>
|
56
|
+
</extension>
|
57
|
+
</BuildingSummary>
|
58
|
+
<ClimateandRiskZones>
|
59
|
+
<ClimateZoneIECC>
|
60
|
+
<Year>2006</Year>
|
61
|
+
<ClimateZone>5B</ClimateZone>
|
62
|
+
</ClimateZoneIECC>
|
63
|
+
<WeatherStation>
|
64
|
+
<SystemIdentifier id='WeatherStation'/>
|
65
|
+
<Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
|
66
|
+
<extension>
|
67
|
+
<EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
|
68
|
+
</extension>
|
69
|
+
</WeatherStation>
|
70
|
+
</ClimateandRiskZones>
|
71
|
+
<Enclosure>
|
72
|
+
<AirInfiltration>
|
73
|
+
<AirInfiltrationMeasurement>
|
74
|
+
<SystemIdentifier id='AirInfiltrationMeasurement1'/>
|
75
|
+
<TypeOfInfiltrationLeakage>unit exterior only</TypeOfInfiltrationLeakage>
|
76
|
+
<BuildingAirLeakage>
|
77
|
+
<UnitofMeasure>ACHnatural</UnitofMeasure>
|
78
|
+
<AirLeakage>0.375</AirLeakage>
|
79
|
+
</BuildingAirLeakage>
|
80
|
+
<InfiltrationVolume>9600.0</InfiltrationVolume>
|
81
|
+
</AirInfiltrationMeasurement>
|
82
|
+
</AirInfiltration>
|
83
|
+
<Attics>
|
84
|
+
<Attic>
|
85
|
+
<SystemIdentifier id='Attic1'/>
|
86
|
+
<AtticType>
|
87
|
+
<BelowApartment/>
|
88
|
+
</AtticType>
|
89
|
+
</Attic>
|
90
|
+
</Attics>
|
91
|
+
<Foundations>
|
92
|
+
<Foundation>
|
93
|
+
<SystemIdentifier id='Foundation1'/>
|
94
|
+
<FoundationType>
|
95
|
+
<Basement>
|
96
|
+
<Conditioned>false</Conditioned>
|
97
|
+
</Basement>
|
98
|
+
</FoundationType>
|
99
|
+
<AttachedToRimJoist idref='RimJoist1'/>
|
100
|
+
<AttachedToRimJoist idref='RimJoist2'/>
|
101
|
+
<AttachedToFoundationWall idref='FoundationWall1'/>
|
102
|
+
<AttachedToFoundationWall idref='FoundationWall2'/>
|
103
|
+
<AttachedToFloor idref='Floor1'/>
|
104
|
+
<AttachedToSlab idref='Slab1'/>
|
105
|
+
</Foundation>
|
106
|
+
</Foundations>
|
107
|
+
<RimJoists>
|
108
|
+
<RimJoist>
|
109
|
+
<SystemIdentifier id='RimJoist1'/>
|
110
|
+
<ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
|
111
|
+
<InteriorAdjacentTo>basement - unconditioned</InteriorAdjacentTo>
|
112
|
+
<Area>77.1</Area>
|
113
|
+
<Siding>wood siding</Siding>
|
114
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
115
|
+
<Emittance>0.92</Emittance>
|
116
|
+
<Insulation>
|
117
|
+
<SystemIdentifier id='RimJoist1Insulation'/>
|
118
|
+
<AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
|
119
|
+
</Insulation>
|
120
|
+
</RimJoist>
|
121
|
+
<RimJoist>
|
122
|
+
<SystemIdentifier id='RimJoist2'/>
|
123
|
+
<ExteriorAdjacentTo>basement - unconditioned</ExteriorAdjacentTo>
|
124
|
+
<InteriorAdjacentTo>basement - unconditioned</InteriorAdjacentTo>
|
125
|
+
<Area>30.8</Area>
|
126
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
127
|
+
<Emittance>0.92</Emittance>
|
128
|
+
<Insulation>
|
129
|
+
<SystemIdentifier id='RimJoist2Insulation'/>
|
130
|
+
<AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
|
131
|
+
</Insulation>
|
132
|
+
</RimJoist>
|
133
|
+
</RimJoists>
|
134
|
+
<Walls>
|
135
|
+
<Wall>
|
136
|
+
<SystemIdentifier id='Wall1'/>
|
137
|
+
<ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
|
138
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
139
|
+
<WallType>
|
140
|
+
<WoodStud/>
|
141
|
+
</WallType>
|
142
|
+
<Area>800.0</Area>
|
143
|
+
<Siding>wood siding</Siding>
|
144
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
145
|
+
<Emittance>0.92</Emittance>
|
146
|
+
<InteriorFinish>
|
147
|
+
<Type>gypsum board</Type>
|
148
|
+
</InteriorFinish>
|
149
|
+
<Insulation>
|
150
|
+
<SystemIdentifier id='Wall1Insulation'/>
|
151
|
+
<AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
|
152
|
+
</Insulation>
|
153
|
+
</Wall>
|
154
|
+
<Wall>
|
155
|
+
<SystemIdentifier id='Wall2'/>
|
156
|
+
<ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
|
157
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
158
|
+
<WallType>
|
159
|
+
<WoodStud/>
|
160
|
+
</WallType>
|
161
|
+
<Area>320.0</Area>
|
162
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
163
|
+
<Emittance>0.92</Emittance>
|
164
|
+
<InteriorFinish>
|
165
|
+
<Type>gypsum board</Type>
|
166
|
+
</InteriorFinish>
|
167
|
+
<Insulation>
|
168
|
+
<SystemIdentifier id='Wall2Insulation'/>
|
169
|
+
<AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
|
170
|
+
</Insulation>
|
171
|
+
</Wall>
|
172
|
+
</Walls>
|
173
|
+
<FoundationWalls>
|
174
|
+
<FoundationWall>
|
175
|
+
<SystemIdentifier id='FoundationWall1'/>
|
176
|
+
<ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
|
177
|
+
<InteriorAdjacentTo>basement - unconditioned</InteriorAdjacentTo>
|
178
|
+
<Height>8.0</Height>
|
179
|
+
<Area>800.0</Area>
|
180
|
+
<Thickness>8.0</Thickness>
|
181
|
+
<DepthBelowGrade>7.0</DepthBelowGrade>
|
182
|
+
<InteriorFinish>
|
183
|
+
<Type>none</Type>
|
184
|
+
</InteriorFinish>
|
185
|
+
<Insulation>
|
186
|
+
<SystemIdentifier id='FoundationWall1Insulation'/>
|
187
|
+
<Layer>
|
188
|
+
<InstallationType>continuous - exterior</InstallationType>
|
189
|
+
<NominalRValue>8.9</NominalRValue>
|
190
|
+
<DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
|
191
|
+
<DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
|
192
|
+
</Layer>
|
193
|
+
<Layer>
|
194
|
+
<InstallationType>continuous - interior</InstallationType>
|
195
|
+
<NominalRValue>0.0</NominalRValue>
|
196
|
+
</Layer>
|
197
|
+
</Insulation>
|
198
|
+
</FoundationWall>
|
199
|
+
<FoundationWall>
|
200
|
+
<SystemIdentifier id='FoundationWall2'/>
|
201
|
+
<ExteriorAdjacentTo>basement - unconditioned</ExteriorAdjacentTo>
|
202
|
+
<InteriorAdjacentTo>basement - unconditioned</InteriorAdjacentTo>
|
203
|
+
<Height>8.0</Height>
|
204
|
+
<Area>320.0</Area>
|
205
|
+
<Thickness>8.0</Thickness>
|
206
|
+
<DepthBelowGrade>7.0</DepthBelowGrade>
|
207
|
+
<InteriorFinish>
|
208
|
+
<Type>none</Type>
|
209
|
+
</InteriorFinish>
|
210
|
+
<Insulation>
|
211
|
+
<SystemIdentifier id='FoundationWall2Insulation'/>
|
212
|
+
<Layer>
|
213
|
+
<InstallationType>continuous - exterior</InstallationType>
|
214
|
+
<NominalRValue>0.0</NominalRValue>
|
215
|
+
</Layer>
|
216
|
+
<Layer>
|
217
|
+
<InstallationType>continuous - interior</InstallationType>
|
218
|
+
<NominalRValue>0.0</NominalRValue>
|
219
|
+
</Layer>
|
220
|
+
</Insulation>
|
221
|
+
</FoundationWall>
|
222
|
+
</FoundationWalls>
|
223
|
+
<Floors>
|
224
|
+
<Floor>
|
225
|
+
<SystemIdentifier id='Floor1'/>
|
226
|
+
<ExteriorAdjacentTo>basement - unconditioned</ExteriorAdjacentTo>
|
227
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
228
|
+
<FloorOrCeiling>floor</FloorOrCeiling>
|
229
|
+
<FloorType>
|
230
|
+
<WoodFrame/>
|
231
|
+
</FloorType>
|
232
|
+
<Area>1200.0</Area>
|
233
|
+
<Insulation>
|
234
|
+
<SystemIdentifier id='Floor1Insulation'/>
|
235
|
+
<AssemblyEffectiveRValue>22.84</AssemblyEffectiveRValue>
|
236
|
+
</Insulation>
|
237
|
+
</Floor>
|
238
|
+
<Floor>
|
239
|
+
<SystemIdentifier id='Floor2'/>
|
240
|
+
<ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
|
241
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
242
|
+
<FloorOrCeiling>ceiling</FloorOrCeiling>
|
243
|
+
<FloorType>
|
244
|
+
<WoodFrame/>
|
245
|
+
</FloorType>
|
246
|
+
<Area>1200.0</Area>
|
247
|
+
<InteriorFinish>
|
248
|
+
<Type>gypsum board</Type>
|
249
|
+
</InteriorFinish>
|
250
|
+
<Insulation>
|
251
|
+
<SystemIdentifier id='Floor2Insulation'/>
|
252
|
+
<AssemblyEffectiveRValue>2.1</AssemblyEffectiveRValue>
|
253
|
+
</Insulation>
|
254
|
+
</Floor>
|
255
|
+
</Floors>
|
256
|
+
<Slabs>
|
257
|
+
<Slab>
|
258
|
+
<SystemIdentifier id='Slab1'/>
|
259
|
+
<InteriorAdjacentTo>basement - unconditioned</InteriorAdjacentTo>
|
260
|
+
<Area>1200.0</Area>
|
261
|
+
<Thickness>4.0</Thickness>
|
262
|
+
<ExposedPerimeter>100.0</ExposedPerimeter>
|
263
|
+
<PerimeterInsulation>
|
264
|
+
<SystemIdentifier id='Slab1PerimeterInsulation'/>
|
265
|
+
<Layer>
|
266
|
+
<NominalRValue>0.0</NominalRValue>
|
267
|
+
<InsulationDepth>0.0</InsulationDepth>
|
268
|
+
</Layer>
|
269
|
+
</PerimeterInsulation>
|
270
|
+
<UnderSlabInsulation>
|
271
|
+
<SystemIdentifier id='Slab1UnderSlabInsulation'/>
|
272
|
+
<Layer>
|
273
|
+
<NominalRValue>0.0</NominalRValue>
|
274
|
+
<InsulationWidth>0.0</InsulationWidth>
|
275
|
+
</Layer>
|
276
|
+
</UnderSlabInsulation>
|
277
|
+
<extension>
|
278
|
+
<CarpetFraction>0.0</CarpetFraction>
|
279
|
+
<CarpetRValue>0.0</CarpetRValue>
|
280
|
+
</extension>
|
281
|
+
</Slab>
|
282
|
+
</Slabs>
|
283
|
+
<Windows>
|
284
|
+
<Window>
|
285
|
+
<SystemIdentifier id='Window1'/>
|
286
|
+
<Area>43.2</Area>
|
287
|
+
<Azimuth>0</Azimuth>
|
288
|
+
<UFactor>0.33</UFactor>
|
289
|
+
<SHGC>0.45</SHGC>
|
290
|
+
<InteriorShading>
|
291
|
+
<SystemIdentifier id='Window1InteriorShading'/>
|
292
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
293
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
294
|
+
</InteriorShading>
|
295
|
+
<FractionOperable>0.67</FractionOperable>
|
296
|
+
<AttachedToWall idref='Wall1'/>
|
297
|
+
</Window>
|
298
|
+
<Window>
|
299
|
+
<SystemIdentifier id='Window2'/>
|
300
|
+
<Area>43.2</Area>
|
301
|
+
<Azimuth>180</Azimuth>
|
302
|
+
<UFactor>0.33</UFactor>
|
303
|
+
<SHGC>0.45</SHGC>
|
304
|
+
<InteriorShading>
|
305
|
+
<SystemIdentifier id='Window2InteriorShading'/>
|
306
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
307
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
308
|
+
</InteriorShading>
|
309
|
+
<FractionOperable>0.67</FractionOperable>
|
310
|
+
<AttachedToWall idref='Wall1'/>
|
311
|
+
</Window>
|
312
|
+
<Window>
|
313
|
+
<SystemIdentifier id='Window3'/>
|
314
|
+
<Area>57.6</Area>
|
315
|
+
<Azimuth>270</Azimuth>
|
316
|
+
<UFactor>0.33</UFactor>
|
317
|
+
<SHGC>0.45</SHGC>
|
318
|
+
<InteriorShading>
|
319
|
+
<SystemIdentifier id='Window3InteriorShading'/>
|
320
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
321
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
322
|
+
</InteriorShading>
|
323
|
+
<FractionOperable>0.67</FractionOperable>
|
324
|
+
<AttachedToWall idref='Wall1'/>
|
325
|
+
</Window>
|
326
|
+
</Windows>
|
327
|
+
<Doors>
|
328
|
+
<Door>
|
329
|
+
<SystemIdentifier id='Door1'/>
|
330
|
+
<AttachedToWall idref='Wall1'/>
|
331
|
+
<Area>20.0</Area>
|
332
|
+
<Azimuth>180</Azimuth>
|
333
|
+
<RValue>4.4</RValue>
|
334
|
+
</Door>
|
335
|
+
</Doors>
|
336
|
+
</Enclosure>
|
337
|
+
<Systems>
|
338
|
+
<HVAC>
|
339
|
+
<HVACPlant>
|
340
|
+
<PrimarySystems>
|
341
|
+
<PrimaryHeatingSystem idref='HeatingSystem1'/>
|
342
|
+
<PrimaryCoolingSystem idref='CoolingSystem1'/>
|
343
|
+
</PrimarySystems>
|
344
|
+
<HeatingSystem>
|
345
|
+
<SystemIdentifier id='HeatingSystem1'/>
|
346
|
+
<HeatingSystemType>
|
347
|
+
<ElectricResistance/>
|
348
|
+
</HeatingSystemType>
|
349
|
+
<HeatingSystemFuel>electricity</HeatingSystemFuel>
|
350
|
+
<HeatingCapacity>12000.0</HeatingCapacity>
|
351
|
+
<AnnualHeatingEfficiency>
|
352
|
+
<Units>Percent</Units>
|
353
|
+
<Value>1.0</Value>
|
354
|
+
</AnnualHeatingEfficiency>
|
355
|
+
<FractionHeatLoadServed>1.0</FractionHeatLoadServed>
|
356
|
+
</HeatingSystem>
|
357
|
+
<CoolingSystem>
|
358
|
+
<SystemIdentifier id='CoolingSystem1'/>
|
359
|
+
<CoolingSystemType>room air conditioner</CoolingSystemType>
|
360
|
+
<CoolingSystemFuel>electricity</CoolingSystemFuel>
|
361
|
+
<CoolingCapacity>12000.0</CoolingCapacity>
|
362
|
+
<FractionCoolLoadServed>1.0</FractionCoolLoadServed>
|
363
|
+
<AnnualCoolingEfficiency>
|
364
|
+
<Units>EER</Units>
|
365
|
+
<Value>8.5</Value>
|
366
|
+
</AnnualCoolingEfficiency>
|
367
|
+
<SensibleHeatFraction>0.73</SensibleHeatFraction>
|
368
|
+
</CoolingSystem>
|
369
|
+
</HVACPlant>
|
370
|
+
<HVACControl>
|
371
|
+
<SystemIdentifier id='HVACControl1'/>
|
372
|
+
<SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
|
373
|
+
<SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
|
374
|
+
</HVACControl>
|
375
|
+
</HVAC>
|
376
|
+
<WaterHeating>
|
377
|
+
<WaterHeatingSystem>
|
378
|
+
<SystemIdentifier id='WaterHeatingSystem1'/>
|
379
|
+
<FuelType>electricity</FuelType>
|
380
|
+
<WaterHeaterType>storage water heater</WaterHeaterType>
|
381
|
+
<Location>conditioned space</Location>
|
382
|
+
<TankVolume>40.0</TankVolume>
|
383
|
+
<FractionDHWLoadServed>1.0</FractionDHWLoadServed>
|
384
|
+
<HeatingCapacity>18767.0</HeatingCapacity>
|
385
|
+
<EnergyFactor>0.95</EnergyFactor>
|
386
|
+
<HotWaterTemperature>125.0</HotWaterTemperature>
|
387
|
+
</WaterHeatingSystem>
|
388
|
+
<HotWaterDistribution>
|
389
|
+
<SystemIdentifier id='HotWaterDistribution1'/>
|
390
|
+
<SystemType>
|
391
|
+
<Standard>
|
392
|
+
<PipingLength>50.0</PipingLength>
|
393
|
+
</Standard>
|
394
|
+
</SystemType>
|
395
|
+
<PipeInsulation>
|
396
|
+
<PipeRValue>0.0</PipeRValue>
|
397
|
+
</PipeInsulation>
|
398
|
+
</HotWaterDistribution>
|
399
|
+
<WaterFixture>
|
400
|
+
<SystemIdentifier id='WaterFixture1'/>
|
401
|
+
<WaterFixtureType>shower head</WaterFixtureType>
|
402
|
+
<LowFlow>true</LowFlow>
|
403
|
+
</WaterFixture>
|
404
|
+
<WaterFixture>
|
405
|
+
<SystemIdentifier id='WaterFixture2'/>
|
406
|
+
<WaterFixtureType>faucet</WaterFixtureType>
|
407
|
+
<LowFlow>false</LowFlow>
|
408
|
+
</WaterFixture>
|
409
|
+
</WaterHeating>
|
410
|
+
</Systems>
|
411
|
+
<Appliances>
|
412
|
+
<ClothesWasher>
|
413
|
+
<SystemIdentifier id='ClothesWasher1'/>
|
414
|
+
<Location>conditioned space</Location>
|
415
|
+
<IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
|
416
|
+
<RatedAnnualkWh>380.0</RatedAnnualkWh>
|
417
|
+
<LabelElectricRate>0.12</LabelElectricRate>
|
418
|
+
<LabelGasRate>1.09</LabelGasRate>
|
419
|
+
<LabelAnnualGasCost>27.0</LabelAnnualGasCost>
|
420
|
+
<LabelUsage>6.0</LabelUsage>
|
421
|
+
<Capacity>3.2</Capacity>
|
422
|
+
</ClothesWasher>
|
423
|
+
<ClothesDryer>
|
424
|
+
<SystemIdentifier id='ClothesDryer1'/>
|
425
|
+
<Location>conditioned space</Location>
|
426
|
+
<FuelType>electricity</FuelType>
|
427
|
+
<CombinedEnergyFactor>3.73</CombinedEnergyFactor>
|
428
|
+
<Vented>true</Vented>
|
429
|
+
<VentedFlowRate>150.0</VentedFlowRate>
|
430
|
+
</ClothesDryer>
|
431
|
+
<Dishwasher>
|
432
|
+
<SystemIdentifier id='Dishwasher1'/>
|
433
|
+
<Location>conditioned space</Location>
|
434
|
+
<RatedAnnualkWh>307.0</RatedAnnualkWh>
|
435
|
+
<PlaceSettingCapacity>12</PlaceSettingCapacity>
|
436
|
+
<LabelElectricRate>0.12</LabelElectricRate>
|
437
|
+
<LabelGasRate>1.09</LabelGasRate>
|
438
|
+
<LabelAnnualGasCost>22.32</LabelAnnualGasCost>
|
439
|
+
<LabelUsage>4.0</LabelUsage>
|
440
|
+
</Dishwasher>
|
441
|
+
<Refrigerator>
|
442
|
+
<SystemIdentifier id='Refrigerator1'/>
|
443
|
+
<Location>conditioned space</Location>
|
444
|
+
<RatedAnnualkWh>650.0</RatedAnnualkWh>
|
445
|
+
<PrimaryIndicator>true</PrimaryIndicator>
|
446
|
+
</Refrigerator>
|
447
|
+
<CookingRange>
|
448
|
+
<SystemIdentifier id='CookingRange1'/>
|
449
|
+
<Location>conditioned space</Location>
|
450
|
+
<FuelType>electricity</FuelType>
|
451
|
+
<IsInduction>false</IsInduction>
|
452
|
+
</CookingRange>
|
453
|
+
<Oven>
|
454
|
+
<SystemIdentifier id='Oven1'/>
|
455
|
+
<IsConvection>false</IsConvection>
|
456
|
+
</Oven>
|
457
|
+
</Appliances>
|
458
|
+
<Lighting>
|
459
|
+
<LightingGroup>
|
460
|
+
<SystemIdentifier id='LightingGroup1'/>
|
461
|
+
<Location>interior</Location>
|
462
|
+
<FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
|
463
|
+
<LightingType>
|
464
|
+
<CompactFluorescent/>
|
465
|
+
</LightingType>
|
466
|
+
</LightingGroup>
|
467
|
+
<LightingGroup>
|
468
|
+
<SystemIdentifier id='LightingGroup2'/>
|
469
|
+
<Location>interior</Location>
|
470
|
+
<FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
|
471
|
+
<LightingType>
|
472
|
+
<FluorescentTube/>
|
473
|
+
</LightingType>
|
474
|
+
</LightingGroup>
|
475
|
+
<LightingGroup>
|
476
|
+
<SystemIdentifier id='LightingGroup3'/>
|
477
|
+
<Location>interior</Location>
|
478
|
+
<FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
|
479
|
+
<LightingType>
|
480
|
+
<LightEmittingDiode/>
|
481
|
+
</LightingType>
|
482
|
+
</LightingGroup>
|
483
|
+
<LightingGroup>
|
484
|
+
<SystemIdentifier id='LightingGroup4'/>
|
485
|
+
<Location>exterior</Location>
|
486
|
+
<FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
|
487
|
+
<LightingType>
|
488
|
+
<CompactFluorescent/>
|
489
|
+
</LightingType>
|
490
|
+
</LightingGroup>
|
491
|
+
<LightingGroup>
|
492
|
+
<SystemIdentifier id='LightingGroup5'/>
|
493
|
+
<Location>exterior</Location>
|
494
|
+
<FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
|
495
|
+
<LightingType>
|
496
|
+
<FluorescentTube/>
|
497
|
+
</LightingType>
|
498
|
+
</LightingGroup>
|
499
|
+
<LightingGroup>
|
500
|
+
<SystemIdentifier id='LightingGroup6'/>
|
501
|
+
<Location>exterior</Location>
|
502
|
+
<FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
|
503
|
+
<LightingType>
|
504
|
+
<LightEmittingDiode/>
|
505
|
+
</LightingType>
|
506
|
+
</LightingGroup>
|
507
|
+
</Lighting>
|
508
|
+
<MiscLoads>
|
509
|
+
<PlugLoad>
|
510
|
+
<SystemIdentifier id='PlugLoad1'/>
|
511
|
+
<PlugLoadType>TV other</PlugLoadType>
|
512
|
+
<Load>
|
513
|
+
<Units>kWh/year</Units>
|
514
|
+
<Value>620.0</Value>
|
515
|
+
</Load>
|
516
|
+
</PlugLoad>
|
517
|
+
<PlugLoad>
|
518
|
+
<SystemIdentifier id='PlugLoad2'/>
|
519
|
+
<PlugLoadType>other</PlugLoadType>
|
520
|
+
<Load>
|
521
|
+
<Units>kWh/year</Units>
|
522
|
+
<Value>2457.0</Value>
|
523
|
+
</Load>
|
524
|
+
<extension>
|
525
|
+
<FracSensible>0.855</FracSensible>
|
526
|
+
<FracLatent>0.045</FracLatent>
|
527
|
+
</extension>
|
528
|
+
</PlugLoad>
|
529
|
+
</MiscLoads>
|
530
|
+
</BuildingDetails>
|
531
|
+
</Building>
|
532
|
+
<Building>
|
533
|
+
<BuildingID id='MyBuilding_2'/>
|
534
|
+
<Site>
|
535
|
+
<SiteID id='SiteID_2'/>
|
536
|
+
<Address>
|
537
|
+
<StateCode>CO</StateCode>
|
538
|
+
</Address>
|
539
|
+
</Site>
|
540
|
+
<ProjectStatus>
|
541
|
+
<EventType>proposed workscope</EventType>
|
542
|
+
</ProjectStatus>
|
543
|
+
<BuildingDetails>
|
544
|
+
<BuildingSummary>
|
545
|
+
<Site>
|
546
|
+
<SiteType>suburban</SiteType>
|
547
|
+
<Surroundings>attached on one side</Surroundings>
|
548
|
+
<VerticalSurroundings>unit above</VerticalSurroundings>
|
549
|
+
<AzimuthOfFrontOfHome>180</AzimuthOfFrontOfHome>
|
550
|
+
<FuelTypesAvailable>
|
551
|
+
<Fuel>electricity</Fuel>
|
552
|
+
<Fuel>natural gas</Fuel>
|
553
|
+
</FuelTypesAvailable>
|
554
|
+
</Site>
|
555
|
+
<BuildingConstruction>
|
556
|
+
<ResidentialFacilityType>apartment unit</ResidentialFacilityType>
|
557
|
+
<NumberofConditionedFloors>1.0</NumberofConditionedFloors>
|
558
|
+
<NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
|
559
|
+
<AverageCeilingHeight>8.0</AverageCeilingHeight>
|
560
|
+
<NumberofBedrooms>3</NumberofBedrooms>
|
561
|
+
<NumberofBathrooms>2</NumberofBathrooms>
|
562
|
+
<ConditionedFloorArea>1200.0</ConditionedFloorArea>
|
563
|
+
<ConditionedBuildingVolume>9600.0</ConditionedBuildingVolume>
|
564
|
+
</BuildingConstruction>
|
565
|
+
<extension>
|
566
|
+
<SchedulesFilePath>../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv</SchedulesFilePath>
|
567
|
+
</extension>
|
568
|
+
</BuildingSummary>
|
569
|
+
<ClimateandRiskZones>
|
570
|
+
<ClimateZoneIECC>
|
571
|
+
<Year>2006</Year>
|
572
|
+
<ClimateZone>5B</ClimateZone>
|
573
|
+
</ClimateZoneIECC>
|
574
|
+
<WeatherStation>
|
575
|
+
<SystemIdentifier id='WeatherStation_2'/>
|
576
|
+
<Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
|
577
|
+
<extension>
|
578
|
+
<EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
|
579
|
+
</extension>
|
580
|
+
</WeatherStation>
|
581
|
+
</ClimateandRiskZones>
|
582
|
+
<Enclosure>
|
583
|
+
<AirInfiltration>
|
584
|
+
<AirInfiltrationMeasurement>
|
585
|
+
<SystemIdentifier id='AirInfiltrationMeasurement1_2'/>
|
586
|
+
<TypeOfInfiltrationLeakage>unit exterior only</TypeOfInfiltrationLeakage>
|
587
|
+
<BuildingAirLeakage>
|
588
|
+
<UnitofMeasure>ACHnatural</UnitofMeasure>
|
589
|
+
<AirLeakage>0.375</AirLeakage>
|
590
|
+
</BuildingAirLeakage>
|
591
|
+
<InfiltrationVolume>9600.0</InfiltrationVolume>
|
592
|
+
</AirInfiltrationMeasurement>
|
593
|
+
</AirInfiltration>
|
594
|
+
<Attics>
|
595
|
+
<Attic>
|
596
|
+
<SystemIdentifier id='Attic1_2'/>
|
597
|
+
<AtticType>
|
598
|
+
<BelowApartment/>
|
599
|
+
</AtticType>
|
600
|
+
</Attic>
|
601
|
+
</Attics>
|
602
|
+
<Foundations>
|
603
|
+
<Foundation>
|
604
|
+
<SystemIdentifier id='Foundation1_2'/>
|
605
|
+
<FoundationType>
|
606
|
+
<Basement>
|
607
|
+
<Conditioned>false</Conditioned>
|
608
|
+
</Basement>
|
609
|
+
</FoundationType>
|
610
|
+
<AttachedToRimJoist idref='RimJoist1_2'/>
|
611
|
+
<AttachedToRimJoist idref='RimJoist2_2'/>
|
612
|
+
<AttachedToFoundationWall idref='FoundationWall1_2'/>
|
613
|
+
<AttachedToFoundationWall idref='FoundationWall2_2'/>
|
614
|
+
<AttachedToFloor idref='Floor1_2'/>
|
615
|
+
<AttachedToSlab idref='Slab1_2'/>
|
616
|
+
</Foundation>
|
617
|
+
</Foundations>
|
618
|
+
<RimJoists>
|
619
|
+
<RimJoist>
|
620
|
+
<SystemIdentifier id='RimJoist1_2'/>
|
621
|
+
<ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
|
622
|
+
<InteriorAdjacentTo>basement - unconditioned</InteriorAdjacentTo>
|
623
|
+
<Area>77.1</Area>
|
624
|
+
<Siding>wood siding</Siding>
|
625
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
626
|
+
<Emittance>0.92</Emittance>
|
627
|
+
<Insulation>
|
628
|
+
<SystemIdentifier id='RimJoist1Insulation_2'/>
|
629
|
+
<AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
|
630
|
+
</Insulation>
|
631
|
+
</RimJoist>
|
632
|
+
<RimJoist>
|
633
|
+
<SystemIdentifier id='RimJoist2_2'/>
|
634
|
+
<ExteriorAdjacentTo>basement - unconditioned</ExteriorAdjacentTo>
|
635
|
+
<InteriorAdjacentTo>basement - unconditioned</InteriorAdjacentTo>
|
636
|
+
<Area>30.8</Area>
|
637
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
638
|
+
<Emittance>0.92</Emittance>
|
639
|
+
<Insulation>
|
640
|
+
<SystemIdentifier id='RimJoist2Insulation_2'/>
|
641
|
+
<AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
|
642
|
+
</Insulation>
|
643
|
+
</RimJoist>
|
644
|
+
</RimJoists>
|
645
|
+
<Walls>
|
646
|
+
<Wall>
|
647
|
+
<SystemIdentifier id='Wall1_2'/>
|
648
|
+
<ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
|
649
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
650
|
+
<WallType>
|
651
|
+
<WoodStud/>
|
652
|
+
</WallType>
|
653
|
+
<Area>800.0</Area>
|
654
|
+
<Siding>wood siding</Siding>
|
655
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
656
|
+
<Emittance>0.92</Emittance>
|
657
|
+
<InteriorFinish>
|
658
|
+
<Type>gypsum board</Type>
|
659
|
+
</InteriorFinish>
|
660
|
+
<Insulation>
|
661
|
+
<SystemIdentifier id='Wall1Insulation_2'/>
|
662
|
+
<AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
|
663
|
+
</Insulation>
|
664
|
+
</Wall>
|
665
|
+
<Wall>
|
666
|
+
<SystemIdentifier id='Wall2_2'/>
|
667
|
+
<ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
|
668
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
669
|
+
<WallType>
|
670
|
+
<WoodStud/>
|
671
|
+
</WallType>
|
672
|
+
<Area>320.0</Area>
|
673
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
674
|
+
<Emittance>0.92</Emittance>
|
675
|
+
<InteriorFinish>
|
676
|
+
<Type>gypsum board</Type>
|
677
|
+
</InteriorFinish>
|
678
|
+
<Insulation>
|
679
|
+
<SystemIdentifier id='Wall2Insulation_2'/>
|
680
|
+
<AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
|
681
|
+
</Insulation>
|
682
|
+
</Wall>
|
683
|
+
</Walls>
|
684
|
+
<FoundationWalls>
|
685
|
+
<FoundationWall>
|
686
|
+
<SystemIdentifier id='FoundationWall1_2'/>
|
687
|
+
<ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
|
688
|
+
<InteriorAdjacentTo>basement - unconditioned</InteriorAdjacentTo>
|
689
|
+
<Height>8.0</Height>
|
690
|
+
<Area>800.0</Area>
|
691
|
+
<Thickness>8.0</Thickness>
|
692
|
+
<DepthBelowGrade>7.0</DepthBelowGrade>
|
693
|
+
<InteriorFinish>
|
694
|
+
<Type>none</Type>
|
695
|
+
</InteriorFinish>
|
696
|
+
<Insulation>
|
697
|
+
<SystemIdentifier id='FoundationWall1Insulation_2'/>
|
698
|
+
<Layer>
|
699
|
+
<InstallationType>continuous - exterior</InstallationType>
|
700
|
+
<NominalRValue>8.9</NominalRValue>
|
701
|
+
<DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
|
702
|
+
<DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
|
703
|
+
</Layer>
|
704
|
+
<Layer>
|
705
|
+
<InstallationType>continuous - interior</InstallationType>
|
706
|
+
<NominalRValue>0.0</NominalRValue>
|
707
|
+
</Layer>
|
708
|
+
</Insulation>
|
709
|
+
</FoundationWall>
|
710
|
+
<FoundationWall>
|
711
|
+
<SystemIdentifier id='FoundationWall2_2'/>
|
712
|
+
<ExteriorAdjacentTo>basement - unconditioned</ExteriorAdjacentTo>
|
713
|
+
<InteriorAdjacentTo>basement - unconditioned</InteriorAdjacentTo>
|
714
|
+
<Height>8.0</Height>
|
715
|
+
<Area>320.0</Area>
|
716
|
+
<Thickness>8.0</Thickness>
|
717
|
+
<DepthBelowGrade>7.0</DepthBelowGrade>
|
718
|
+
<InteriorFinish>
|
719
|
+
<Type>none</Type>
|
720
|
+
</InteriorFinish>
|
721
|
+
<Insulation>
|
722
|
+
<SystemIdentifier id='FoundationWall2Insulation_2'/>
|
723
|
+
<Layer>
|
724
|
+
<InstallationType>continuous - exterior</InstallationType>
|
725
|
+
<NominalRValue>0.0</NominalRValue>
|
726
|
+
</Layer>
|
727
|
+
<Layer>
|
728
|
+
<InstallationType>continuous - interior</InstallationType>
|
729
|
+
<NominalRValue>0.0</NominalRValue>
|
730
|
+
</Layer>
|
731
|
+
</Insulation>
|
732
|
+
</FoundationWall>
|
733
|
+
</FoundationWalls>
|
734
|
+
<Floors>
|
735
|
+
<Floor>
|
736
|
+
<SystemIdentifier id='Floor1_2'/>
|
737
|
+
<ExteriorAdjacentTo>basement - unconditioned</ExteriorAdjacentTo>
|
738
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
739
|
+
<FloorOrCeiling>floor</FloorOrCeiling>
|
740
|
+
<FloorType>
|
741
|
+
<WoodFrame/>
|
742
|
+
</FloorType>
|
743
|
+
<Area>1200.0</Area>
|
744
|
+
<Insulation>
|
745
|
+
<SystemIdentifier id='Floor1Insulation_2'/>
|
746
|
+
<AssemblyEffectiveRValue>22.84</AssemblyEffectiveRValue>
|
747
|
+
</Insulation>
|
748
|
+
</Floor>
|
749
|
+
<Floor>
|
750
|
+
<SystemIdentifier id='Floor2_2'/>
|
751
|
+
<ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
|
752
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
753
|
+
<FloorOrCeiling>ceiling</FloorOrCeiling>
|
754
|
+
<FloorType>
|
755
|
+
<WoodFrame/>
|
756
|
+
</FloorType>
|
757
|
+
<Area>1200.0</Area>
|
758
|
+
<InteriorFinish>
|
759
|
+
<Type>gypsum board</Type>
|
760
|
+
</InteriorFinish>
|
761
|
+
<Insulation>
|
762
|
+
<SystemIdentifier id='Floor2Insulation_2'/>
|
763
|
+
<AssemblyEffectiveRValue>2.1</AssemblyEffectiveRValue>
|
764
|
+
</Insulation>
|
765
|
+
</Floor>
|
766
|
+
</Floors>
|
767
|
+
<Slabs>
|
768
|
+
<Slab>
|
769
|
+
<SystemIdentifier id='Slab1_2'/>
|
770
|
+
<InteriorAdjacentTo>basement - unconditioned</InteriorAdjacentTo>
|
771
|
+
<Area>1200.0</Area>
|
772
|
+
<Thickness>4.0</Thickness>
|
773
|
+
<ExposedPerimeter>100.0</ExposedPerimeter>
|
774
|
+
<PerimeterInsulation>
|
775
|
+
<SystemIdentifier id='Slab1PerimeterInsulation_2'/>
|
776
|
+
<Layer>
|
777
|
+
<NominalRValue>0.0</NominalRValue>
|
778
|
+
<InsulationDepth>0.0</InsulationDepth>
|
779
|
+
</Layer>
|
780
|
+
</PerimeterInsulation>
|
781
|
+
<UnderSlabInsulation>
|
782
|
+
<SystemIdentifier id='Slab1UnderSlabInsulation_2'/>
|
783
|
+
<Layer>
|
784
|
+
<NominalRValue>0.0</NominalRValue>
|
785
|
+
<InsulationWidth>0.0</InsulationWidth>
|
786
|
+
</Layer>
|
787
|
+
</UnderSlabInsulation>
|
788
|
+
<extension>
|
789
|
+
<CarpetFraction>0.0</CarpetFraction>
|
790
|
+
<CarpetRValue>0.0</CarpetRValue>
|
791
|
+
</extension>
|
792
|
+
</Slab>
|
793
|
+
</Slabs>
|
794
|
+
<Windows>
|
795
|
+
<Window>
|
796
|
+
<SystemIdentifier id='Window1_2'/>
|
797
|
+
<Area>43.2</Area>
|
798
|
+
<Azimuth>0</Azimuth>
|
799
|
+
<UFactor>0.33</UFactor>
|
800
|
+
<SHGC>0.45</SHGC>
|
801
|
+
<InteriorShading>
|
802
|
+
<SystemIdentifier id='Window1InteriorShading_2'/>
|
803
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
804
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
805
|
+
</InteriorShading>
|
806
|
+
<FractionOperable>0.67</FractionOperable>
|
807
|
+
<AttachedToWall idref='Wall1_2'/>
|
808
|
+
</Window>
|
809
|
+
<Window>
|
810
|
+
<SystemIdentifier id='Window2_2'/>
|
811
|
+
<Area>43.2</Area>
|
812
|
+
<Azimuth>180</Azimuth>
|
813
|
+
<UFactor>0.33</UFactor>
|
814
|
+
<SHGC>0.45</SHGC>
|
815
|
+
<InteriorShading>
|
816
|
+
<SystemIdentifier id='Window2InteriorShading_2'/>
|
817
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
818
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
819
|
+
</InteriorShading>
|
820
|
+
<FractionOperable>0.67</FractionOperable>
|
821
|
+
<AttachedToWall idref='Wall1_2'/>
|
822
|
+
</Window>
|
823
|
+
<Window>
|
824
|
+
<SystemIdentifier id='Window3_2'/>
|
825
|
+
<Area>57.6</Area>
|
826
|
+
<Azimuth>270</Azimuth>
|
827
|
+
<UFactor>0.33</UFactor>
|
828
|
+
<SHGC>0.45</SHGC>
|
829
|
+
<InteriorShading>
|
830
|
+
<SystemIdentifier id='Window3InteriorShading_2'/>
|
831
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
832
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
833
|
+
</InteriorShading>
|
834
|
+
<FractionOperable>0.67</FractionOperable>
|
835
|
+
<AttachedToWall idref='Wall1_2'/>
|
836
|
+
</Window>
|
837
|
+
</Windows>
|
838
|
+
<Doors>
|
839
|
+
<Door>
|
840
|
+
<SystemIdentifier id='Door1_2'/>
|
841
|
+
<AttachedToWall idref='Wall1_2'/>
|
842
|
+
<Area>20.0</Area>
|
843
|
+
<Azimuth>180</Azimuth>
|
844
|
+
<RValue>4.4</RValue>
|
845
|
+
</Door>
|
846
|
+
</Doors>
|
847
|
+
</Enclosure>
|
848
|
+
<Systems>
|
849
|
+
<HVAC>
|
850
|
+
<HVACPlant>
|
851
|
+
<PrimarySystems>
|
852
|
+
<PrimaryHeatingSystem idref='HeatingSystem1_2'/>
|
853
|
+
<PrimaryCoolingSystem idref='CoolingSystem1_2'/>
|
854
|
+
</PrimarySystems>
|
855
|
+
<HeatingSystem>
|
856
|
+
<SystemIdentifier id='HeatingSystem1_2'/>
|
857
|
+
<HeatingSystemType>
|
858
|
+
<ElectricResistance/>
|
859
|
+
</HeatingSystemType>
|
860
|
+
<HeatingSystemFuel>electricity</HeatingSystemFuel>
|
861
|
+
<HeatingCapacity>12000.0</HeatingCapacity>
|
862
|
+
<AnnualHeatingEfficiency>
|
863
|
+
<Units>Percent</Units>
|
864
|
+
<Value>1.0</Value>
|
865
|
+
</AnnualHeatingEfficiency>
|
866
|
+
<FractionHeatLoadServed>1.0</FractionHeatLoadServed>
|
867
|
+
</HeatingSystem>
|
868
|
+
<CoolingSystem>
|
869
|
+
<SystemIdentifier id='CoolingSystem1_2'/>
|
870
|
+
<CoolingSystemType>room air conditioner</CoolingSystemType>
|
871
|
+
<CoolingSystemFuel>electricity</CoolingSystemFuel>
|
872
|
+
<CoolingCapacity>12000.0</CoolingCapacity>
|
873
|
+
<FractionCoolLoadServed>1.0</FractionCoolLoadServed>
|
874
|
+
<AnnualCoolingEfficiency>
|
875
|
+
<Units>EER</Units>
|
876
|
+
<Value>8.5</Value>
|
877
|
+
</AnnualCoolingEfficiency>
|
878
|
+
<SensibleHeatFraction>0.73</SensibleHeatFraction>
|
879
|
+
</CoolingSystem>
|
880
|
+
</HVACPlant>
|
881
|
+
<HVACControl>
|
882
|
+
<SystemIdentifier id='HVACControl1_2'/>
|
883
|
+
<SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
|
884
|
+
<SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
|
885
|
+
</HVACControl>
|
886
|
+
</HVAC>
|
887
|
+
<WaterHeating>
|
888
|
+
<WaterHeatingSystem>
|
889
|
+
<SystemIdentifier id='WaterHeatingSystem1_2'/>
|
890
|
+
<FuelType>electricity</FuelType>
|
891
|
+
<WaterHeaterType>storage water heater</WaterHeaterType>
|
892
|
+
<Location>conditioned space</Location>
|
893
|
+
<TankVolume>40.0</TankVolume>
|
894
|
+
<FractionDHWLoadServed>1.0</FractionDHWLoadServed>
|
895
|
+
<HeatingCapacity>18767.0</HeatingCapacity>
|
896
|
+
<EnergyFactor>0.95</EnergyFactor>
|
897
|
+
<HotWaterTemperature>125.0</HotWaterTemperature>
|
898
|
+
</WaterHeatingSystem>
|
899
|
+
<HotWaterDistribution>
|
900
|
+
<SystemIdentifier id='HotWaterDistribution1_2'/>
|
901
|
+
<SystemType>
|
902
|
+
<Standard>
|
903
|
+
<PipingLength>50.0</PipingLength>
|
904
|
+
</Standard>
|
905
|
+
</SystemType>
|
906
|
+
<PipeInsulation>
|
907
|
+
<PipeRValue>0.0</PipeRValue>
|
908
|
+
</PipeInsulation>
|
909
|
+
</HotWaterDistribution>
|
910
|
+
<WaterFixture>
|
911
|
+
<SystemIdentifier id='WaterFixture1_2'/>
|
912
|
+
<WaterFixtureType>shower head</WaterFixtureType>
|
913
|
+
<LowFlow>true</LowFlow>
|
914
|
+
</WaterFixture>
|
915
|
+
<WaterFixture>
|
916
|
+
<SystemIdentifier id='WaterFixture2_2'/>
|
917
|
+
<WaterFixtureType>faucet</WaterFixtureType>
|
918
|
+
<LowFlow>false</LowFlow>
|
919
|
+
</WaterFixture>
|
920
|
+
</WaterHeating>
|
921
|
+
</Systems>
|
922
|
+
<Appliances>
|
923
|
+
<ClothesWasher>
|
924
|
+
<SystemIdentifier id='ClothesWasher1_2'/>
|
925
|
+
<Location>conditioned space</Location>
|
926
|
+
<IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
|
927
|
+
<RatedAnnualkWh>380.0</RatedAnnualkWh>
|
928
|
+
<LabelElectricRate>0.12</LabelElectricRate>
|
929
|
+
<LabelGasRate>1.09</LabelGasRate>
|
930
|
+
<LabelAnnualGasCost>27.0</LabelAnnualGasCost>
|
931
|
+
<LabelUsage>6.0</LabelUsage>
|
932
|
+
<Capacity>3.2</Capacity>
|
933
|
+
</ClothesWasher>
|
934
|
+
<ClothesDryer>
|
935
|
+
<SystemIdentifier id='ClothesDryer1_2'/>
|
936
|
+
<Location>conditioned space</Location>
|
937
|
+
<FuelType>electricity</FuelType>
|
938
|
+
<CombinedEnergyFactor>3.73</CombinedEnergyFactor>
|
939
|
+
<Vented>true</Vented>
|
940
|
+
<VentedFlowRate>150.0</VentedFlowRate>
|
941
|
+
</ClothesDryer>
|
942
|
+
<Dishwasher>
|
943
|
+
<SystemIdentifier id='Dishwasher1_2'/>
|
944
|
+
<Location>conditioned space</Location>
|
945
|
+
<RatedAnnualkWh>307.0</RatedAnnualkWh>
|
946
|
+
<PlaceSettingCapacity>12</PlaceSettingCapacity>
|
947
|
+
<LabelElectricRate>0.12</LabelElectricRate>
|
948
|
+
<LabelGasRate>1.09</LabelGasRate>
|
949
|
+
<LabelAnnualGasCost>22.32</LabelAnnualGasCost>
|
950
|
+
<LabelUsage>4.0</LabelUsage>
|
951
|
+
</Dishwasher>
|
952
|
+
<Refrigerator>
|
953
|
+
<SystemIdentifier id='Refrigerator1_2'/>
|
954
|
+
<Location>conditioned space</Location>
|
955
|
+
<RatedAnnualkWh>650.0</RatedAnnualkWh>
|
956
|
+
<PrimaryIndicator>true</PrimaryIndicator>
|
957
|
+
</Refrigerator>
|
958
|
+
<CookingRange>
|
959
|
+
<SystemIdentifier id='CookingRange1_2'/>
|
960
|
+
<Location>conditioned space</Location>
|
961
|
+
<FuelType>electricity</FuelType>
|
962
|
+
<IsInduction>false</IsInduction>
|
963
|
+
</CookingRange>
|
964
|
+
<Oven>
|
965
|
+
<SystemIdentifier id='Oven1_2'/>
|
966
|
+
<IsConvection>false</IsConvection>
|
967
|
+
</Oven>
|
968
|
+
</Appliances>
|
969
|
+
<Lighting>
|
970
|
+
<LightingGroup>
|
971
|
+
<SystemIdentifier id='LightingGroup1_2'/>
|
972
|
+
<Location>interior</Location>
|
973
|
+
<FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
|
974
|
+
<LightingType>
|
975
|
+
<CompactFluorescent/>
|
976
|
+
</LightingType>
|
977
|
+
</LightingGroup>
|
978
|
+
<LightingGroup>
|
979
|
+
<SystemIdentifier id='LightingGroup2_2'/>
|
980
|
+
<Location>interior</Location>
|
981
|
+
<FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
|
982
|
+
<LightingType>
|
983
|
+
<FluorescentTube/>
|
984
|
+
</LightingType>
|
985
|
+
</LightingGroup>
|
986
|
+
<LightingGroup>
|
987
|
+
<SystemIdentifier id='LightingGroup3_2'/>
|
988
|
+
<Location>interior</Location>
|
989
|
+
<FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
|
990
|
+
<LightingType>
|
991
|
+
<LightEmittingDiode/>
|
992
|
+
</LightingType>
|
993
|
+
</LightingGroup>
|
994
|
+
<LightingGroup>
|
995
|
+
<SystemIdentifier id='LightingGroup4_2'/>
|
996
|
+
<Location>exterior</Location>
|
997
|
+
<FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
|
998
|
+
<LightingType>
|
999
|
+
<CompactFluorescent/>
|
1000
|
+
</LightingType>
|
1001
|
+
</LightingGroup>
|
1002
|
+
<LightingGroup>
|
1003
|
+
<SystemIdentifier id='LightingGroup5_2'/>
|
1004
|
+
<Location>exterior</Location>
|
1005
|
+
<FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
|
1006
|
+
<LightingType>
|
1007
|
+
<FluorescentTube/>
|
1008
|
+
</LightingType>
|
1009
|
+
</LightingGroup>
|
1010
|
+
<LightingGroup>
|
1011
|
+
<SystemIdentifier id='LightingGroup6_2'/>
|
1012
|
+
<Location>exterior</Location>
|
1013
|
+
<FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
|
1014
|
+
<LightingType>
|
1015
|
+
<LightEmittingDiode/>
|
1016
|
+
</LightingType>
|
1017
|
+
</LightingGroup>
|
1018
|
+
</Lighting>
|
1019
|
+
<MiscLoads>
|
1020
|
+
<PlugLoad>
|
1021
|
+
<SystemIdentifier id='PlugLoad1_2'/>
|
1022
|
+
<PlugLoadType>TV other</PlugLoadType>
|
1023
|
+
<Load>
|
1024
|
+
<Units>kWh/year</Units>
|
1025
|
+
<Value>620.0</Value>
|
1026
|
+
</Load>
|
1027
|
+
</PlugLoad>
|
1028
|
+
<PlugLoad>
|
1029
|
+
<SystemIdentifier id='PlugLoad2_2'/>
|
1030
|
+
<PlugLoadType>other</PlugLoadType>
|
1031
|
+
<Load>
|
1032
|
+
<Units>kWh/year</Units>
|
1033
|
+
<Value>2457.0</Value>
|
1034
|
+
</Load>
|
1035
|
+
<extension>
|
1036
|
+
<FracSensible>0.855</FracSensible>
|
1037
|
+
<FracLatent>0.045</FracLatent>
|
1038
|
+
</extension>
|
1039
|
+
</PlugLoad>
|
1040
|
+
</MiscLoads>
|
1041
|
+
</BuildingDetails>
|
1042
|
+
</Building>
|
1043
|
+
<Building>
|
1044
|
+
<BuildingID id='MyBuilding_3'/>
|
1045
|
+
<Site>
|
1046
|
+
<SiteID id='SiteID_3'/>
|
1047
|
+
<Address>
|
1048
|
+
<StateCode>CO</StateCode>
|
1049
|
+
</Address>
|
1050
|
+
</Site>
|
1051
|
+
<ProjectStatus>
|
1052
|
+
<EventType>proposed workscope</EventType>
|
1053
|
+
</ProjectStatus>
|
1054
|
+
<BuildingDetails>
|
1055
|
+
<BuildingSummary>
|
1056
|
+
<Site>
|
1057
|
+
<SiteType>suburban</SiteType>
|
1058
|
+
<Surroundings>attached on one side</Surroundings>
|
1059
|
+
<VerticalSurroundings>unit above and below</VerticalSurroundings>
|
1060
|
+
<AzimuthOfFrontOfHome>180</AzimuthOfFrontOfHome>
|
1061
|
+
<FuelTypesAvailable>
|
1062
|
+
<Fuel>electricity</Fuel>
|
1063
|
+
<Fuel>natural gas</Fuel>
|
1064
|
+
</FuelTypesAvailable>
|
1065
|
+
</Site>
|
1066
|
+
<BuildingConstruction>
|
1067
|
+
<ResidentialFacilityType>apartment unit</ResidentialFacilityType>
|
1068
|
+
<NumberofConditionedFloors>1.0</NumberofConditionedFloors>
|
1069
|
+
<NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
|
1070
|
+
<AverageCeilingHeight>8.0</AverageCeilingHeight>
|
1071
|
+
<NumberofBedrooms>3</NumberofBedrooms>
|
1072
|
+
<NumberofBathrooms>2</NumberofBathrooms>
|
1073
|
+
<ConditionedFloorArea>1200.0</ConditionedFloorArea>
|
1074
|
+
<ConditionedBuildingVolume>9600.0</ConditionedBuildingVolume>
|
1075
|
+
</BuildingConstruction>
|
1076
|
+
<extension>
|
1077
|
+
<SchedulesFilePath>../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv</SchedulesFilePath>
|
1078
|
+
</extension>
|
1079
|
+
</BuildingSummary>
|
1080
|
+
<ClimateandRiskZones>
|
1081
|
+
<ClimateZoneIECC>
|
1082
|
+
<Year>2006</Year>
|
1083
|
+
<ClimateZone>5B</ClimateZone>
|
1084
|
+
</ClimateZoneIECC>
|
1085
|
+
<WeatherStation>
|
1086
|
+
<SystemIdentifier id='WeatherStation_3'/>
|
1087
|
+
<Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
|
1088
|
+
<extension>
|
1089
|
+
<EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
|
1090
|
+
</extension>
|
1091
|
+
</WeatherStation>
|
1092
|
+
</ClimateandRiskZones>
|
1093
|
+
<Enclosure>
|
1094
|
+
<AirInfiltration>
|
1095
|
+
<AirInfiltrationMeasurement>
|
1096
|
+
<SystemIdentifier id='AirInfiltrationMeasurement1_3'/>
|
1097
|
+
<TypeOfInfiltrationLeakage>unit exterior only</TypeOfInfiltrationLeakage>
|
1098
|
+
<BuildingAirLeakage>
|
1099
|
+
<UnitofMeasure>ACHnatural</UnitofMeasure>
|
1100
|
+
<AirLeakage>0.375</AirLeakage>
|
1101
|
+
</BuildingAirLeakage>
|
1102
|
+
<InfiltrationVolume>9600.0</InfiltrationVolume>
|
1103
|
+
</AirInfiltrationMeasurement>
|
1104
|
+
</AirInfiltration>
|
1105
|
+
<Attics>
|
1106
|
+
<Attic>
|
1107
|
+
<SystemIdentifier id='Attic1_3'/>
|
1108
|
+
<AtticType>
|
1109
|
+
<BelowApartment/>
|
1110
|
+
</AtticType>
|
1111
|
+
</Attic>
|
1112
|
+
</Attics>
|
1113
|
+
<Foundations>
|
1114
|
+
<Foundation>
|
1115
|
+
<SystemIdentifier id='Foundation1_3'/>
|
1116
|
+
<FoundationType>
|
1117
|
+
<AboveApartment/>
|
1118
|
+
</FoundationType>
|
1119
|
+
</Foundation>
|
1120
|
+
</Foundations>
|
1121
|
+
<Walls>
|
1122
|
+
<Wall>
|
1123
|
+
<SystemIdentifier id='Wall1_3'/>
|
1124
|
+
<ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
|
1125
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
1126
|
+
<WallType>
|
1127
|
+
<WoodStud/>
|
1128
|
+
</WallType>
|
1129
|
+
<Area>800.0</Area>
|
1130
|
+
<Siding>wood siding</Siding>
|
1131
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
1132
|
+
<Emittance>0.92</Emittance>
|
1133
|
+
<InteriorFinish>
|
1134
|
+
<Type>gypsum board</Type>
|
1135
|
+
</InteriorFinish>
|
1136
|
+
<Insulation>
|
1137
|
+
<SystemIdentifier id='Wall1Insulation_3'/>
|
1138
|
+
<AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
|
1139
|
+
</Insulation>
|
1140
|
+
</Wall>
|
1141
|
+
<Wall>
|
1142
|
+
<SystemIdentifier id='Wall2_3'/>
|
1143
|
+
<ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
|
1144
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
1145
|
+
<WallType>
|
1146
|
+
<WoodStud/>
|
1147
|
+
</WallType>
|
1148
|
+
<Area>320.0</Area>
|
1149
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
1150
|
+
<Emittance>0.92</Emittance>
|
1151
|
+
<InteriorFinish>
|
1152
|
+
<Type>gypsum board</Type>
|
1153
|
+
</InteriorFinish>
|
1154
|
+
<Insulation>
|
1155
|
+
<SystemIdentifier id='Wall2Insulation_3'/>
|
1156
|
+
<AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
|
1157
|
+
</Insulation>
|
1158
|
+
</Wall>
|
1159
|
+
</Walls>
|
1160
|
+
<Floors>
|
1161
|
+
<Floor>
|
1162
|
+
<SystemIdentifier id='Floor1_3'/>
|
1163
|
+
<ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
|
1164
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
1165
|
+
<FloorOrCeiling>floor</FloorOrCeiling>
|
1166
|
+
<FloorType>
|
1167
|
+
<WoodFrame/>
|
1168
|
+
</FloorType>
|
1169
|
+
<Area>1200.0</Area>
|
1170
|
+
<Insulation>
|
1171
|
+
<SystemIdentifier id='Floor1Insulation_3'/>
|
1172
|
+
<AssemblyEffectiveRValue>2.1</AssemblyEffectiveRValue>
|
1173
|
+
</Insulation>
|
1174
|
+
</Floor>
|
1175
|
+
<Floor>
|
1176
|
+
<SystemIdentifier id='Floor2_3'/>
|
1177
|
+
<ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
|
1178
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
1179
|
+
<FloorOrCeiling>ceiling</FloorOrCeiling>
|
1180
|
+
<FloorType>
|
1181
|
+
<WoodFrame/>
|
1182
|
+
</FloorType>
|
1183
|
+
<Area>1200.0</Area>
|
1184
|
+
<InteriorFinish>
|
1185
|
+
<Type>gypsum board</Type>
|
1186
|
+
</InteriorFinish>
|
1187
|
+
<Insulation>
|
1188
|
+
<SystemIdentifier id='Floor2Insulation_3'/>
|
1189
|
+
<AssemblyEffectiveRValue>2.1</AssemblyEffectiveRValue>
|
1190
|
+
</Insulation>
|
1191
|
+
</Floor>
|
1192
|
+
</Floors>
|
1193
|
+
<Windows>
|
1194
|
+
<Window>
|
1195
|
+
<SystemIdentifier id='Window1_3'/>
|
1196
|
+
<Area>43.2</Area>
|
1197
|
+
<Azimuth>0</Azimuth>
|
1198
|
+
<UFactor>0.33</UFactor>
|
1199
|
+
<SHGC>0.45</SHGC>
|
1200
|
+
<InteriorShading>
|
1201
|
+
<SystemIdentifier id='Window1InteriorShading_3'/>
|
1202
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
1203
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
1204
|
+
</InteriorShading>
|
1205
|
+
<FractionOperable>0.67</FractionOperable>
|
1206
|
+
<AttachedToWall idref='Wall1_3'/>
|
1207
|
+
</Window>
|
1208
|
+
<Window>
|
1209
|
+
<SystemIdentifier id='Window2_3'/>
|
1210
|
+
<Area>43.2</Area>
|
1211
|
+
<Azimuth>180</Azimuth>
|
1212
|
+
<UFactor>0.33</UFactor>
|
1213
|
+
<SHGC>0.45</SHGC>
|
1214
|
+
<InteriorShading>
|
1215
|
+
<SystemIdentifier id='Window2InteriorShading_3'/>
|
1216
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
1217
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
1218
|
+
</InteriorShading>
|
1219
|
+
<FractionOperable>0.67</FractionOperable>
|
1220
|
+
<AttachedToWall idref='Wall1_3'/>
|
1221
|
+
</Window>
|
1222
|
+
<Window>
|
1223
|
+
<SystemIdentifier id='Window3_3'/>
|
1224
|
+
<Area>57.6</Area>
|
1225
|
+
<Azimuth>270</Azimuth>
|
1226
|
+
<UFactor>0.33</UFactor>
|
1227
|
+
<SHGC>0.45</SHGC>
|
1228
|
+
<InteriorShading>
|
1229
|
+
<SystemIdentifier id='Window3InteriorShading_3'/>
|
1230
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
1231
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
1232
|
+
</InteriorShading>
|
1233
|
+
<FractionOperable>0.67</FractionOperable>
|
1234
|
+
<AttachedToWall idref='Wall1_3'/>
|
1235
|
+
</Window>
|
1236
|
+
</Windows>
|
1237
|
+
<Doors>
|
1238
|
+
<Door>
|
1239
|
+
<SystemIdentifier id='Door1_3'/>
|
1240
|
+
<AttachedToWall idref='Wall1_3'/>
|
1241
|
+
<Area>20.0</Area>
|
1242
|
+
<Azimuth>180</Azimuth>
|
1243
|
+
<RValue>4.4</RValue>
|
1244
|
+
</Door>
|
1245
|
+
</Doors>
|
1246
|
+
</Enclosure>
|
1247
|
+
<Systems>
|
1248
|
+
<HVAC>
|
1249
|
+
<HVACPlant>
|
1250
|
+
<PrimarySystems>
|
1251
|
+
<PrimaryHeatingSystem idref='HeatingSystem1_3'/>
|
1252
|
+
<PrimaryCoolingSystem idref='CoolingSystem1_3'/>
|
1253
|
+
</PrimarySystems>
|
1254
|
+
<HeatingSystem>
|
1255
|
+
<SystemIdentifier id='HeatingSystem1_3'/>
|
1256
|
+
<HeatingSystemType>
|
1257
|
+
<ElectricResistance/>
|
1258
|
+
</HeatingSystemType>
|
1259
|
+
<HeatingSystemFuel>electricity</HeatingSystemFuel>
|
1260
|
+
<HeatingCapacity>12000.0</HeatingCapacity>
|
1261
|
+
<AnnualHeatingEfficiency>
|
1262
|
+
<Units>Percent</Units>
|
1263
|
+
<Value>1.0</Value>
|
1264
|
+
</AnnualHeatingEfficiency>
|
1265
|
+
<FractionHeatLoadServed>1.0</FractionHeatLoadServed>
|
1266
|
+
</HeatingSystem>
|
1267
|
+
<CoolingSystem>
|
1268
|
+
<SystemIdentifier id='CoolingSystem1_3'/>
|
1269
|
+
<CoolingSystemType>room air conditioner</CoolingSystemType>
|
1270
|
+
<CoolingSystemFuel>electricity</CoolingSystemFuel>
|
1271
|
+
<CoolingCapacity>12000.0</CoolingCapacity>
|
1272
|
+
<FractionCoolLoadServed>1.0</FractionCoolLoadServed>
|
1273
|
+
<AnnualCoolingEfficiency>
|
1274
|
+
<Units>EER</Units>
|
1275
|
+
<Value>8.5</Value>
|
1276
|
+
</AnnualCoolingEfficiency>
|
1277
|
+
<SensibleHeatFraction>0.73</SensibleHeatFraction>
|
1278
|
+
</CoolingSystem>
|
1279
|
+
</HVACPlant>
|
1280
|
+
<HVACControl>
|
1281
|
+
<SystemIdentifier id='HVACControl1_3'/>
|
1282
|
+
<SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
|
1283
|
+
<SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
|
1284
|
+
</HVACControl>
|
1285
|
+
</HVAC>
|
1286
|
+
<WaterHeating>
|
1287
|
+
<WaterHeatingSystem>
|
1288
|
+
<SystemIdentifier id='WaterHeatingSystem1_3'/>
|
1289
|
+
<FuelType>electricity</FuelType>
|
1290
|
+
<WaterHeaterType>storage water heater</WaterHeaterType>
|
1291
|
+
<Location>conditioned space</Location>
|
1292
|
+
<TankVolume>40.0</TankVolume>
|
1293
|
+
<FractionDHWLoadServed>1.0</FractionDHWLoadServed>
|
1294
|
+
<HeatingCapacity>18767.0</HeatingCapacity>
|
1295
|
+
<EnergyFactor>0.95</EnergyFactor>
|
1296
|
+
<HotWaterTemperature>125.0</HotWaterTemperature>
|
1297
|
+
</WaterHeatingSystem>
|
1298
|
+
<HotWaterDistribution>
|
1299
|
+
<SystemIdentifier id='HotWaterDistribution1_3'/>
|
1300
|
+
<SystemType>
|
1301
|
+
<Standard>
|
1302
|
+
<PipingLength>50.0</PipingLength>
|
1303
|
+
</Standard>
|
1304
|
+
</SystemType>
|
1305
|
+
<PipeInsulation>
|
1306
|
+
<PipeRValue>0.0</PipeRValue>
|
1307
|
+
</PipeInsulation>
|
1308
|
+
</HotWaterDistribution>
|
1309
|
+
<WaterFixture>
|
1310
|
+
<SystemIdentifier id='WaterFixture1_3'/>
|
1311
|
+
<WaterFixtureType>shower head</WaterFixtureType>
|
1312
|
+
<LowFlow>true</LowFlow>
|
1313
|
+
</WaterFixture>
|
1314
|
+
<WaterFixture>
|
1315
|
+
<SystemIdentifier id='WaterFixture2_3'/>
|
1316
|
+
<WaterFixtureType>faucet</WaterFixtureType>
|
1317
|
+
<LowFlow>false</LowFlow>
|
1318
|
+
</WaterFixture>
|
1319
|
+
</WaterHeating>
|
1320
|
+
</Systems>
|
1321
|
+
<Appliances>
|
1322
|
+
<ClothesWasher>
|
1323
|
+
<SystemIdentifier id='ClothesWasher1_3'/>
|
1324
|
+
<Location>conditioned space</Location>
|
1325
|
+
<IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
|
1326
|
+
<RatedAnnualkWh>380.0</RatedAnnualkWh>
|
1327
|
+
<LabelElectricRate>0.12</LabelElectricRate>
|
1328
|
+
<LabelGasRate>1.09</LabelGasRate>
|
1329
|
+
<LabelAnnualGasCost>27.0</LabelAnnualGasCost>
|
1330
|
+
<LabelUsage>6.0</LabelUsage>
|
1331
|
+
<Capacity>3.2</Capacity>
|
1332
|
+
</ClothesWasher>
|
1333
|
+
<ClothesDryer>
|
1334
|
+
<SystemIdentifier id='ClothesDryer1_3'/>
|
1335
|
+
<Location>conditioned space</Location>
|
1336
|
+
<FuelType>electricity</FuelType>
|
1337
|
+
<CombinedEnergyFactor>3.73</CombinedEnergyFactor>
|
1338
|
+
<Vented>true</Vented>
|
1339
|
+
<VentedFlowRate>150.0</VentedFlowRate>
|
1340
|
+
</ClothesDryer>
|
1341
|
+
<Dishwasher>
|
1342
|
+
<SystemIdentifier id='Dishwasher1_3'/>
|
1343
|
+
<Location>conditioned space</Location>
|
1344
|
+
<RatedAnnualkWh>307.0</RatedAnnualkWh>
|
1345
|
+
<PlaceSettingCapacity>12</PlaceSettingCapacity>
|
1346
|
+
<LabelElectricRate>0.12</LabelElectricRate>
|
1347
|
+
<LabelGasRate>1.09</LabelGasRate>
|
1348
|
+
<LabelAnnualGasCost>22.32</LabelAnnualGasCost>
|
1349
|
+
<LabelUsage>4.0</LabelUsage>
|
1350
|
+
</Dishwasher>
|
1351
|
+
<Refrigerator>
|
1352
|
+
<SystemIdentifier id='Refrigerator1_3'/>
|
1353
|
+
<Location>conditioned space</Location>
|
1354
|
+
<RatedAnnualkWh>650.0</RatedAnnualkWh>
|
1355
|
+
<PrimaryIndicator>true</PrimaryIndicator>
|
1356
|
+
</Refrigerator>
|
1357
|
+
<CookingRange>
|
1358
|
+
<SystemIdentifier id='CookingRange1_3'/>
|
1359
|
+
<Location>conditioned space</Location>
|
1360
|
+
<FuelType>electricity</FuelType>
|
1361
|
+
<IsInduction>false</IsInduction>
|
1362
|
+
</CookingRange>
|
1363
|
+
<Oven>
|
1364
|
+
<SystemIdentifier id='Oven1_3'/>
|
1365
|
+
<IsConvection>false</IsConvection>
|
1366
|
+
</Oven>
|
1367
|
+
</Appliances>
|
1368
|
+
<Lighting>
|
1369
|
+
<LightingGroup>
|
1370
|
+
<SystemIdentifier id='LightingGroup1_3'/>
|
1371
|
+
<Location>interior</Location>
|
1372
|
+
<FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
|
1373
|
+
<LightingType>
|
1374
|
+
<CompactFluorescent/>
|
1375
|
+
</LightingType>
|
1376
|
+
</LightingGroup>
|
1377
|
+
<LightingGroup>
|
1378
|
+
<SystemIdentifier id='LightingGroup2_3'/>
|
1379
|
+
<Location>interior</Location>
|
1380
|
+
<FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
|
1381
|
+
<LightingType>
|
1382
|
+
<FluorescentTube/>
|
1383
|
+
</LightingType>
|
1384
|
+
</LightingGroup>
|
1385
|
+
<LightingGroup>
|
1386
|
+
<SystemIdentifier id='LightingGroup3_3'/>
|
1387
|
+
<Location>interior</Location>
|
1388
|
+
<FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
|
1389
|
+
<LightingType>
|
1390
|
+
<LightEmittingDiode/>
|
1391
|
+
</LightingType>
|
1392
|
+
</LightingGroup>
|
1393
|
+
<LightingGroup>
|
1394
|
+
<SystemIdentifier id='LightingGroup4_3'/>
|
1395
|
+
<Location>exterior</Location>
|
1396
|
+
<FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
|
1397
|
+
<LightingType>
|
1398
|
+
<CompactFluorescent/>
|
1399
|
+
</LightingType>
|
1400
|
+
</LightingGroup>
|
1401
|
+
<LightingGroup>
|
1402
|
+
<SystemIdentifier id='LightingGroup5_3'/>
|
1403
|
+
<Location>exterior</Location>
|
1404
|
+
<FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
|
1405
|
+
<LightingType>
|
1406
|
+
<FluorescentTube/>
|
1407
|
+
</LightingType>
|
1408
|
+
</LightingGroup>
|
1409
|
+
<LightingGroup>
|
1410
|
+
<SystemIdentifier id='LightingGroup6_3'/>
|
1411
|
+
<Location>exterior</Location>
|
1412
|
+
<FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
|
1413
|
+
<LightingType>
|
1414
|
+
<LightEmittingDiode/>
|
1415
|
+
</LightingType>
|
1416
|
+
</LightingGroup>
|
1417
|
+
</Lighting>
|
1418
|
+
<MiscLoads>
|
1419
|
+
<PlugLoad>
|
1420
|
+
<SystemIdentifier id='PlugLoad1_3'/>
|
1421
|
+
<PlugLoadType>TV other</PlugLoadType>
|
1422
|
+
<Load>
|
1423
|
+
<Units>kWh/year</Units>
|
1424
|
+
<Value>620.0</Value>
|
1425
|
+
</Load>
|
1426
|
+
</PlugLoad>
|
1427
|
+
<PlugLoad>
|
1428
|
+
<SystemIdentifier id='PlugLoad2_3'/>
|
1429
|
+
<PlugLoadType>other</PlugLoadType>
|
1430
|
+
<Load>
|
1431
|
+
<Units>kWh/year</Units>
|
1432
|
+
<Value>2457.0</Value>
|
1433
|
+
</Load>
|
1434
|
+
<extension>
|
1435
|
+
<FracSensible>0.855</FracSensible>
|
1436
|
+
<FracLatent>0.045</FracLatent>
|
1437
|
+
</extension>
|
1438
|
+
</PlugLoad>
|
1439
|
+
</MiscLoads>
|
1440
|
+
</BuildingDetails>
|
1441
|
+
</Building>
|
1442
|
+
<Building>
|
1443
|
+
<BuildingID id='MyBuilding_4'/>
|
1444
|
+
<Site>
|
1445
|
+
<SiteID id='SiteID_4'/>
|
1446
|
+
<Address>
|
1447
|
+
<StateCode>CO</StateCode>
|
1448
|
+
</Address>
|
1449
|
+
</Site>
|
1450
|
+
<ProjectStatus>
|
1451
|
+
<EventType>proposed workscope</EventType>
|
1452
|
+
</ProjectStatus>
|
1453
|
+
<BuildingDetails>
|
1454
|
+
<BuildingSummary>
|
1455
|
+
<Site>
|
1456
|
+
<SiteType>suburban</SiteType>
|
1457
|
+
<Surroundings>attached on one side</Surroundings>
|
1458
|
+
<VerticalSurroundings>unit above and below</VerticalSurroundings>
|
1459
|
+
<AzimuthOfFrontOfHome>180</AzimuthOfFrontOfHome>
|
1460
|
+
<FuelTypesAvailable>
|
1461
|
+
<Fuel>electricity</Fuel>
|
1462
|
+
<Fuel>natural gas</Fuel>
|
1463
|
+
</FuelTypesAvailable>
|
1464
|
+
</Site>
|
1465
|
+
<BuildingConstruction>
|
1466
|
+
<ResidentialFacilityType>apartment unit</ResidentialFacilityType>
|
1467
|
+
<NumberofConditionedFloors>1.0</NumberofConditionedFloors>
|
1468
|
+
<NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
|
1469
|
+
<AverageCeilingHeight>8.0</AverageCeilingHeight>
|
1470
|
+
<NumberofBedrooms>3</NumberofBedrooms>
|
1471
|
+
<NumberofBathrooms>2</NumberofBathrooms>
|
1472
|
+
<ConditionedFloorArea>1200.0</ConditionedFloorArea>
|
1473
|
+
<ConditionedBuildingVolume>9600.0</ConditionedBuildingVolume>
|
1474
|
+
</BuildingConstruction>
|
1475
|
+
<extension>
|
1476
|
+
<SchedulesFilePath>../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_4.csv</SchedulesFilePath>
|
1477
|
+
</extension>
|
1478
|
+
</BuildingSummary>
|
1479
|
+
<ClimateandRiskZones>
|
1480
|
+
<ClimateZoneIECC>
|
1481
|
+
<Year>2006</Year>
|
1482
|
+
<ClimateZone>5B</ClimateZone>
|
1483
|
+
</ClimateZoneIECC>
|
1484
|
+
<WeatherStation>
|
1485
|
+
<SystemIdentifier id='WeatherStation_4'/>
|
1486
|
+
<Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
|
1487
|
+
<extension>
|
1488
|
+
<EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
|
1489
|
+
</extension>
|
1490
|
+
</WeatherStation>
|
1491
|
+
</ClimateandRiskZones>
|
1492
|
+
<Enclosure>
|
1493
|
+
<AirInfiltration>
|
1494
|
+
<AirInfiltrationMeasurement>
|
1495
|
+
<SystemIdentifier id='AirInfiltrationMeasurement1_4'/>
|
1496
|
+
<TypeOfInfiltrationLeakage>unit exterior only</TypeOfInfiltrationLeakage>
|
1497
|
+
<BuildingAirLeakage>
|
1498
|
+
<UnitofMeasure>ACHnatural</UnitofMeasure>
|
1499
|
+
<AirLeakage>0.375</AirLeakage>
|
1500
|
+
</BuildingAirLeakage>
|
1501
|
+
<InfiltrationVolume>9600.0</InfiltrationVolume>
|
1502
|
+
</AirInfiltrationMeasurement>
|
1503
|
+
</AirInfiltration>
|
1504
|
+
<Attics>
|
1505
|
+
<Attic>
|
1506
|
+
<SystemIdentifier id='Attic1_4'/>
|
1507
|
+
<AtticType>
|
1508
|
+
<BelowApartment/>
|
1509
|
+
</AtticType>
|
1510
|
+
</Attic>
|
1511
|
+
</Attics>
|
1512
|
+
<Foundations>
|
1513
|
+
<Foundation>
|
1514
|
+
<SystemIdentifier id='Foundation1_4'/>
|
1515
|
+
<FoundationType>
|
1516
|
+
<AboveApartment/>
|
1517
|
+
</FoundationType>
|
1518
|
+
</Foundation>
|
1519
|
+
</Foundations>
|
1520
|
+
<Walls>
|
1521
|
+
<Wall>
|
1522
|
+
<SystemIdentifier id='Wall1_4'/>
|
1523
|
+
<ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
|
1524
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
1525
|
+
<WallType>
|
1526
|
+
<WoodStud/>
|
1527
|
+
</WallType>
|
1528
|
+
<Area>800.0</Area>
|
1529
|
+
<Siding>wood siding</Siding>
|
1530
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
1531
|
+
<Emittance>0.92</Emittance>
|
1532
|
+
<InteriorFinish>
|
1533
|
+
<Type>gypsum board</Type>
|
1534
|
+
</InteriorFinish>
|
1535
|
+
<Insulation>
|
1536
|
+
<SystemIdentifier id='Wall1Insulation_4'/>
|
1537
|
+
<AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
|
1538
|
+
</Insulation>
|
1539
|
+
</Wall>
|
1540
|
+
<Wall>
|
1541
|
+
<SystemIdentifier id='Wall2_4'/>
|
1542
|
+
<ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
|
1543
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
1544
|
+
<WallType>
|
1545
|
+
<WoodStud/>
|
1546
|
+
</WallType>
|
1547
|
+
<Area>320.0</Area>
|
1548
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
1549
|
+
<Emittance>0.92</Emittance>
|
1550
|
+
<InteriorFinish>
|
1551
|
+
<Type>gypsum board</Type>
|
1552
|
+
</InteriorFinish>
|
1553
|
+
<Insulation>
|
1554
|
+
<SystemIdentifier id='Wall2Insulation_4'/>
|
1555
|
+
<AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
|
1556
|
+
</Insulation>
|
1557
|
+
</Wall>
|
1558
|
+
</Walls>
|
1559
|
+
<Floors>
|
1560
|
+
<Floor>
|
1561
|
+
<SystemIdentifier id='Floor1_4'/>
|
1562
|
+
<ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
|
1563
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
1564
|
+
<FloorOrCeiling>floor</FloorOrCeiling>
|
1565
|
+
<FloorType>
|
1566
|
+
<WoodFrame/>
|
1567
|
+
</FloorType>
|
1568
|
+
<Area>1200.0</Area>
|
1569
|
+
<Insulation>
|
1570
|
+
<SystemIdentifier id='Floor1Insulation_4'/>
|
1571
|
+
<AssemblyEffectiveRValue>2.1</AssemblyEffectiveRValue>
|
1572
|
+
</Insulation>
|
1573
|
+
</Floor>
|
1574
|
+
<Floor>
|
1575
|
+
<SystemIdentifier id='Floor2_4'/>
|
1576
|
+
<ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
|
1577
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
1578
|
+
<FloorOrCeiling>ceiling</FloorOrCeiling>
|
1579
|
+
<FloorType>
|
1580
|
+
<WoodFrame/>
|
1581
|
+
</FloorType>
|
1582
|
+
<Area>1200.0</Area>
|
1583
|
+
<InteriorFinish>
|
1584
|
+
<Type>gypsum board</Type>
|
1585
|
+
</InteriorFinish>
|
1586
|
+
<Insulation>
|
1587
|
+
<SystemIdentifier id='Floor2Insulation_4'/>
|
1588
|
+
<AssemblyEffectiveRValue>2.1</AssemblyEffectiveRValue>
|
1589
|
+
</Insulation>
|
1590
|
+
</Floor>
|
1591
|
+
</Floors>
|
1592
|
+
<Windows>
|
1593
|
+
<Window>
|
1594
|
+
<SystemIdentifier id='Window1_4'/>
|
1595
|
+
<Area>43.2</Area>
|
1596
|
+
<Azimuth>0</Azimuth>
|
1597
|
+
<UFactor>0.33</UFactor>
|
1598
|
+
<SHGC>0.45</SHGC>
|
1599
|
+
<InteriorShading>
|
1600
|
+
<SystemIdentifier id='Window1InteriorShading_4'/>
|
1601
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
1602
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
1603
|
+
</InteriorShading>
|
1604
|
+
<FractionOperable>0.67</FractionOperable>
|
1605
|
+
<AttachedToWall idref='Wall1_4'/>
|
1606
|
+
</Window>
|
1607
|
+
<Window>
|
1608
|
+
<SystemIdentifier id='Window2_4'/>
|
1609
|
+
<Area>43.2</Area>
|
1610
|
+
<Azimuth>180</Azimuth>
|
1611
|
+
<UFactor>0.33</UFactor>
|
1612
|
+
<SHGC>0.45</SHGC>
|
1613
|
+
<InteriorShading>
|
1614
|
+
<SystemIdentifier id='Window2InteriorShading_4'/>
|
1615
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
1616
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
1617
|
+
</InteriorShading>
|
1618
|
+
<FractionOperable>0.67</FractionOperable>
|
1619
|
+
<AttachedToWall idref='Wall1_4'/>
|
1620
|
+
</Window>
|
1621
|
+
<Window>
|
1622
|
+
<SystemIdentifier id='Window3_4'/>
|
1623
|
+
<Area>57.6</Area>
|
1624
|
+
<Azimuth>270</Azimuth>
|
1625
|
+
<UFactor>0.33</UFactor>
|
1626
|
+
<SHGC>0.45</SHGC>
|
1627
|
+
<InteriorShading>
|
1628
|
+
<SystemIdentifier id='Window3InteriorShading_4'/>
|
1629
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
1630
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
1631
|
+
</InteriorShading>
|
1632
|
+
<FractionOperable>0.67</FractionOperable>
|
1633
|
+
<AttachedToWall idref='Wall1_4'/>
|
1634
|
+
</Window>
|
1635
|
+
</Windows>
|
1636
|
+
<Doors>
|
1637
|
+
<Door>
|
1638
|
+
<SystemIdentifier id='Door1_4'/>
|
1639
|
+
<AttachedToWall idref='Wall1_4'/>
|
1640
|
+
<Area>20.0</Area>
|
1641
|
+
<Azimuth>180</Azimuth>
|
1642
|
+
<RValue>4.4</RValue>
|
1643
|
+
</Door>
|
1644
|
+
</Doors>
|
1645
|
+
</Enclosure>
|
1646
|
+
<Systems>
|
1647
|
+
<HVAC>
|
1648
|
+
<HVACPlant>
|
1649
|
+
<PrimarySystems>
|
1650
|
+
<PrimaryHeatingSystem idref='HeatingSystem1_4'/>
|
1651
|
+
<PrimaryCoolingSystem idref='CoolingSystem1_4'/>
|
1652
|
+
</PrimarySystems>
|
1653
|
+
<HeatingSystem>
|
1654
|
+
<SystemIdentifier id='HeatingSystem1_4'/>
|
1655
|
+
<HeatingSystemType>
|
1656
|
+
<ElectricResistance/>
|
1657
|
+
</HeatingSystemType>
|
1658
|
+
<HeatingSystemFuel>electricity</HeatingSystemFuel>
|
1659
|
+
<HeatingCapacity>12000.0</HeatingCapacity>
|
1660
|
+
<AnnualHeatingEfficiency>
|
1661
|
+
<Units>Percent</Units>
|
1662
|
+
<Value>1.0</Value>
|
1663
|
+
</AnnualHeatingEfficiency>
|
1664
|
+
<FractionHeatLoadServed>1.0</FractionHeatLoadServed>
|
1665
|
+
</HeatingSystem>
|
1666
|
+
<CoolingSystem>
|
1667
|
+
<SystemIdentifier id='CoolingSystem1_4'/>
|
1668
|
+
<CoolingSystemType>room air conditioner</CoolingSystemType>
|
1669
|
+
<CoolingSystemFuel>electricity</CoolingSystemFuel>
|
1670
|
+
<CoolingCapacity>12000.0</CoolingCapacity>
|
1671
|
+
<FractionCoolLoadServed>1.0</FractionCoolLoadServed>
|
1672
|
+
<AnnualCoolingEfficiency>
|
1673
|
+
<Units>EER</Units>
|
1674
|
+
<Value>8.5</Value>
|
1675
|
+
</AnnualCoolingEfficiency>
|
1676
|
+
<SensibleHeatFraction>0.73</SensibleHeatFraction>
|
1677
|
+
</CoolingSystem>
|
1678
|
+
</HVACPlant>
|
1679
|
+
<HVACControl>
|
1680
|
+
<SystemIdentifier id='HVACControl1_4'/>
|
1681
|
+
<SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
|
1682
|
+
<SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
|
1683
|
+
</HVACControl>
|
1684
|
+
</HVAC>
|
1685
|
+
<WaterHeating>
|
1686
|
+
<WaterHeatingSystem>
|
1687
|
+
<SystemIdentifier id='WaterHeatingSystem1_4'/>
|
1688
|
+
<FuelType>electricity</FuelType>
|
1689
|
+
<WaterHeaterType>storage water heater</WaterHeaterType>
|
1690
|
+
<Location>conditioned space</Location>
|
1691
|
+
<TankVolume>40.0</TankVolume>
|
1692
|
+
<FractionDHWLoadServed>1.0</FractionDHWLoadServed>
|
1693
|
+
<HeatingCapacity>18767.0</HeatingCapacity>
|
1694
|
+
<EnergyFactor>0.95</EnergyFactor>
|
1695
|
+
<HotWaterTemperature>125.0</HotWaterTemperature>
|
1696
|
+
</WaterHeatingSystem>
|
1697
|
+
<HotWaterDistribution>
|
1698
|
+
<SystemIdentifier id='HotWaterDistribution1_4'/>
|
1699
|
+
<SystemType>
|
1700
|
+
<Standard>
|
1701
|
+
<PipingLength>50.0</PipingLength>
|
1702
|
+
</Standard>
|
1703
|
+
</SystemType>
|
1704
|
+
<PipeInsulation>
|
1705
|
+
<PipeRValue>0.0</PipeRValue>
|
1706
|
+
</PipeInsulation>
|
1707
|
+
</HotWaterDistribution>
|
1708
|
+
<WaterFixture>
|
1709
|
+
<SystemIdentifier id='WaterFixture1_4'/>
|
1710
|
+
<WaterFixtureType>shower head</WaterFixtureType>
|
1711
|
+
<LowFlow>true</LowFlow>
|
1712
|
+
</WaterFixture>
|
1713
|
+
<WaterFixture>
|
1714
|
+
<SystemIdentifier id='WaterFixture2_4'/>
|
1715
|
+
<WaterFixtureType>faucet</WaterFixtureType>
|
1716
|
+
<LowFlow>false</LowFlow>
|
1717
|
+
</WaterFixture>
|
1718
|
+
</WaterHeating>
|
1719
|
+
</Systems>
|
1720
|
+
<Appliances>
|
1721
|
+
<ClothesWasher>
|
1722
|
+
<SystemIdentifier id='ClothesWasher1_4'/>
|
1723
|
+
<Location>conditioned space</Location>
|
1724
|
+
<IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
|
1725
|
+
<RatedAnnualkWh>380.0</RatedAnnualkWh>
|
1726
|
+
<LabelElectricRate>0.12</LabelElectricRate>
|
1727
|
+
<LabelGasRate>1.09</LabelGasRate>
|
1728
|
+
<LabelAnnualGasCost>27.0</LabelAnnualGasCost>
|
1729
|
+
<LabelUsage>6.0</LabelUsage>
|
1730
|
+
<Capacity>3.2</Capacity>
|
1731
|
+
</ClothesWasher>
|
1732
|
+
<ClothesDryer>
|
1733
|
+
<SystemIdentifier id='ClothesDryer1_4'/>
|
1734
|
+
<Location>conditioned space</Location>
|
1735
|
+
<FuelType>electricity</FuelType>
|
1736
|
+
<CombinedEnergyFactor>3.73</CombinedEnergyFactor>
|
1737
|
+
<Vented>true</Vented>
|
1738
|
+
<VentedFlowRate>150.0</VentedFlowRate>
|
1739
|
+
</ClothesDryer>
|
1740
|
+
<Dishwasher>
|
1741
|
+
<SystemIdentifier id='Dishwasher1_4'/>
|
1742
|
+
<Location>conditioned space</Location>
|
1743
|
+
<RatedAnnualkWh>307.0</RatedAnnualkWh>
|
1744
|
+
<PlaceSettingCapacity>12</PlaceSettingCapacity>
|
1745
|
+
<LabelElectricRate>0.12</LabelElectricRate>
|
1746
|
+
<LabelGasRate>1.09</LabelGasRate>
|
1747
|
+
<LabelAnnualGasCost>22.32</LabelAnnualGasCost>
|
1748
|
+
<LabelUsage>4.0</LabelUsage>
|
1749
|
+
</Dishwasher>
|
1750
|
+
<Refrigerator>
|
1751
|
+
<SystemIdentifier id='Refrigerator1_4'/>
|
1752
|
+
<Location>conditioned space</Location>
|
1753
|
+
<RatedAnnualkWh>650.0</RatedAnnualkWh>
|
1754
|
+
<PrimaryIndicator>true</PrimaryIndicator>
|
1755
|
+
</Refrigerator>
|
1756
|
+
<CookingRange>
|
1757
|
+
<SystemIdentifier id='CookingRange1_4'/>
|
1758
|
+
<Location>conditioned space</Location>
|
1759
|
+
<FuelType>electricity</FuelType>
|
1760
|
+
<IsInduction>false</IsInduction>
|
1761
|
+
</CookingRange>
|
1762
|
+
<Oven>
|
1763
|
+
<SystemIdentifier id='Oven1_4'/>
|
1764
|
+
<IsConvection>false</IsConvection>
|
1765
|
+
</Oven>
|
1766
|
+
</Appliances>
|
1767
|
+
<Lighting>
|
1768
|
+
<LightingGroup>
|
1769
|
+
<SystemIdentifier id='LightingGroup1_4'/>
|
1770
|
+
<Location>interior</Location>
|
1771
|
+
<FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
|
1772
|
+
<LightingType>
|
1773
|
+
<CompactFluorescent/>
|
1774
|
+
</LightingType>
|
1775
|
+
</LightingGroup>
|
1776
|
+
<LightingGroup>
|
1777
|
+
<SystemIdentifier id='LightingGroup2_4'/>
|
1778
|
+
<Location>interior</Location>
|
1779
|
+
<FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
|
1780
|
+
<LightingType>
|
1781
|
+
<FluorescentTube/>
|
1782
|
+
</LightingType>
|
1783
|
+
</LightingGroup>
|
1784
|
+
<LightingGroup>
|
1785
|
+
<SystemIdentifier id='LightingGroup3_4'/>
|
1786
|
+
<Location>interior</Location>
|
1787
|
+
<FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
|
1788
|
+
<LightingType>
|
1789
|
+
<LightEmittingDiode/>
|
1790
|
+
</LightingType>
|
1791
|
+
</LightingGroup>
|
1792
|
+
<LightingGroup>
|
1793
|
+
<SystemIdentifier id='LightingGroup4_4'/>
|
1794
|
+
<Location>exterior</Location>
|
1795
|
+
<FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
|
1796
|
+
<LightingType>
|
1797
|
+
<CompactFluorescent/>
|
1798
|
+
</LightingType>
|
1799
|
+
</LightingGroup>
|
1800
|
+
<LightingGroup>
|
1801
|
+
<SystemIdentifier id='LightingGroup5_4'/>
|
1802
|
+
<Location>exterior</Location>
|
1803
|
+
<FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
|
1804
|
+
<LightingType>
|
1805
|
+
<FluorescentTube/>
|
1806
|
+
</LightingType>
|
1807
|
+
</LightingGroup>
|
1808
|
+
<LightingGroup>
|
1809
|
+
<SystemIdentifier id='LightingGroup6_4'/>
|
1810
|
+
<Location>exterior</Location>
|
1811
|
+
<FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
|
1812
|
+
<LightingType>
|
1813
|
+
<LightEmittingDiode/>
|
1814
|
+
</LightingType>
|
1815
|
+
</LightingGroup>
|
1816
|
+
</Lighting>
|
1817
|
+
<MiscLoads>
|
1818
|
+
<PlugLoad>
|
1819
|
+
<SystemIdentifier id='PlugLoad1_4'/>
|
1820
|
+
<PlugLoadType>TV other</PlugLoadType>
|
1821
|
+
<Load>
|
1822
|
+
<Units>kWh/year</Units>
|
1823
|
+
<Value>620.0</Value>
|
1824
|
+
</Load>
|
1825
|
+
</PlugLoad>
|
1826
|
+
<PlugLoad>
|
1827
|
+
<SystemIdentifier id='PlugLoad2_4'/>
|
1828
|
+
<PlugLoadType>other</PlugLoadType>
|
1829
|
+
<Load>
|
1830
|
+
<Units>kWh/year</Units>
|
1831
|
+
<Value>2457.0</Value>
|
1832
|
+
</Load>
|
1833
|
+
<extension>
|
1834
|
+
<FracSensible>0.855</FracSensible>
|
1835
|
+
<FracLatent>0.045</FracLatent>
|
1836
|
+
</extension>
|
1837
|
+
</PlugLoad>
|
1838
|
+
</MiscLoads>
|
1839
|
+
</BuildingDetails>
|
1840
|
+
</Building>
|
1841
|
+
<Building>
|
1842
|
+
<BuildingID id='MyBuilding_5'/>
|
1843
|
+
<Site>
|
1844
|
+
<SiteID id='SiteID_5'/>
|
1845
|
+
<Address>
|
1846
|
+
<StateCode>CO</StateCode>
|
1847
|
+
</Address>
|
1848
|
+
</Site>
|
1849
|
+
<ProjectStatus>
|
1850
|
+
<EventType>proposed workscope</EventType>
|
1851
|
+
</ProjectStatus>
|
1852
|
+
<BuildingDetails>
|
1853
|
+
<BuildingSummary>
|
1854
|
+
<Site>
|
1855
|
+
<SiteType>suburban</SiteType>
|
1856
|
+
<Surroundings>attached on one side</Surroundings>
|
1857
|
+
<VerticalSurroundings>unit below</VerticalSurroundings>
|
1858
|
+
<AzimuthOfFrontOfHome>180</AzimuthOfFrontOfHome>
|
1859
|
+
<FuelTypesAvailable>
|
1860
|
+
<Fuel>electricity</Fuel>
|
1861
|
+
<Fuel>natural gas</Fuel>
|
1862
|
+
</FuelTypesAvailable>
|
1863
|
+
</Site>
|
1864
|
+
<BuildingConstruction>
|
1865
|
+
<ResidentialFacilityType>apartment unit</ResidentialFacilityType>
|
1866
|
+
<NumberofConditionedFloors>1.0</NumberofConditionedFloors>
|
1867
|
+
<NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
|
1868
|
+
<AverageCeilingHeight>8.0</AverageCeilingHeight>
|
1869
|
+
<NumberofBedrooms>3</NumberofBedrooms>
|
1870
|
+
<NumberofBathrooms>2</NumberofBathrooms>
|
1871
|
+
<ConditionedFloorArea>1200.0</ConditionedFloorArea>
|
1872
|
+
<ConditionedBuildingVolume>9600.0</ConditionedBuildingVolume>
|
1873
|
+
</BuildingConstruction>
|
1874
|
+
<extension>
|
1875
|
+
<SchedulesFilePath>../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_5.csv</SchedulesFilePath>
|
1876
|
+
</extension>
|
1877
|
+
</BuildingSummary>
|
1878
|
+
<ClimateandRiskZones>
|
1879
|
+
<ClimateZoneIECC>
|
1880
|
+
<Year>2006</Year>
|
1881
|
+
<ClimateZone>5B</ClimateZone>
|
1882
|
+
</ClimateZoneIECC>
|
1883
|
+
<WeatherStation>
|
1884
|
+
<SystemIdentifier id='WeatherStation_5'/>
|
1885
|
+
<Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
|
1886
|
+
<extension>
|
1887
|
+
<EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
|
1888
|
+
</extension>
|
1889
|
+
</WeatherStation>
|
1890
|
+
</ClimateandRiskZones>
|
1891
|
+
<Enclosure>
|
1892
|
+
<AirInfiltration>
|
1893
|
+
<AirInfiltrationMeasurement>
|
1894
|
+
<SystemIdentifier id='AirInfiltrationMeasurement1_5'/>
|
1895
|
+
<TypeOfInfiltrationLeakage>unit exterior only</TypeOfInfiltrationLeakage>
|
1896
|
+
<BuildingAirLeakage>
|
1897
|
+
<UnitofMeasure>ACHnatural</UnitofMeasure>
|
1898
|
+
<AirLeakage>0.375</AirLeakage>
|
1899
|
+
</BuildingAirLeakage>
|
1900
|
+
<InfiltrationVolume>9600.0</InfiltrationVolume>
|
1901
|
+
</AirInfiltrationMeasurement>
|
1902
|
+
</AirInfiltration>
|
1903
|
+
<Attics>
|
1904
|
+
<Attic>
|
1905
|
+
<SystemIdentifier id='Attic1_5'/>
|
1906
|
+
<AtticType>
|
1907
|
+
<Attic>
|
1908
|
+
<Vented>true</Vented>
|
1909
|
+
</Attic>
|
1910
|
+
</AtticType>
|
1911
|
+
<VentilationRate>
|
1912
|
+
<UnitofMeasure>SLA</UnitofMeasure>
|
1913
|
+
<Value>0.003</Value>
|
1914
|
+
</VentilationRate>
|
1915
|
+
<AttachedToRoof idref='Roof1_5'/>
|
1916
|
+
<AttachedToWall idref='Wall3_5'/>
|
1917
|
+
<AttachedToWall idref='Wall4_5'/>
|
1918
|
+
<AttachedToFloor idref='Floor2_5'/>
|
1919
|
+
</Attic>
|
1920
|
+
</Attics>
|
1921
|
+
<Foundations>
|
1922
|
+
<Foundation>
|
1923
|
+
<SystemIdentifier id='Foundation1_5'/>
|
1924
|
+
<FoundationType>
|
1925
|
+
<AboveApartment/>
|
1926
|
+
</FoundationType>
|
1927
|
+
</Foundation>
|
1928
|
+
</Foundations>
|
1929
|
+
<Roofs>
|
1930
|
+
<Roof>
|
1931
|
+
<SystemIdentifier id='Roof1_5'/>
|
1932
|
+
<InteriorAdjacentTo>attic - vented</InteriorAdjacentTo>
|
1933
|
+
<Area>1341.6</Area>
|
1934
|
+
<RoofType>asphalt or fiberglass shingles</RoofType>
|
1935
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
1936
|
+
<Emittance>0.92</Emittance>
|
1937
|
+
<Pitch>6.0</Pitch>
|
1938
|
+
<RadiantBarrier>false</RadiantBarrier>
|
1939
|
+
<Insulation>
|
1940
|
+
<SystemIdentifier id='Roof1Insulation_5'/>
|
1941
|
+
<AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
|
1942
|
+
</Insulation>
|
1943
|
+
</Roof>
|
1944
|
+
</Roofs>
|
1945
|
+
<Walls>
|
1946
|
+
<Wall>
|
1947
|
+
<SystemIdentifier id='Wall1_5'/>
|
1948
|
+
<ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
|
1949
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
1950
|
+
<WallType>
|
1951
|
+
<WoodStud/>
|
1952
|
+
</WallType>
|
1953
|
+
<Area>800.0</Area>
|
1954
|
+
<Siding>wood siding</Siding>
|
1955
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
1956
|
+
<Emittance>0.92</Emittance>
|
1957
|
+
<InteriorFinish>
|
1958
|
+
<Type>gypsum board</Type>
|
1959
|
+
</InteriorFinish>
|
1960
|
+
<Insulation>
|
1961
|
+
<SystemIdentifier id='Wall1Insulation_5'/>
|
1962
|
+
<AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
|
1963
|
+
</Insulation>
|
1964
|
+
</Wall>
|
1965
|
+
<Wall>
|
1966
|
+
<SystemIdentifier id='Wall2_5'/>
|
1967
|
+
<ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
|
1968
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
1969
|
+
<WallType>
|
1970
|
+
<WoodStud/>
|
1971
|
+
</WallType>
|
1972
|
+
<Area>320.0</Area>
|
1973
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
1974
|
+
<Emittance>0.92</Emittance>
|
1975
|
+
<InteriorFinish>
|
1976
|
+
<Type>gypsum board</Type>
|
1977
|
+
</InteriorFinish>
|
1978
|
+
<Insulation>
|
1979
|
+
<SystemIdentifier id='Wall2Insulation_5'/>
|
1980
|
+
<AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
|
1981
|
+
</Insulation>
|
1982
|
+
</Wall>
|
1983
|
+
<Wall>
|
1984
|
+
<SystemIdentifier id='Wall3_5'/>
|
1985
|
+
<ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
|
1986
|
+
<InteriorAdjacentTo>attic - vented</InteriorAdjacentTo>
|
1987
|
+
<AtticWallType>gable</AtticWallType>
|
1988
|
+
<WallType>
|
1989
|
+
<WoodStud/>
|
1990
|
+
</WallType>
|
1991
|
+
<Area>200.0</Area>
|
1992
|
+
<Siding>wood siding</Siding>
|
1993
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
1994
|
+
<Emittance>0.92</Emittance>
|
1995
|
+
<Insulation>
|
1996
|
+
<SystemIdentifier id='Wall3Insulation_5'/>
|
1997
|
+
<AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
|
1998
|
+
</Insulation>
|
1999
|
+
</Wall>
|
2000
|
+
<Wall>
|
2001
|
+
<SystemIdentifier id='Wall4_5'/>
|
2002
|
+
<ExteriorAdjacentTo>attic - vented</ExteriorAdjacentTo>
|
2003
|
+
<InteriorAdjacentTo>attic - vented</InteriorAdjacentTo>
|
2004
|
+
<WallType>
|
2005
|
+
<WoodStud/>
|
2006
|
+
</WallType>
|
2007
|
+
<Area>200.0</Area>
|
2008
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
2009
|
+
<Emittance>0.92</Emittance>
|
2010
|
+
<Insulation>
|
2011
|
+
<SystemIdentifier id='Wall4Insulation_5'/>
|
2012
|
+
<AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
|
2013
|
+
</Insulation>
|
2014
|
+
</Wall>
|
2015
|
+
</Walls>
|
2016
|
+
<Floors>
|
2017
|
+
<Floor>
|
2018
|
+
<SystemIdentifier id='Floor1_5'/>
|
2019
|
+
<ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
|
2020
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
2021
|
+
<FloorOrCeiling>floor</FloorOrCeiling>
|
2022
|
+
<FloorType>
|
2023
|
+
<WoodFrame/>
|
2024
|
+
</FloorType>
|
2025
|
+
<Area>1200.0</Area>
|
2026
|
+
<Insulation>
|
2027
|
+
<SystemIdentifier id='Floor1Insulation_5'/>
|
2028
|
+
<AssemblyEffectiveRValue>2.1</AssemblyEffectiveRValue>
|
2029
|
+
</Insulation>
|
2030
|
+
</Floor>
|
2031
|
+
<Floor>
|
2032
|
+
<SystemIdentifier id='Floor2_5'/>
|
2033
|
+
<ExteriorAdjacentTo>attic - vented</ExteriorAdjacentTo>
|
2034
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
2035
|
+
<FloorOrCeiling>ceiling</FloorOrCeiling>
|
2036
|
+
<FloorType>
|
2037
|
+
<WoodFrame/>
|
2038
|
+
</FloorType>
|
2039
|
+
<Area>1200.0</Area>
|
2040
|
+
<InteriorFinish>
|
2041
|
+
<Type>gypsum board</Type>
|
2042
|
+
</InteriorFinish>
|
2043
|
+
<Insulation>
|
2044
|
+
<SystemIdentifier id='Floor2Insulation_5'/>
|
2045
|
+
<AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
|
2046
|
+
</Insulation>
|
2047
|
+
</Floor>
|
2048
|
+
</Floors>
|
2049
|
+
<Windows>
|
2050
|
+
<Window>
|
2051
|
+
<SystemIdentifier id='Window1_5'/>
|
2052
|
+
<Area>43.2</Area>
|
2053
|
+
<Azimuth>0</Azimuth>
|
2054
|
+
<UFactor>0.33</UFactor>
|
2055
|
+
<SHGC>0.45</SHGC>
|
2056
|
+
<InteriorShading>
|
2057
|
+
<SystemIdentifier id='Window1InteriorShading_5'/>
|
2058
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
2059
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
2060
|
+
</InteriorShading>
|
2061
|
+
<FractionOperable>0.67</FractionOperable>
|
2062
|
+
<AttachedToWall idref='Wall1_5'/>
|
2063
|
+
</Window>
|
2064
|
+
<Window>
|
2065
|
+
<SystemIdentifier id='Window2_5'/>
|
2066
|
+
<Area>43.2</Area>
|
2067
|
+
<Azimuth>180</Azimuth>
|
2068
|
+
<UFactor>0.33</UFactor>
|
2069
|
+
<SHGC>0.45</SHGC>
|
2070
|
+
<InteriorShading>
|
2071
|
+
<SystemIdentifier id='Window2InteriorShading_5'/>
|
2072
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
2073
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
2074
|
+
</InteriorShading>
|
2075
|
+
<FractionOperable>0.67</FractionOperable>
|
2076
|
+
<AttachedToWall idref='Wall1_5'/>
|
2077
|
+
</Window>
|
2078
|
+
<Window>
|
2079
|
+
<SystemIdentifier id='Window3_5'/>
|
2080
|
+
<Area>57.6</Area>
|
2081
|
+
<Azimuth>270</Azimuth>
|
2082
|
+
<UFactor>0.33</UFactor>
|
2083
|
+
<SHGC>0.45</SHGC>
|
2084
|
+
<InteriorShading>
|
2085
|
+
<SystemIdentifier id='Window3InteriorShading_5'/>
|
2086
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
2087
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
2088
|
+
</InteriorShading>
|
2089
|
+
<FractionOperable>0.67</FractionOperable>
|
2090
|
+
<AttachedToWall idref='Wall1_5'/>
|
2091
|
+
</Window>
|
2092
|
+
</Windows>
|
2093
|
+
<Doors>
|
2094
|
+
<Door>
|
2095
|
+
<SystemIdentifier id='Door1_5'/>
|
2096
|
+
<AttachedToWall idref='Wall1_5'/>
|
2097
|
+
<Area>20.0</Area>
|
2098
|
+
<Azimuth>180</Azimuth>
|
2099
|
+
<RValue>4.4</RValue>
|
2100
|
+
</Door>
|
2101
|
+
</Doors>
|
2102
|
+
</Enclosure>
|
2103
|
+
<Systems>
|
2104
|
+
<HVAC>
|
2105
|
+
<HVACPlant>
|
2106
|
+
<PrimarySystems>
|
2107
|
+
<PrimaryHeatingSystem idref='HeatingSystem1_5'/>
|
2108
|
+
<PrimaryCoolingSystem idref='CoolingSystem1_5'/>
|
2109
|
+
</PrimarySystems>
|
2110
|
+
<HeatingSystem>
|
2111
|
+
<SystemIdentifier id='HeatingSystem1_5'/>
|
2112
|
+
<HeatingSystemType>
|
2113
|
+
<ElectricResistance/>
|
2114
|
+
</HeatingSystemType>
|
2115
|
+
<HeatingSystemFuel>electricity</HeatingSystemFuel>
|
2116
|
+
<HeatingCapacity>12000.0</HeatingCapacity>
|
2117
|
+
<AnnualHeatingEfficiency>
|
2118
|
+
<Units>Percent</Units>
|
2119
|
+
<Value>1.0</Value>
|
2120
|
+
</AnnualHeatingEfficiency>
|
2121
|
+
<FractionHeatLoadServed>1.0</FractionHeatLoadServed>
|
2122
|
+
</HeatingSystem>
|
2123
|
+
<CoolingSystem>
|
2124
|
+
<SystemIdentifier id='CoolingSystem1_5'/>
|
2125
|
+
<CoolingSystemType>room air conditioner</CoolingSystemType>
|
2126
|
+
<CoolingSystemFuel>electricity</CoolingSystemFuel>
|
2127
|
+
<CoolingCapacity>12000.0</CoolingCapacity>
|
2128
|
+
<FractionCoolLoadServed>1.0</FractionCoolLoadServed>
|
2129
|
+
<AnnualCoolingEfficiency>
|
2130
|
+
<Units>EER</Units>
|
2131
|
+
<Value>8.5</Value>
|
2132
|
+
</AnnualCoolingEfficiency>
|
2133
|
+
<SensibleHeatFraction>0.73</SensibleHeatFraction>
|
2134
|
+
</CoolingSystem>
|
2135
|
+
</HVACPlant>
|
2136
|
+
<HVACControl>
|
2137
|
+
<SystemIdentifier id='HVACControl1_5'/>
|
2138
|
+
<SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
|
2139
|
+
<SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
|
2140
|
+
</HVACControl>
|
2141
|
+
</HVAC>
|
2142
|
+
<WaterHeating>
|
2143
|
+
<WaterHeatingSystem>
|
2144
|
+
<SystemIdentifier id='WaterHeatingSystem1_5'/>
|
2145
|
+
<FuelType>electricity</FuelType>
|
2146
|
+
<WaterHeaterType>storage water heater</WaterHeaterType>
|
2147
|
+
<Location>conditioned space</Location>
|
2148
|
+
<TankVolume>40.0</TankVolume>
|
2149
|
+
<FractionDHWLoadServed>1.0</FractionDHWLoadServed>
|
2150
|
+
<HeatingCapacity>18767.0</HeatingCapacity>
|
2151
|
+
<EnergyFactor>0.95</EnergyFactor>
|
2152
|
+
<HotWaterTemperature>125.0</HotWaterTemperature>
|
2153
|
+
</WaterHeatingSystem>
|
2154
|
+
<HotWaterDistribution>
|
2155
|
+
<SystemIdentifier id='HotWaterDistribution1_5'/>
|
2156
|
+
<SystemType>
|
2157
|
+
<Standard>
|
2158
|
+
<PipingLength>50.0</PipingLength>
|
2159
|
+
</Standard>
|
2160
|
+
</SystemType>
|
2161
|
+
<PipeInsulation>
|
2162
|
+
<PipeRValue>0.0</PipeRValue>
|
2163
|
+
</PipeInsulation>
|
2164
|
+
</HotWaterDistribution>
|
2165
|
+
<WaterFixture>
|
2166
|
+
<SystemIdentifier id='WaterFixture1_5'/>
|
2167
|
+
<WaterFixtureType>shower head</WaterFixtureType>
|
2168
|
+
<LowFlow>true</LowFlow>
|
2169
|
+
</WaterFixture>
|
2170
|
+
<WaterFixture>
|
2171
|
+
<SystemIdentifier id='WaterFixture2_5'/>
|
2172
|
+
<WaterFixtureType>faucet</WaterFixtureType>
|
2173
|
+
<LowFlow>false</LowFlow>
|
2174
|
+
</WaterFixture>
|
2175
|
+
</WaterHeating>
|
2176
|
+
</Systems>
|
2177
|
+
<Appliances>
|
2178
|
+
<ClothesWasher>
|
2179
|
+
<SystemIdentifier id='ClothesWasher1_5'/>
|
2180
|
+
<Location>conditioned space</Location>
|
2181
|
+
<IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
|
2182
|
+
<RatedAnnualkWh>380.0</RatedAnnualkWh>
|
2183
|
+
<LabelElectricRate>0.12</LabelElectricRate>
|
2184
|
+
<LabelGasRate>1.09</LabelGasRate>
|
2185
|
+
<LabelAnnualGasCost>27.0</LabelAnnualGasCost>
|
2186
|
+
<LabelUsage>6.0</LabelUsage>
|
2187
|
+
<Capacity>3.2</Capacity>
|
2188
|
+
</ClothesWasher>
|
2189
|
+
<ClothesDryer>
|
2190
|
+
<SystemIdentifier id='ClothesDryer1_5'/>
|
2191
|
+
<Location>conditioned space</Location>
|
2192
|
+
<FuelType>electricity</FuelType>
|
2193
|
+
<CombinedEnergyFactor>3.73</CombinedEnergyFactor>
|
2194
|
+
<Vented>true</Vented>
|
2195
|
+
<VentedFlowRate>150.0</VentedFlowRate>
|
2196
|
+
</ClothesDryer>
|
2197
|
+
<Dishwasher>
|
2198
|
+
<SystemIdentifier id='Dishwasher1_5'/>
|
2199
|
+
<Location>conditioned space</Location>
|
2200
|
+
<RatedAnnualkWh>307.0</RatedAnnualkWh>
|
2201
|
+
<PlaceSettingCapacity>12</PlaceSettingCapacity>
|
2202
|
+
<LabelElectricRate>0.12</LabelElectricRate>
|
2203
|
+
<LabelGasRate>1.09</LabelGasRate>
|
2204
|
+
<LabelAnnualGasCost>22.32</LabelAnnualGasCost>
|
2205
|
+
<LabelUsage>4.0</LabelUsage>
|
2206
|
+
</Dishwasher>
|
2207
|
+
<Refrigerator>
|
2208
|
+
<SystemIdentifier id='Refrigerator1_5'/>
|
2209
|
+
<Location>conditioned space</Location>
|
2210
|
+
<RatedAnnualkWh>650.0</RatedAnnualkWh>
|
2211
|
+
<PrimaryIndicator>true</PrimaryIndicator>
|
2212
|
+
</Refrigerator>
|
2213
|
+
<CookingRange>
|
2214
|
+
<SystemIdentifier id='CookingRange1_5'/>
|
2215
|
+
<Location>conditioned space</Location>
|
2216
|
+
<FuelType>electricity</FuelType>
|
2217
|
+
<IsInduction>false</IsInduction>
|
2218
|
+
</CookingRange>
|
2219
|
+
<Oven>
|
2220
|
+
<SystemIdentifier id='Oven1_5'/>
|
2221
|
+
<IsConvection>false</IsConvection>
|
2222
|
+
</Oven>
|
2223
|
+
</Appliances>
|
2224
|
+
<Lighting>
|
2225
|
+
<LightingGroup>
|
2226
|
+
<SystemIdentifier id='LightingGroup1_5'/>
|
2227
|
+
<Location>interior</Location>
|
2228
|
+
<FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
|
2229
|
+
<LightingType>
|
2230
|
+
<CompactFluorescent/>
|
2231
|
+
</LightingType>
|
2232
|
+
</LightingGroup>
|
2233
|
+
<LightingGroup>
|
2234
|
+
<SystemIdentifier id='LightingGroup2_5'/>
|
2235
|
+
<Location>interior</Location>
|
2236
|
+
<FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
|
2237
|
+
<LightingType>
|
2238
|
+
<FluorescentTube/>
|
2239
|
+
</LightingType>
|
2240
|
+
</LightingGroup>
|
2241
|
+
<LightingGroup>
|
2242
|
+
<SystemIdentifier id='LightingGroup3_5'/>
|
2243
|
+
<Location>interior</Location>
|
2244
|
+
<FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
|
2245
|
+
<LightingType>
|
2246
|
+
<LightEmittingDiode/>
|
2247
|
+
</LightingType>
|
2248
|
+
</LightingGroup>
|
2249
|
+
<LightingGroup>
|
2250
|
+
<SystemIdentifier id='LightingGroup4_5'/>
|
2251
|
+
<Location>exterior</Location>
|
2252
|
+
<FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
|
2253
|
+
<LightingType>
|
2254
|
+
<CompactFluorescent/>
|
2255
|
+
</LightingType>
|
2256
|
+
</LightingGroup>
|
2257
|
+
<LightingGroup>
|
2258
|
+
<SystemIdentifier id='LightingGroup5_5'/>
|
2259
|
+
<Location>exterior</Location>
|
2260
|
+
<FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
|
2261
|
+
<LightingType>
|
2262
|
+
<FluorescentTube/>
|
2263
|
+
</LightingType>
|
2264
|
+
</LightingGroup>
|
2265
|
+
<LightingGroup>
|
2266
|
+
<SystemIdentifier id='LightingGroup6_5'/>
|
2267
|
+
<Location>exterior</Location>
|
2268
|
+
<FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
|
2269
|
+
<LightingType>
|
2270
|
+
<LightEmittingDiode/>
|
2271
|
+
</LightingType>
|
2272
|
+
</LightingGroup>
|
2273
|
+
</Lighting>
|
2274
|
+
<MiscLoads>
|
2275
|
+
<PlugLoad>
|
2276
|
+
<SystemIdentifier id='PlugLoad1_5'/>
|
2277
|
+
<PlugLoadType>TV other</PlugLoadType>
|
2278
|
+
<Load>
|
2279
|
+
<Units>kWh/year</Units>
|
2280
|
+
<Value>620.0</Value>
|
2281
|
+
</Load>
|
2282
|
+
</PlugLoad>
|
2283
|
+
<PlugLoad>
|
2284
|
+
<SystemIdentifier id='PlugLoad2_5'/>
|
2285
|
+
<PlugLoadType>other</PlugLoadType>
|
2286
|
+
<Load>
|
2287
|
+
<Units>kWh/year</Units>
|
2288
|
+
<Value>2457.0</Value>
|
2289
|
+
</Load>
|
2290
|
+
<extension>
|
2291
|
+
<FracSensible>0.855</FracSensible>
|
2292
|
+
<FracLatent>0.045</FracLatent>
|
2293
|
+
</extension>
|
2294
|
+
</PlugLoad>
|
2295
|
+
</MiscLoads>
|
2296
|
+
</BuildingDetails>
|
2297
|
+
</Building>
|
2298
|
+
<Building>
|
2299
|
+
<BuildingID id='MyBuilding_6'/>
|
2300
|
+
<Site>
|
2301
|
+
<SiteID id='SiteID_6'/>
|
2302
|
+
<Address>
|
2303
|
+
<StateCode>CO</StateCode>
|
2304
|
+
</Address>
|
2305
|
+
</Site>
|
2306
|
+
<ProjectStatus>
|
2307
|
+
<EventType>proposed workscope</EventType>
|
2308
|
+
</ProjectStatus>
|
2309
|
+
<BuildingDetails>
|
2310
|
+
<BuildingSummary>
|
2311
|
+
<Site>
|
2312
|
+
<SiteType>suburban</SiteType>
|
2313
|
+
<Surroundings>attached on one side</Surroundings>
|
2314
|
+
<VerticalSurroundings>unit below</VerticalSurroundings>
|
2315
|
+
<AzimuthOfFrontOfHome>180</AzimuthOfFrontOfHome>
|
2316
|
+
<FuelTypesAvailable>
|
2317
|
+
<Fuel>electricity</Fuel>
|
2318
|
+
<Fuel>natural gas</Fuel>
|
2319
|
+
</FuelTypesAvailable>
|
2320
|
+
</Site>
|
2321
|
+
<BuildingConstruction>
|
2322
|
+
<ResidentialFacilityType>apartment unit</ResidentialFacilityType>
|
2323
|
+
<NumberofConditionedFloors>1.0</NumberofConditionedFloors>
|
2324
|
+
<NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
|
2325
|
+
<AverageCeilingHeight>8.0</AverageCeilingHeight>
|
2326
|
+
<NumberofBedrooms>3</NumberofBedrooms>
|
2327
|
+
<NumberofBathrooms>2</NumberofBathrooms>
|
2328
|
+
<ConditionedFloorArea>1200.0</ConditionedFloorArea>
|
2329
|
+
<ConditionedBuildingVolume>9600.0</ConditionedBuildingVolume>
|
2330
|
+
</BuildingConstruction>
|
2331
|
+
<extension>
|
2332
|
+
<SchedulesFilePath>../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_6.csv</SchedulesFilePath>
|
2333
|
+
</extension>
|
2334
|
+
</BuildingSummary>
|
2335
|
+
<ClimateandRiskZones>
|
2336
|
+
<ClimateZoneIECC>
|
2337
|
+
<Year>2006</Year>
|
2338
|
+
<ClimateZone>5B</ClimateZone>
|
2339
|
+
</ClimateZoneIECC>
|
2340
|
+
<WeatherStation>
|
2341
|
+
<SystemIdentifier id='WeatherStation_6'/>
|
2342
|
+
<Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
|
2343
|
+
<extension>
|
2344
|
+
<EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
|
2345
|
+
</extension>
|
2346
|
+
</WeatherStation>
|
2347
|
+
</ClimateandRiskZones>
|
2348
|
+
<Enclosure>
|
2349
|
+
<AirInfiltration>
|
2350
|
+
<AirInfiltrationMeasurement>
|
2351
|
+
<SystemIdentifier id='AirInfiltrationMeasurement1_6'/>
|
2352
|
+
<TypeOfInfiltrationLeakage>unit exterior only</TypeOfInfiltrationLeakage>
|
2353
|
+
<BuildingAirLeakage>
|
2354
|
+
<UnitofMeasure>ACHnatural</UnitofMeasure>
|
2355
|
+
<AirLeakage>0.375</AirLeakage>
|
2356
|
+
</BuildingAirLeakage>
|
2357
|
+
<InfiltrationVolume>9600.0</InfiltrationVolume>
|
2358
|
+
</AirInfiltrationMeasurement>
|
2359
|
+
</AirInfiltration>
|
2360
|
+
<Attics>
|
2361
|
+
<Attic>
|
2362
|
+
<SystemIdentifier id='Attic1_6'/>
|
2363
|
+
<AtticType>
|
2364
|
+
<Attic>
|
2365
|
+
<Vented>true</Vented>
|
2366
|
+
</Attic>
|
2367
|
+
</AtticType>
|
2368
|
+
<VentilationRate>
|
2369
|
+
<UnitofMeasure>SLA</UnitofMeasure>
|
2370
|
+
<Value>0.003</Value>
|
2371
|
+
</VentilationRate>
|
2372
|
+
<AttachedToRoof idref='Roof1_6'/>
|
2373
|
+
<AttachedToWall idref='Wall3_6'/>
|
2374
|
+
<AttachedToWall idref='Wall4_6'/>
|
2375
|
+
<AttachedToFloor idref='Floor2_6'/>
|
2376
|
+
</Attic>
|
2377
|
+
</Attics>
|
2378
|
+
<Foundations>
|
2379
|
+
<Foundation>
|
2380
|
+
<SystemIdentifier id='Foundation1_6'/>
|
2381
|
+
<FoundationType>
|
2382
|
+
<AboveApartment/>
|
2383
|
+
</FoundationType>
|
2384
|
+
</Foundation>
|
2385
|
+
</Foundations>
|
2386
|
+
<Roofs>
|
2387
|
+
<Roof>
|
2388
|
+
<SystemIdentifier id='Roof1_6'/>
|
2389
|
+
<InteriorAdjacentTo>attic - vented</InteriorAdjacentTo>
|
2390
|
+
<Area>1341.6</Area>
|
2391
|
+
<RoofType>asphalt or fiberglass shingles</RoofType>
|
2392
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
2393
|
+
<Emittance>0.92</Emittance>
|
2394
|
+
<Pitch>6.0</Pitch>
|
2395
|
+
<RadiantBarrier>false</RadiantBarrier>
|
2396
|
+
<Insulation>
|
2397
|
+
<SystemIdentifier id='Roof1Insulation_6'/>
|
2398
|
+
<AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
|
2399
|
+
</Insulation>
|
2400
|
+
</Roof>
|
2401
|
+
</Roofs>
|
2402
|
+
<Walls>
|
2403
|
+
<Wall>
|
2404
|
+
<SystemIdentifier id='Wall1_6'/>
|
2405
|
+
<ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
|
2406
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
2407
|
+
<WallType>
|
2408
|
+
<WoodStud/>
|
2409
|
+
</WallType>
|
2410
|
+
<Area>800.0</Area>
|
2411
|
+
<Siding>wood siding</Siding>
|
2412
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
2413
|
+
<Emittance>0.92</Emittance>
|
2414
|
+
<InteriorFinish>
|
2415
|
+
<Type>gypsum board</Type>
|
2416
|
+
</InteriorFinish>
|
2417
|
+
<Insulation>
|
2418
|
+
<SystemIdentifier id='Wall1Insulation_6'/>
|
2419
|
+
<AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
|
2420
|
+
</Insulation>
|
2421
|
+
</Wall>
|
2422
|
+
<Wall>
|
2423
|
+
<SystemIdentifier id='Wall2_6'/>
|
2424
|
+
<ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
|
2425
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
2426
|
+
<WallType>
|
2427
|
+
<WoodStud/>
|
2428
|
+
</WallType>
|
2429
|
+
<Area>320.0</Area>
|
2430
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
2431
|
+
<Emittance>0.92</Emittance>
|
2432
|
+
<InteriorFinish>
|
2433
|
+
<Type>gypsum board</Type>
|
2434
|
+
</InteriorFinish>
|
2435
|
+
<Insulation>
|
2436
|
+
<SystemIdentifier id='Wall2Insulation_6'/>
|
2437
|
+
<AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
|
2438
|
+
</Insulation>
|
2439
|
+
</Wall>
|
2440
|
+
<Wall>
|
2441
|
+
<SystemIdentifier id='Wall3_6'/>
|
2442
|
+
<ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
|
2443
|
+
<InteriorAdjacentTo>attic - vented</InteriorAdjacentTo>
|
2444
|
+
<AtticWallType>gable</AtticWallType>
|
2445
|
+
<WallType>
|
2446
|
+
<WoodStud/>
|
2447
|
+
</WallType>
|
2448
|
+
<Area>200.0</Area>
|
2449
|
+
<Siding>wood siding</Siding>
|
2450
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
2451
|
+
<Emittance>0.92</Emittance>
|
2452
|
+
<Insulation>
|
2453
|
+
<SystemIdentifier id='Wall3Insulation_6'/>
|
2454
|
+
<AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
|
2455
|
+
</Insulation>
|
2456
|
+
</Wall>
|
2457
|
+
<Wall>
|
2458
|
+
<SystemIdentifier id='Wall4_6'/>
|
2459
|
+
<ExteriorAdjacentTo>attic - vented</ExteriorAdjacentTo>
|
2460
|
+
<InteriorAdjacentTo>attic - vented</InteriorAdjacentTo>
|
2461
|
+
<WallType>
|
2462
|
+
<WoodStud/>
|
2463
|
+
</WallType>
|
2464
|
+
<Area>200.0</Area>
|
2465
|
+
<SolarAbsorptance>0.7</SolarAbsorptance>
|
2466
|
+
<Emittance>0.92</Emittance>
|
2467
|
+
<Insulation>
|
2468
|
+
<SystemIdentifier id='Wall4Insulation_6'/>
|
2469
|
+
<AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
|
2470
|
+
</Insulation>
|
2471
|
+
</Wall>
|
2472
|
+
</Walls>
|
2473
|
+
<Floors>
|
2474
|
+
<Floor>
|
2475
|
+
<SystemIdentifier id='Floor1_6'/>
|
2476
|
+
<ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
|
2477
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
2478
|
+
<FloorOrCeiling>floor</FloorOrCeiling>
|
2479
|
+
<FloorType>
|
2480
|
+
<WoodFrame/>
|
2481
|
+
</FloorType>
|
2482
|
+
<Area>1200.0</Area>
|
2483
|
+
<Insulation>
|
2484
|
+
<SystemIdentifier id='Floor1Insulation_6'/>
|
2485
|
+
<AssemblyEffectiveRValue>2.1</AssemblyEffectiveRValue>
|
2486
|
+
</Insulation>
|
2487
|
+
</Floor>
|
2488
|
+
<Floor>
|
2489
|
+
<SystemIdentifier id='Floor2_6'/>
|
2490
|
+
<ExteriorAdjacentTo>attic - vented</ExteriorAdjacentTo>
|
2491
|
+
<InteriorAdjacentTo>conditioned space</InteriorAdjacentTo>
|
2492
|
+
<FloorOrCeiling>ceiling</FloorOrCeiling>
|
2493
|
+
<FloorType>
|
2494
|
+
<WoodFrame/>
|
2495
|
+
</FloorType>
|
2496
|
+
<Area>1200.0</Area>
|
2497
|
+
<InteriorFinish>
|
2498
|
+
<Type>gypsum board</Type>
|
2499
|
+
</InteriorFinish>
|
2500
|
+
<Insulation>
|
2501
|
+
<SystemIdentifier id='Floor2Insulation_6'/>
|
2502
|
+
<AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
|
2503
|
+
</Insulation>
|
2504
|
+
</Floor>
|
2505
|
+
</Floors>
|
2506
|
+
<Windows>
|
2507
|
+
<Window>
|
2508
|
+
<SystemIdentifier id='Window1_6'/>
|
2509
|
+
<Area>43.2</Area>
|
2510
|
+
<Azimuth>0</Azimuth>
|
2511
|
+
<UFactor>0.33</UFactor>
|
2512
|
+
<SHGC>0.45</SHGC>
|
2513
|
+
<InteriorShading>
|
2514
|
+
<SystemIdentifier id='Window1InteriorShading_6'/>
|
2515
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
2516
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
2517
|
+
</InteriorShading>
|
2518
|
+
<FractionOperable>0.67</FractionOperable>
|
2519
|
+
<AttachedToWall idref='Wall1_6'/>
|
2520
|
+
</Window>
|
2521
|
+
<Window>
|
2522
|
+
<SystemIdentifier id='Window2_6'/>
|
2523
|
+
<Area>43.2</Area>
|
2524
|
+
<Azimuth>180</Azimuth>
|
2525
|
+
<UFactor>0.33</UFactor>
|
2526
|
+
<SHGC>0.45</SHGC>
|
2527
|
+
<InteriorShading>
|
2528
|
+
<SystemIdentifier id='Window2InteriorShading_6'/>
|
2529
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
2530
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
2531
|
+
</InteriorShading>
|
2532
|
+
<FractionOperable>0.67</FractionOperable>
|
2533
|
+
<AttachedToWall idref='Wall1_6'/>
|
2534
|
+
</Window>
|
2535
|
+
<Window>
|
2536
|
+
<SystemIdentifier id='Window3_6'/>
|
2537
|
+
<Area>57.6</Area>
|
2538
|
+
<Azimuth>270</Azimuth>
|
2539
|
+
<UFactor>0.33</UFactor>
|
2540
|
+
<SHGC>0.45</SHGC>
|
2541
|
+
<InteriorShading>
|
2542
|
+
<SystemIdentifier id='Window3InteriorShading_6'/>
|
2543
|
+
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
2544
|
+
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
2545
|
+
</InteriorShading>
|
2546
|
+
<FractionOperable>0.67</FractionOperable>
|
2547
|
+
<AttachedToWall idref='Wall1_6'/>
|
2548
|
+
</Window>
|
2549
|
+
</Windows>
|
2550
|
+
<Doors>
|
2551
|
+
<Door>
|
2552
|
+
<SystemIdentifier id='Door1_6'/>
|
2553
|
+
<AttachedToWall idref='Wall1_6'/>
|
2554
|
+
<Area>20.0</Area>
|
2555
|
+
<Azimuth>180</Azimuth>
|
2556
|
+
<RValue>4.4</RValue>
|
2557
|
+
</Door>
|
2558
|
+
</Doors>
|
2559
|
+
</Enclosure>
|
2560
|
+
<Systems>
|
2561
|
+
<HVAC>
|
2562
|
+
<HVACPlant>
|
2563
|
+
<PrimarySystems>
|
2564
|
+
<PrimaryHeatingSystem idref='HeatingSystem1_6'/>
|
2565
|
+
<PrimaryCoolingSystem idref='CoolingSystem1_6'/>
|
2566
|
+
</PrimarySystems>
|
2567
|
+
<HeatingSystem>
|
2568
|
+
<SystemIdentifier id='HeatingSystem1_6'/>
|
2569
|
+
<HeatingSystemType>
|
2570
|
+
<ElectricResistance/>
|
2571
|
+
</HeatingSystemType>
|
2572
|
+
<HeatingSystemFuel>electricity</HeatingSystemFuel>
|
2573
|
+
<HeatingCapacity>12000.0</HeatingCapacity>
|
2574
|
+
<AnnualHeatingEfficiency>
|
2575
|
+
<Units>Percent</Units>
|
2576
|
+
<Value>1.0</Value>
|
2577
|
+
</AnnualHeatingEfficiency>
|
2578
|
+
<FractionHeatLoadServed>1.0</FractionHeatLoadServed>
|
2579
|
+
</HeatingSystem>
|
2580
|
+
<CoolingSystem>
|
2581
|
+
<SystemIdentifier id='CoolingSystem1_6'/>
|
2582
|
+
<CoolingSystemType>room air conditioner</CoolingSystemType>
|
2583
|
+
<CoolingSystemFuel>electricity</CoolingSystemFuel>
|
2584
|
+
<CoolingCapacity>12000.0</CoolingCapacity>
|
2585
|
+
<FractionCoolLoadServed>1.0</FractionCoolLoadServed>
|
2586
|
+
<AnnualCoolingEfficiency>
|
2587
|
+
<Units>EER</Units>
|
2588
|
+
<Value>8.5</Value>
|
2589
|
+
</AnnualCoolingEfficiency>
|
2590
|
+
<SensibleHeatFraction>0.73</SensibleHeatFraction>
|
2591
|
+
</CoolingSystem>
|
2592
|
+
</HVACPlant>
|
2593
|
+
<HVACControl>
|
2594
|
+
<SystemIdentifier id='HVACControl1_6'/>
|
2595
|
+
<SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
|
2596
|
+
<SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
|
2597
|
+
</HVACControl>
|
2598
|
+
</HVAC>
|
2599
|
+
<WaterHeating>
|
2600
|
+
<WaterHeatingSystem>
|
2601
|
+
<SystemIdentifier id='WaterHeatingSystem1_6'/>
|
2602
|
+
<FuelType>electricity</FuelType>
|
2603
|
+
<WaterHeaterType>storage water heater</WaterHeaterType>
|
2604
|
+
<Location>conditioned space</Location>
|
2605
|
+
<TankVolume>40.0</TankVolume>
|
2606
|
+
<FractionDHWLoadServed>1.0</FractionDHWLoadServed>
|
2607
|
+
<HeatingCapacity>18767.0</HeatingCapacity>
|
2608
|
+
<EnergyFactor>0.95</EnergyFactor>
|
2609
|
+
<HotWaterTemperature>125.0</HotWaterTemperature>
|
2610
|
+
</WaterHeatingSystem>
|
2611
|
+
<HotWaterDistribution>
|
2612
|
+
<SystemIdentifier id='HotWaterDistribution1_6'/>
|
2613
|
+
<SystemType>
|
2614
|
+
<Standard>
|
2615
|
+
<PipingLength>50.0</PipingLength>
|
2616
|
+
</Standard>
|
2617
|
+
</SystemType>
|
2618
|
+
<PipeInsulation>
|
2619
|
+
<PipeRValue>0.0</PipeRValue>
|
2620
|
+
</PipeInsulation>
|
2621
|
+
</HotWaterDistribution>
|
2622
|
+
<WaterFixture>
|
2623
|
+
<SystemIdentifier id='WaterFixture1_6'/>
|
2624
|
+
<WaterFixtureType>shower head</WaterFixtureType>
|
2625
|
+
<LowFlow>true</LowFlow>
|
2626
|
+
</WaterFixture>
|
2627
|
+
<WaterFixture>
|
2628
|
+
<SystemIdentifier id='WaterFixture2_6'/>
|
2629
|
+
<WaterFixtureType>faucet</WaterFixtureType>
|
2630
|
+
<LowFlow>false</LowFlow>
|
2631
|
+
</WaterFixture>
|
2632
|
+
</WaterHeating>
|
2633
|
+
</Systems>
|
2634
|
+
<Appliances>
|
2635
|
+
<ClothesWasher>
|
2636
|
+
<SystemIdentifier id='ClothesWasher1_6'/>
|
2637
|
+
<Location>conditioned space</Location>
|
2638
|
+
<IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
|
2639
|
+
<RatedAnnualkWh>380.0</RatedAnnualkWh>
|
2640
|
+
<LabelElectricRate>0.12</LabelElectricRate>
|
2641
|
+
<LabelGasRate>1.09</LabelGasRate>
|
2642
|
+
<LabelAnnualGasCost>27.0</LabelAnnualGasCost>
|
2643
|
+
<LabelUsage>6.0</LabelUsage>
|
2644
|
+
<Capacity>3.2</Capacity>
|
2645
|
+
</ClothesWasher>
|
2646
|
+
<ClothesDryer>
|
2647
|
+
<SystemIdentifier id='ClothesDryer1_6'/>
|
2648
|
+
<Location>conditioned space</Location>
|
2649
|
+
<FuelType>electricity</FuelType>
|
2650
|
+
<CombinedEnergyFactor>3.73</CombinedEnergyFactor>
|
2651
|
+
<Vented>true</Vented>
|
2652
|
+
<VentedFlowRate>150.0</VentedFlowRate>
|
2653
|
+
</ClothesDryer>
|
2654
|
+
<Dishwasher>
|
2655
|
+
<SystemIdentifier id='Dishwasher1_6'/>
|
2656
|
+
<Location>conditioned space</Location>
|
2657
|
+
<RatedAnnualkWh>307.0</RatedAnnualkWh>
|
2658
|
+
<PlaceSettingCapacity>12</PlaceSettingCapacity>
|
2659
|
+
<LabelElectricRate>0.12</LabelElectricRate>
|
2660
|
+
<LabelGasRate>1.09</LabelGasRate>
|
2661
|
+
<LabelAnnualGasCost>22.32</LabelAnnualGasCost>
|
2662
|
+
<LabelUsage>4.0</LabelUsage>
|
2663
|
+
</Dishwasher>
|
2664
|
+
<Refrigerator>
|
2665
|
+
<SystemIdentifier id='Refrigerator1_6'/>
|
2666
|
+
<Location>conditioned space</Location>
|
2667
|
+
<RatedAnnualkWh>650.0</RatedAnnualkWh>
|
2668
|
+
<PrimaryIndicator>true</PrimaryIndicator>
|
2669
|
+
</Refrigerator>
|
2670
|
+
<CookingRange>
|
2671
|
+
<SystemIdentifier id='CookingRange1_6'/>
|
2672
|
+
<Location>conditioned space</Location>
|
2673
|
+
<FuelType>electricity</FuelType>
|
2674
|
+
<IsInduction>false</IsInduction>
|
2675
|
+
</CookingRange>
|
2676
|
+
<Oven>
|
2677
|
+
<SystemIdentifier id='Oven1_6'/>
|
2678
|
+
<IsConvection>false</IsConvection>
|
2679
|
+
</Oven>
|
2680
|
+
</Appliances>
|
2681
|
+
<Lighting>
|
2682
|
+
<LightingGroup>
|
2683
|
+
<SystemIdentifier id='LightingGroup1_6'/>
|
2684
|
+
<Location>interior</Location>
|
2685
|
+
<FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
|
2686
|
+
<LightingType>
|
2687
|
+
<CompactFluorescent/>
|
2688
|
+
</LightingType>
|
2689
|
+
</LightingGroup>
|
2690
|
+
<LightingGroup>
|
2691
|
+
<SystemIdentifier id='LightingGroup2_6'/>
|
2692
|
+
<Location>interior</Location>
|
2693
|
+
<FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
|
2694
|
+
<LightingType>
|
2695
|
+
<FluorescentTube/>
|
2696
|
+
</LightingType>
|
2697
|
+
</LightingGroup>
|
2698
|
+
<LightingGroup>
|
2699
|
+
<SystemIdentifier id='LightingGroup3_6'/>
|
2700
|
+
<Location>interior</Location>
|
2701
|
+
<FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
|
2702
|
+
<LightingType>
|
2703
|
+
<LightEmittingDiode/>
|
2704
|
+
</LightingType>
|
2705
|
+
</LightingGroup>
|
2706
|
+
<LightingGroup>
|
2707
|
+
<SystemIdentifier id='LightingGroup4_6'/>
|
2708
|
+
<Location>exterior</Location>
|
2709
|
+
<FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
|
2710
|
+
<LightingType>
|
2711
|
+
<CompactFluorescent/>
|
2712
|
+
</LightingType>
|
2713
|
+
</LightingGroup>
|
2714
|
+
<LightingGroup>
|
2715
|
+
<SystemIdentifier id='LightingGroup5_6'/>
|
2716
|
+
<Location>exterior</Location>
|
2717
|
+
<FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
|
2718
|
+
<LightingType>
|
2719
|
+
<FluorescentTube/>
|
2720
|
+
</LightingType>
|
2721
|
+
</LightingGroup>
|
2722
|
+
<LightingGroup>
|
2723
|
+
<SystemIdentifier id='LightingGroup6_6'/>
|
2724
|
+
<Location>exterior</Location>
|
2725
|
+
<FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
|
2726
|
+
<LightingType>
|
2727
|
+
<LightEmittingDiode/>
|
2728
|
+
</LightingType>
|
2729
|
+
</LightingGroup>
|
2730
|
+
</Lighting>
|
2731
|
+
<MiscLoads>
|
2732
|
+
<PlugLoad>
|
2733
|
+
<SystemIdentifier id='PlugLoad1_6'/>
|
2734
|
+
<PlugLoadType>TV other</PlugLoadType>
|
2735
|
+
<Load>
|
2736
|
+
<Units>kWh/year</Units>
|
2737
|
+
<Value>620.0</Value>
|
2738
|
+
</Load>
|
2739
|
+
</PlugLoad>
|
2740
|
+
<PlugLoad>
|
2741
|
+
<SystemIdentifier id='PlugLoad2_6'/>
|
2742
|
+
<PlugLoadType>other</PlugLoadType>
|
2743
|
+
<Load>
|
2744
|
+
<Units>kWh/year</Units>
|
2745
|
+
<Value>2457.0</Value>
|
2746
|
+
</Load>
|
2747
|
+
<extension>
|
2748
|
+
<FracSensible>0.855</FracSensible>
|
2749
|
+
<FracLatent>0.045</FracLatent>
|
2750
|
+
</extension>
|
2751
|
+
</PlugLoad>
|
2752
|
+
</MiscLoads>
|
2753
|
+
</BuildingDetails>
|
2754
|
+
</Building>
|
2755
|
+
</HPXML>
|