urbanopt-cli 0.10.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/release.yml +24 -0
- data/.github/workflows/nightly_ci_build.yml +39 -29
- data/.gitignore +1 -0
- data/CHANGELOG.md +17 -0
- data/CMakeLists.txt +7 -7
- data/FindOpenStudioSDK.cmake +8 -8
- 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 +110 -17
- 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,536 @@
|
|
|
1
|
+
! The following Location and Design Day data are produced as possible from the indicated data source.
|
|
2
|
+
! Wind Speeds follow the indicated design conditions rather than traditional values (6.7 m/s heating, 3.35 m/s cooling)
|
|
3
|
+
! No special attempts at re-creating or determining missing data parts (e.g. Wind speed or direction)
|
|
4
|
+
! are done. Therefore, you should look at the data and fill in any incorrect values as you desire.
|
|
5
|
+
|
|
6
|
+
Site:Location,
|
|
7
|
+
Atlanta Hartsfield Intl Ap_GA_USA Design_Conditions, !- Location Name
|
|
8
|
+
33.63, !- Latitude {N+ S-}
|
|
9
|
+
-84.43, !- Longitude {W- E+}
|
|
10
|
+
-5.00, !- Time Zone Relative to GMT {GMT+/-}
|
|
11
|
+
308.00; !- Elevation {m}
|
|
12
|
+
|
|
13
|
+
! WMO=722190 Time Zone=NAE: (GMT-05:00) Eastern Time (US & Canada)
|
|
14
|
+
! Data Source=ASHRAE 2009 Annual Design Conditions
|
|
15
|
+
RunPeriodControl:DaylightSavingTime,
|
|
16
|
+
2nd Sunday in March, !- StartDate
|
|
17
|
+
2nd Sunday in November; !- EndDate
|
|
18
|
+
|
|
19
|
+
! Using Design Conditions from "Climate Design Data 2009 ASHRAE Handbook"
|
|
20
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Extreme Annual Wind Speeds, 1%=9.8m/s, 2.5%=8.6m/s, 5%=7.7m/s
|
|
21
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Extreme Annual Temperatures, Max Drybulb=-11.2�C Min Drybulb=35.9�C
|
|
22
|
+
|
|
23
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Heating Design Conditions Wind Speed=5.3m/s Wind Dir=320
|
|
24
|
+
! Coldest Month=JAN
|
|
25
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Heating 99.6%, MaxDB=-6.3�C
|
|
26
|
+
SizingPeriod:DesignDay,
|
|
27
|
+
Atlanta Hartsfield Intl Ap Ann Htg 99.6% Condns DB, !- Name
|
|
28
|
+
1, !- Month
|
|
29
|
+
21, !- Day of Month
|
|
30
|
+
WinterDesignDay,!- Day Type
|
|
31
|
+
-6.3, !- Maximum Dry-Bulb Temperature {C}
|
|
32
|
+
0.0, !- Daily Dry-Bulb Temperature Range {C}
|
|
33
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
34
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
35
|
+
Wetbulb, !- Humidity Condition Type
|
|
36
|
+
-6.3, !- Wetbulb at Maximum Dry-Bulb {C}
|
|
37
|
+
, !- Humidity Indicating Day Schedule Name
|
|
38
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
39
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
40
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
41
|
+
97679., !- Barometric Pressure {Pa}
|
|
42
|
+
5.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
|
|
43
|
+
320, !- Wind Direction {Degrees; N=0, S=180}
|
|
44
|
+
No, !- Rain {Yes/No}
|
|
45
|
+
No, !- Snow on ground {Yes/No}
|
|
46
|
+
No, !- Daylight Savings Time Indicator
|
|
47
|
+
ASHRAEClearSky, !- Solar Model Indicator
|
|
48
|
+
, !- Beam Solar Day Schedule Name
|
|
49
|
+
, !- Diffuse Solar Day Schedule Name
|
|
50
|
+
, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
51
|
+
, !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
52
|
+
0.00; !- Clearness {0.0 to 1.1}
|
|
53
|
+
|
|
54
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Heating 99%, MaxDB=-3.5�C
|
|
55
|
+
SizingPeriod:DesignDay,
|
|
56
|
+
Atlanta Hartsfield Intl Ap Ann Htg 99% Condns DB, !- Name
|
|
57
|
+
1, !- Month
|
|
58
|
+
21, !- Day of Month
|
|
59
|
+
WinterDesignDay,!- Day Type
|
|
60
|
+
-3.5, !- Maximum Dry-Bulb Temperature {C}
|
|
61
|
+
0.0, !- Daily Dry-Bulb Temperature Range {C}
|
|
62
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
63
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
64
|
+
Wetbulb, !- Humidity Condition Type
|
|
65
|
+
-3.5, !- Wetbulb at Maximum Dry-Bulb {C}
|
|
66
|
+
, !- Humidity Indicating Day Schedule Name
|
|
67
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
68
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
69
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
70
|
+
97679., !- Barometric Pressure {Pa}
|
|
71
|
+
5.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
|
|
72
|
+
320, !- Wind Direction {Degrees; N=0, S=180}
|
|
73
|
+
No, !- Rain {Yes/No}
|
|
74
|
+
No, !- Snow on ground {Yes/No}
|
|
75
|
+
No, !- Daylight Savings Time Indicator
|
|
76
|
+
ASHRAEClearSky, !- Solar Model Indicator
|
|
77
|
+
, !- Beam Solar Day Schedule Name
|
|
78
|
+
, !- Diffuse Solar Day Schedule Name
|
|
79
|
+
, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
80
|
+
, !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
81
|
+
0.00; !- Clearness {0.0 to 1.1}
|
|
82
|
+
|
|
83
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Humidification 99.6% Design Conditions DP=>MCDB, DP=-15.8�C
|
|
84
|
+
SizingPeriod:DesignDay,
|
|
85
|
+
Atlanta Hartsfield Intl Ap Ann Hum_n 99.6% Condns DP=>MCDB, !- Name
|
|
86
|
+
1, !- Month
|
|
87
|
+
21, !- Day of Month
|
|
88
|
+
WinterDesignDay,!- Day Type
|
|
89
|
+
-2.6, !- Maximum Dry-Bulb Temperature {C}
|
|
90
|
+
0.0, !- Daily Dry-Bulb Temperature Range {C}
|
|
91
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
92
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
93
|
+
Dewpoint, !- Humidity Condition Type
|
|
94
|
+
-15.8, !- Dewpoint at Maximum Dry-Bulb {C}
|
|
95
|
+
, !- Humidity Indicating Day Schedule Name
|
|
96
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
97
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
98
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
99
|
+
97679., !- Barometric Pressure {Pa}
|
|
100
|
+
5.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
|
|
101
|
+
320, !- Wind Direction {Degrees; N=0, S=180}
|
|
102
|
+
No, !- Rain {Yes/No}
|
|
103
|
+
No, !- Snow on ground {Yes/No}
|
|
104
|
+
No, !- Daylight Savings Time Indicator
|
|
105
|
+
ASHRAEClearSky, !- Solar Model Indicator
|
|
106
|
+
, !- Beam Solar Day Schedule Name
|
|
107
|
+
, !- Diffuse Solar Day Schedule Name
|
|
108
|
+
, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
109
|
+
, !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
110
|
+
0.00; !- Clearness {0.0 to 1.1}
|
|
111
|
+
|
|
112
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Humidification 99% Design Conditions DP=>MCDB, DP=-12.9�C
|
|
113
|
+
SizingPeriod:DesignDay,
|
|
114
|
+
Atlanta Hartsfield Intl Ap Ann Hum_n 99% Condns DP=>MCDB, !- Name
|
|
115
|
+
1, !- Month
|
|
116
|
+
21, !- Day of Month
|
|
117
|
+
WinterDesignDay,!- Day Type
|
|
118
|
+
0.1, !- Maximum Dry-Bulb Temperature {C}
|
|
119
|
+
0.0, !- Daily Dry-Bulb Temperature Range {C}
|
|
120
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
121
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
122
|
+
Dewpoint, !- Humidity Condition Type
|
|
123
|
+
-12.9, !- Dewpoint at Maximum Dry-Bulb {C}
|
|
124
|
+
, !- Humidity Indicating Day Schedule Name
|
|
125
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
126
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
127
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
128
|
+
97679., !- Barometric Pressure {Pa}
|
|
129
|
+
5.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
|
|
130
|
+
320, !- Wind Direction {Degrees; N=0, S=180}
|
|
131
|
+
No, !- Rain {Yes/No}
|
|
132
|
+
No, !- Snow on ground {Yes/No}
|
|
133
|
+
No, !- Daylight Savings Time Indicator
|
|
134
|
+
ASHRAEClearSky, !- Solar Model Indicator
|
|
135
|
+
, !- Beam Solar Day Schedule Name
|
|
136
|
+
, !- Diffuse Solar Day Schedule Name
|
|
137
|
+
, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
138
|
+
, !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
139
|
+
0.00; !- Clearness {0.0 to 1.1}
|
|
140
|
+
|
|
141
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Heating Wind 99.6% Design Conditions WS=>MCDB, WS=11.4m/s
|
|
142
|
+
SizingPeriod:DesignDay,
|
|
143
|
+
Atlanta Hartsfield Intl Ap Ann Htg Wind 99.6% Condns WS=>MCDB, !- Name
|
|
144
|
+
1, !- Month
|
|
145
|
+
21, !- Day of Month
|
|
146
|
+
WinterDesignDay,!- Day Type
|
|
147
|
+
3, !- Maximum Dry-Bulb Temperature {C}
|
|
148
|
+
0.0, !- Daily Dry-Bulb Temperature Range {C}
|
|
149
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
150
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
151
|
+
Wetbulb, !- Humidity Condition Type
|
|
152
|
+
3, !- Wetbulb at Maximum Dry-Bulb {C}
|
|
153
|
+
, !- Humidity Indicating Day Schedule Name
|
|
154
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
155
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
156
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
157
|
+
97679., !- Barometric Pressure {Pa}
|
|
158
|
+
11.4, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
|
|
159
|
+
320, !- Wind Direction {Degrees; N=0, S=180}
|
|
160
|
+
No, !- Rain {Yes/No}
|
|
161
|
+
No, !- Snow on ground {Yes/No}
|
|
162
|
+
No, !- Daylight Savings Time Indicator
|
|
163
|
+
ASHRAEClearSky, !- Solar Model Indicator
|
|
164
|
+
, !- Beam Solar Day Schedule Name
|
|
165
|
+
, !- Diffuse Solar Day Schedule Name
|
|
166
|
+
, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
167
|
+
, !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
168
|
+
0.00; !- Clearness {0.0 to 1.1}
|
|
169
|
+
|
|
170
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Heating Wind 99% Design Conditions WS=>MCDB, WS=10.7m/s
|
|
171
|
+
SizingPeriod:DesignDay,
|
|
172
|
+
Atlanta Hartsfield Intl Ap Ann Htg Wind 99% Condns WS=>MCDB, !- Name
|
|
173
|
+
1, !- Month
|
|
174
|
+
21, !- Day of Month
|
|
175
|
+
WinterDesignDay,!- Day Type
|
|
176
|
+
3.4, !- Maximum Dry-Bulb Temperature {C}
|
|
177
|
+
0.0, !- Daily Dry-Bulb Temperature Range {C}
|
|
178
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
179
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
180
|
+
Wetbulb, !- Humidity Condition Type
|
|
181
|
+
3.4, !- Wetbulb at Maximum Dry-Bulb {C}
|
|
182
|
+
, !- Humidity Indicating Day Schedule Name
|
|
183
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
184
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
185
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
186
|
+
97679., !- Barometric Pressure {Pa}
|
|
187
|
+
10.7, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
|
|
188
|
+
320, !- Wind Direction {Degrees; N=0, S=180}
|
|
189
|
+
No, !- Rain {Yes/No}
|
|
190
|
+
No, !- Snow on ground {Yes/No}
|
|
191
|
+
No, !- Daylight Savings Time Indicator
|
|
192
|
+
ASHRAEClearSky, !- Solar Model Indicator
|
|
193
|
+
, !- Beam Solar Day Schedule Name
|
|
194
|
+
, !- Diffuse Solar Day Schedule Name
|
|
195
|
+
, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
196
|
+
, !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
197
|
+
0.00; !- Clearness {0.0 to 1.1}
|
|
198
|
+
|
|
199
|
+
! Atlanta Hartsfield Intl Ap Annual Cooling Design Conditions Wind Speed=4m/s Wind Dir=300
|
|
200
|
+
! Hottest Month=JUL
|
|
201
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (DB=>MWB) .4%, MaxDB=34.4�C MWB=23.5�C
|
|
202
|
+
SizingPeriod:DesignDay,
|
|
203
|
+
Atlanta Hartsfield Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name
|
|
204
|
+
7, !- Month
|
|
205
|
+
21, !- Day of Month
|
|
206
|
+
SummerDesignDay,!- Day Type
|
|
207
|
+
34.4, !- Maximum Dry-Bulb Temperature {C}
|
|
208
|
+
9.5, !- Daily Dry-Bulb Temperature Range {C}
|
|
209
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
210
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
211
|
+
Wetbulb, !- Humidity Condition Type
|
|
212
|
+
23.5, !- Wetbulb at Maximum Dry-Bulb {C}
|
|
213
|
+
, !- Humidity Indicating Day Schedule Name
|
|
214
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
215
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
216
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
217
|
+
97679., !- Barometric Pressure {Pa}
|
|
218
|
+
4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
|
|
219
|
+
300, !- Wind Direction {Degrees; N=0, S=180}
|
|
220
|
+
No, !- Rain {Yes/No}
|
|
221
|
+
No, !- Snow on ground {Yes/No}
|
|
222
|
+
No, !- Daylight Savings Time Indicator
|
|
223
|
+
ASHRAETau, !- Solar Model Indicator
|
|
224
|
+
, !- Beam Solar Day Schedule Name
|
|
225
|
+
, !- Diffuse Solar Day Schedule Name
|
|
226
|
+
0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
227
|
+
1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
228
|
+
|
|
229
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (DB=>MWB) 1%, MaxDB=33�C MWB=23.3�C
|
|
230
|
+
SizingPeriod:DesignDay,
|
|
231
|
+
Atlanta Hartsfield Intl Ap Ann Clg 1% Condns DB=>MWB, !- Name
|
|
232
|
+
7, !- Month
|
|
233
|
+
21, !- Day of Month
|
|
234
|
+
SummerDesignDay,!- Day Type
|
|
235
|
+
33, !- Maximum Dry-Bulb Temperature {C}
|
|
236
|
+
9.5, !- Daily Dry-Bulb Temperature Range {C}
|
|
237
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
238
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
239
|
+
Wetbulb, !- Humidity Condition Type
|
|
240
|
+
23.3, !- Wetbulb at Maximum Dry-Bulb {C}
|
|
241
|
+
, !- Humidity Indicating Day Schedule Name
|
|
242
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
243
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
244
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
245
|
+
97679., !- Barometric Pressure {Pa}
|
|
246
|
+
4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
|
|
247
|
+
300, !- Wind Direction {Degrees; N=0, S=180}
|
|
248
|
+
No, !- Rain {Yes/No}
|
|
249
|
+
No, !- Snow on ground {Yes/No}
|
|
250
|
+
No, !- Daylight Savings Time Indicator
|
|
251
|
+
ASHRAETau, !- Solar Model Indicator
|
|
252
|
+
, !- Beam Solar Day Schedule Name
|
|
253
|
+
, !- Diffuse Solar Day Schedule Name
|
|
254
|
+
0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
255
|
+
1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
256
|
+
|
|
257
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (DB=>MWB) 2%, MaxDB=31.9�C MWB=23�C
|
|
258
|
+
SizingPeriod:DesignDay,
|
|
259
|
+
Atlanta Hartsfield Intl Ap Ann Clg 2% Condns DB=>MWB, !- Name
|
|
260
|
+
7, !- Month
|
|
261
|
+
21, !- Day of Month
|
|
262
|
+
SummerDesignDay,!- Day Type
|
|
263
|
+
31.9, !- Maximum Dry-Bulb Temperature {C}
|
|
264
|
+
9.5, !- Daily Dry-Bulb Temperature Range {C}
|
|
265
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
266
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
267
|
+
Wetbulb, !- Humidity Condition Type
|
|
268
|
+
23, !- Wetbulb at Maximum Dry-Bulb {C}
|
|
269
|
+
, !- Humidity Indicating Day Schedule Name
|
|
270
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
271
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
272
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
273
|
+
97679., !- Barometric Pressure {Pa}
|
|
274
|
+
4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
|
|
275
|
+
300, !- Wind Direction {Degrees; N=0, S=180}
|
|
276
|
+
No, !- Rain {Yes/No}
|
|
277
|
+
No, !- Snow on ground {Yes/No}
|
|
278
|
+
No, !- Daylight Savings Time Indicator
|
|
279
|
+
ASHRAETau, !- Solar Model Indicator
|
|
280
|
+
, !- Beam Solar Day Schedule Name
|
|
281
|
+
, !- Diffuse Solar Day Schedule Name
|
|
282
|
+
0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
283
|
+
1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
284
|
+
|
|
285
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (WB=>MDB) .4%, MDB=31.2�C WB=25.1�C
|
|
286
|
+
SizingPeriod:DesignDay,
|
|
287
|
+
Atlanta Hartsfield Intl Ap Ann Clg .4% Condns WB=>MDB, !- Name
|
|
288
|
+
7, !- Month
|
|
289
|
+
21, !- Day of Month
|
|
290
|
+
SummerDesignDay,!- Day Type
|
|
291
|
+
31.2, !- Maximum Dry-Bulb Temperature {C}
|
|
292
|
+
9.5, !- Daily Dry-Bulb Temperature Range {C}
|
|
293
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
294
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
295
|
+
Wetbulb, !- Humidity Condition Type
|
|
296
|
+
25.1, !- Wetbulb at Maximum Dry-Bulb {C}
|
|
297
|
+
, !- Humidity Indicating Day Schedule Name
|
|
298
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
299
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
300
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
301
|
+
97679., !- Barometric Pressure {Pa}
|
|
302
|
+
4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
|
|
303
|
+
300, !- Wind Direction {Degrees; N=0, S=180}
|
|
304
|
+
No, !- Rain {Yes/No}
|
|
305
|
+
No, !- Snow on ground {Yes/No}
|
|
306
|
+
No, !- Daylight Savings Time Indicator
|
|
307
|
+
ASHRAETau, !- Solar Model Indicator
|
|
308
|
+
, !- Beam Solar Day Schedule Name
|
|
309
|
+
, !- Diffuse Solar Day Schedule Name
|
|
310
|
+
0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
311
|
+
1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
312
|
+
|
|
313
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (WB=>MDB) 1%, MDB=30.3�C WB=24.5�C
|
|
314
|
+
SizingPeriod:DesignDay,
|
|
315
|
+
Atlanta Hartsfield Intl Ap Ann Clg 1% Condns WB=>MDB, !- Name
|
|
316
|
+
7, !- Month
|
|
317
|
+
21, !- Day of Month
|
|
318
|
+
SummerDesignDay,!- Day Type
|
|
319
|
+
30.3, !- Maximum Dry-Bulb Temperature {C}
|
|
320
|
+
9.5, !- Daily Dry-Bulb Temperature Range {C}
|
|
321
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
322
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
323
|
+
Wetbulb, !- Humidity Condition Type
|
|
324
|
+
24.5, !- Wetbulb at Maximum Dry-Bulb {C}
|
|
325
|
+
, !- Humidity Indicating Day Schedule Name
|
|
326
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
327
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
328
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
329
|
+
97679., !- Barometric Pressure {Pa}
|
|
330
|
+
4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
|
|
331
|
+
300, !- Wind Direction {Degrees; N=0, S=180}
|
|
332
|
+
No, !- Rain {Yes/No}
|
|
333
|
+
No, !- Snow on ground {Yes/No}
|
|
334
|
+
No, !- Daylight Savings Time Indicator
|
|
335
|
+
ASHRAETau, !- Solar Model Indicator
|
|
336
|
+
, !- Beam Solar Day Schedule Name
|
|
337
|
+
, !- Diffuse Solar Day Schedule Name
|
|
338
|
+
0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
339
|
+
1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
340
|
+
|
|
341
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (WB=>MDB) 2%, MDB=29.4�C WB=24�C
|
|
342
|
+
SizingPeriod:DesignDay,
|
|
343
|
+
Atlanta Hartsfield Intl Ap Ann Clg 2% Condns WB=>MDB, !- Name
|
|
344
|
+
7, !- Month
|
|
345
|
+
21, !- Day of Month
|
|
346
|
+
SummerDesignDay,!- Day Type
|
|
347
|
+
29.4, !- Maximum Dry-Bulb Temperature {C}
|
|
348
|
+
9.5, !- Daily Dry-Bulb Temperature Range {C}
|
|
349
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
350
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
351
|
+
Wetbulb, !- Humidity Condition Type
|
|
352
|
+
24, !- Wetbulb at Maximum Dry-Bulb {C}
|
|
353
|
+
, !- Humidity Indicating Day Schedule Name
|
|
354
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
355
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
356
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
357
|
+
97679., !- Barometric Pressure {Pa}
|
|
358
|
+
4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
|
|
359
|
+
300, !- Wind Direction {Degrees; N=0, S=180}
|
|
360
|
+
No, !- Rain {Yes/No}
|
|
361
|
+
No, !- Snow on ground {Yes/No}
|
|
362
|
+
No, !- Daylight Savings Time Indicator
|
|
363
|
+
ASHRAETau, !- Solar Model Indicator
|
|
364
|
+
, !- Beam Solar Day Schedule Name
|
|
365
|
+
, !- Diffuse Solar Day Schedule Name
|
|
366
|
+
0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
367
|
+
1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
368
|
+
|
|
369
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (DP=>MDB) .4%, MDB=27.3�C DP=23.4�C HR=0.0190
|
|
370
|
+
SizingPeriod:DesignDay,
|
|
371
|
+
Atlanta Hartsfield Intl Ap Ann Clg .4% Condns DP=>MDB, !- Name
|
|
372
|
+
7, !- Month
|
|
373
|
+
21, !- Day of Month
|
|
374
|
+
SummerDesignDay,!- Day Type
|
|
375
|
+
27.3, !- Maximum Dry-Bulb Temperature {C}
|
|
376
|
+
9.5, !- Daily Dry-Bulb Temperature Range {C}
|
|
377
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
378
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
379
|
+
Dewpoint, !- Humidity Condition Type
|
|
380
|
+
23.4, !- Dewpoint at Maximum Dry-Bulb {C}
|
|
381
|
+
, !- Humidity Indicating Day Schedule Name
|
|
382
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
383
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
384
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
385
|
+
97679., !- Barometric Pressure {Pa}
|
|
386
|
+
4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
|
|
387
|
+
300, !- Wind Direction {Degrees; N=0, S=180}
|
|
388
|
+
No, !- Rain {Yes/No}
|
|
389
|
+
No, !- Snow on ground {Yes/No}
|
|
390
|
+
No, !- Daylight Savings Time Indicator
|
|
391
|
+
ASHRAETau, !- Solar Model Indicator
|
|
392
|
+
, !- Beam Solar Day Schedule Name
|
|
393
|
+
, !- Diffuse Solar Day Schedule Name
|
|
394
|
+
0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
395
|
+
1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
396
|
+
|
|
397
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (DP=>MDB) 1%, MDB=26.7�C DP=22.9�C HR=0.0183
|
|
398
|
+
SizingPeriod:DesignDay,
|
|
399
|
+
Atlanta Hartsfield Intl Ap Ann Clg 1% Condns DP=>MDB, !- Name
|
|
400
|
+
7, !- Month
|
|
401
|
+
21, !- Day of Month
|
|
402
|
+
SummerDesignDay,!- Day Type
|
|
403
|
+
26.7, !- Maximum Dry-Bulb Temperature {C}
|
|
404
|
+
9.5, !- Daily Dry-Bulb Temperature Range {C}
|
|
405
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
406
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
407
|
+
Dewpoint, !- Humidity Condition Type
|
|
408
|
+
22.9, !- Dewpoint at Maximum Dry-Bulb {C}
|
|
409
|
+
, !- Humidity Indicating Day Schedule Name
|
|
410
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
411
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
412
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
413
|
+
97679., !- Barometric Pressure {Pa}
|
|
414
|
+
4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
|
|
415
|
+
300, !- Wind Direction {Degrees; N=0, S=180}
|
|
416
|
+
No, !- Rain {Yes/No}
|
|
417
|
+
No, !- Snow on ground {Yes/No}
|
|
418
|
+
No, !- Daylight Savings Time Indicator
|
|
419
|
+
ASHRAETau, !- Solar Model Indicator
|
|
420
|
+
, !- Beam Solar Day Schedule Name
|
|
421
|
+
, !- Diffuse Solar Day Schedule Name
|
|
422
|
+
0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
423
|
+
1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
424
|
+
|
|
425
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (DP=>MDB) 2%, MDB=26.3�C DP=22.5�C HR=0.0178
|
|
426
|
+
SizingPeriod:DesignDay,
|
|
427
|
+
Atlanta Hartsfield Intl Ap Ann Clg 2% Condns DP=>MDB, !- Name
|
|
428
|
+
7, !- Month
|
|
429
|
+
21, !- Day of Month
|
|
430
|
+
SummerDesignDay,!- Day Type
|
|
431
|
+
26.3, !- Maximum Dry-Bulb Temperature {C}
|
|
432
|
+
9.5, !- Daily Dry-Bulb Temperature Range {C}
|
|
433
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
434
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
435
|
+
Dewpoint, !- Humidity Condition Type
|
|
436
|
+
22.5, !- Dewpoint at Maximum Dry-Bulb {C}
|
|
437
|
+
, !- Humidity Indicating Day Schedule Name
|
|
438
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
439
|
+
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
440
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
441
|
+
97679., !- Barometric Pressure {Pa}
|
|
442
|
+
4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
|
|
443
|
+
300, !- Wind Direction {Degrees; N=0, S=180}
|
|
444
|
+
No, !- Rain {Yes/No}
|
|
445
|
+
No, !- Snow on ground {Yes/No}
|
|
446
|
+
No, !- Daylight Savings Time Indicator
|
|
447
|
+
ASHRAETau, !- Solar Model Indicator
|
|
448
|
+
, !- Beam Solar Day Schedule Name
|
|
449
|
+
, !- Diffuse Solar Day Schedule Name
|
|
450
|
+
0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
451
|
+
1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
452
|
+
|
|
453
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (Enthalpy=>MDB) .4%, MDB=31.3�C Enthalpy=77900.0J/kg
|
|
454
|
+
SizingPeriod:DesignDay,
|
|
455
|
+
Atlanta Hartsfield Intl Ap Ann Clg .4% Condns Enth=>MDB, !- Name
|
|
456
|
+
7, !- Month
|
|
457
|
+
21, !- Day of Month
|
|
458
|
+
SummerDesignDay,!- Day Type
|
|
459
|
+
31.3, !- Maximum Dry-Bulb Temperature {C}
|
|
460
|
+
9.5, !- Daily Dry-Bulb Temperature Range {C}
|
|
461
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
462
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
463
|
+
Enthalpy, !- Humidity Condition Type
|
|
464
|
+
, !- Wetbulb or Dewpoint at Maximum Dry-Bulb
|
|
465
|
+
, !- Humidity Indicating Day Schedule Name
|
|
466
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
467
|
+
77900.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
468
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
469
|
+
97679., !- Barometric Pressure {Pa}
|
|
470
|
+
4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
|
|
471
|
+
300, !- Wind Direction {Degrees; N=0, S=180}
|
|
472
|
+
No, !- Rain {Yes/No}
|
|
473
|
+
No, !- Snow on ground {Yes/No}
|
|
474
|
+
No, !- Daylight Savings Time Indicator
|
|
475
|
+
ASHRAETau, !- Solar Model Indicator
|
|
476
|
+
, !- Beam Solar Day Schedule Name
|
|
477
|
+
, !- Diffuse Solar Day Schedule Name
|
|
478
|
+
0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
479
|
+
1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
480
|
+
|
|
481
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (Enthalpy=>MDB) 1%, MDB=30.4�C Enthalpy=75600.0J/kg
|
|
482
|
+
SizingPeriod:DesignDay,
|
|
483
|
+
Atlanta Hartsfield Intl Ap Ann Clg 1% Condns Enth=>MDB, !- Name
|
|
484
|
+
7, !- Month
|
|
485
|
+
21, !- Day of Month
|
|
486
|
+
SummerDesignDay,!- Day Type
|
|
487
|
+
30.4, !- Maximum Dry-Bulb Temperature {C}
|
|
488
|
+
9.5, !- Daily Dry-Bulb Temperature Range {C}
|
|
489
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
490
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
491
|
+
Enthalpy, !- Humidity Condition Type
|
|
492
|
+
, !- Wetbulb or Dewpoint at Maximum Dry-Bulb
|
|
493
|
+
, !- Humidity Indicating Day Schedule Name
|
|
494
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
495
|
+
75600.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
496
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
497
|
+
97679., !- Barometric Pressure {Pa}
|
|
498
|
+
4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
|
|
499
|
+
300, !- Wind Direction {Degrees; N=0, S=180}
|
|
500
|
+
No, !- Rain {Yes/No}
|
|
501
|
+
No, !- Snow on ground {Yes/No}
|
|
502
|
+
No, !- Daylight Savings Time Indicator
|
|
503
|
+
ASHRAETau, !- Solar Model Indicator
|
|
504
|
+
, !- Beam Solar Day Schedule Name
|
|
505
|
+
, !- Diffuse Solar Day Schedule Name
|
|
506
|
+
0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
507
|
+
1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
508
|
+
|
|
509
|
+
! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (Enthalpy=>MDB) 2%, MDB=29.7�C Enthalpy=73500.0J/kg
|
|
510
|
+
SizingPeriod:DesignDay,
|
|
511
|
+
Atlanta Hartsfield Intl Ap Ann Clg 2% Condns Enth=>MDB, !- Name
|
|
512
|
+
7, !- Month
|
|
513
|
+
21, !- Day of Month
|
|
514
|
+
SummerDesignDay,!- Day Type
|
|
515
|
+
29.7, !- Maximum Dry-Bulb Temperature {C}
|
|
516
|
+
9.5, !- Daily Dry-Bulb Temperature Range {C}
|
|
517
|
+
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
|
518
|
+
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
|
519
|
+
Enthalpy, !- Humidity Condition Type
|
|
520
|
+
, !- Wetbulb or Dewpoint at Maximum Dry-Bulb
|
|
521
|
+
, !- Humidity Indicating Day Schedule Name
|
|
522
|
+
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
|
|
523
|
+
73500.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
|
|
524
|
+
, !- Daily Wet-Bulb Temperature Range {deltaC}
|
|
525
|
+
97679., !- Barometric Pressure {Pa}
|
|
526
|
+
4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
|
|
527
|
+
300, !- Wind Direction {Degrees; N=0, S=180}
|
|
528
|
+
No, !- Rain {Yes/No}
|
|
529
|
+
No, !- Snow on ground {Yes/No}
|
|
530
|
+
No, !- Daylight Savings Time Indicator
|
|
531
|
+
ASHRAETau, !- Solar Model Indicator
|
|
532
|
+
, !- Beam Solar Day Schedule Name
|
|
533
|
+
, !- Diffuse Solar Day Schedule Name
|
|
534
|
+
0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
|
|
535
|
+
1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
|
|
536
|
+
|