openstudio-standards 0.8.4 → 0.8.5.rc1
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/data/geometry/ASHRAECollege.osm +30 -30
- data/data/geometry/ASHRAECourthouse.osm +22 -22
- data/data/geometry/ASHRAESmallOfficeDetailed.osm +2 -2
- data/data/geometry/DEER_Asm.osm +1 -1
- data/data/geometry/DEER_ECC.osm +1 -1
- data/data/geometry/DEER_EPr.osm +1 -1
- data/data/geometry/DEER_ERC.osm +1 -1
- data/data/geometry/DEER_ESe.osm +1 -1
- data/data/geometry/DEER_EUn.osm +1 -1
- data/data/geometry/DEER_Hsp.osm +1 -1
- data/data/geometry/DEER_Htl.osm +1 -1
- data/data/geometry/DEER_MBT.osm +1 -1
- data/data/geometry/DEER_MFm.osm +1 -1
- data/data/geometry/DEER_Nrs.osm +1 -1
- data/data/geometry/DEER_OfL.osm +1 -1
- data/data/geometry/DEER_OfS.osm +1 -1
- data/data/geometry/DEER_RFF.osm +1 -1
- data/data/geometry/DEER_RSD.osm +1 -1
- data/data/geometry/DEER_Rt3.osm +1 -1
- data/data/geometry/DEER_RtS.osm +1 -1
- data/data/standards/export_OpenStudio_libraries.rb +2 -3
- data/data/standards/test_performance_expected_dd_results.csv +42 -42
- data/lib/openstudio-standards/btap/NECB_building_types.csv +35 -0
- data/lib/openstudio-standards/btap/NECB_space_types.csv +109 -0
- data/lib/openstudio-standards/btap/activity.rb +480 -0
- data/lib/openstudio-standards/btap/attributes.rb +166 -0
- data/lib/openstudio-standards/btap/bridging.rb +561 -1402
- data/lib/openstudio-standards/btap/btap.rb +4 -2
- data/lib/openstudio-standards/btap/btap_test_helper.rb +86 -0
- data/lib/openstudio-standards/btap/carbon/btap_carbon.rb +177 -0
- data/lib/openstudio-standards/btap/{costing/common_paths.rb → common_paths.rb} +14 -11
- data/lib/openstudio-standards/btap/common_resources/carbon_frame.csv +35 -0
- data/lib/openstudio-standards/btap/common_resources/carbon_glazing.csv +35 -0
- data/lib/openstudio-standards/btap/common_resources/carbon_opaque.csv +164 -0
- data/lib/openstudio-standards/btap/common_resources/constructions_glazing.csv +121 -0
- data/lib/openstudio-standards/btap/common_resources/costs.csv +1897 -0
- data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/lighting.csv +59 -59
- data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/materials_hvac.csv +1019 -1032
- data/lib/openstudio-standards/btap/costing/btap_costing.rb +3 -7
- data/lib/openstudio-standards/btap/costing/costing_database_wrapper.rb +1 -5
- data/lib/openstudio-standards/btap/costing/daylighting_sensor_control_costing.rb +5 -4
- data/lib/openstudio-standards/btap/costing/dcv_costing.rb +1 -1
- data/lib/openstudio-standards/btap/costing/envelope_costing.rb +112 -181
- data/lib/openstudio-standards/btap/costing/heating_cooling_costing.rb +4 -4
- data/lib/openstudio-standards/btap/costing/led_lighting_costing.rb +2 -1
- data/lib/openstudio-standards/btap/costing/lighting_costing.rb +3 -3
- data/lib/openstudio-standards/btap/costing/test_list.txt +15 -17
- data/lib/openstudio-standards/btap/costing/test_run_all_test_locally.rb +10 -9
- data/lib/openstudio-standards/btap/geometry.rb +86 -6
- data/lib/openstudio-standards/btap/structure.rb +657 -0
- data/lib/openstudio-standards/create_typical/create_typical.rb +17 -33
- data/lib/openstudio-standards/create_typical/space_type_ratios.rb +36 -36
- data/lib/openstudio-standards/equipment/create_transformer.rb +104 -0
- data/lib/openstudio-standards/equipment/create_typical_equipment.rb +117 -0
- data/lib/openstudio-standards/equipment/data/electric_equipment_space_types.json +1514 -0
- data/lib/openstudio-standards/equipment/data/gas_equipment_space_types.json +227 -0
- data/lib/openstudio-standards/exterior_lighting/create.rb +22 -22
- data/lib/openstudio-standards/exterior_lighting/information.rb +3 -2
- data/lib/openstudio-standards/hvac/components/air_conditioner_vrf.rb +482 -0
- data/lib/openstudio-standards/hvac/components/air_terminal.rb +31 -0
- data/lib/openstudio-standards/hvac/components/boiler_hot_water.rb +163 -0
- data/lib/openstudio-standards/hvac/components/central_air_source_heat_pump.rb +220 -0
- data/lib/openstudio-standards/hvac/components/chiller.rb +25 -0
- data/lib/openstudio-standards/hvac/components/coil.rb +276 -0
- data/lib/openstudio-standards/hvac/components/coil_cooling_dx_multi_speed.rb +40 -0
- data/lib/openstudio-standards/hvac/components/coil_cooling_dx_single_speed.rb +300 -0
- data/lib/openstudio-standards/hvac/components/coil_cooling_dx_two_speed.rb +187 -0
- data/lib/openstudio-standards/hvac/components/coil_cooling_water.rb +80 -0
- data/lib/openstudio-standards/hvac/components/coil_cooling_water_to_air_heat_pump_equation_fit.rb +182 -0
- data/lib/openstudio-standards/hvac/components/coil_heating_dx_single_speed.rb +220 -0
- data/lib/openstudio-standards/hvac/components/coil_heating_electric.rb +56 -0
- data/lib/openstudio-standards/hvac/components/coil_heating_gas.rb +90 -0
- data/lib/openstudio-standards/hvac/components/coil_heating_gas_multi_stage.rb +33 -0
- data/lib/openstudio-standards/hvac/components/coil_heating_water.rb +98 -0
- data/lib/openstudio-standards/hvac/components/coil_heating_water_to_air_heat_pump_equation_fit.rb +147 -0
- data/lib/openstudio-standards/hvac/components/component.rb +39 -0
- data/lib/openstudio-standards/{standards/ashrae_90_1/data/ashrae_90_1.fans.json → hvac/components/data/fans.json} +6 -6
- data/lib/openstudio-standards/hvac/components/fan.rb +363 -0
- data/lib/openstudio-standards/hvac/components/heat_exchanger_air_to_air.rb +203 -0
- data/lib/openstudio-standards/hvac/components/pump.rb +181 -0
- data/lib/openstudio-standards/hvac/controls/radiant_system_controls.rb +594 -0
- data/lib/openstudio-standards/hvac/conversions.rb +222 -0
- data/lib/openstudio-standards/hvac/curves.rb +192 -0
- data/lib/openstudio-standards/hvac/helpers.rb +357 -0
- data/lib/openstudio-standards/hvac/setpoint_managers/information.rb +4 -4
- data/lib/openstudio-standards/interior_lighting/create_lights.rb +52 -0
- data/lib/openstudio-standards/interior_lighting/create_typical_interior_lighting.rb +254 -0
- data/lib/openstudio-standards/interior_lighting/data/convert_lighting_data.rb +249 -0
- data/lib/openstudio-standards/interior_lighting/data/lighting_space_types.csv +96 -0
- data/lib/openstudio-standards/interior_lighting/data/lighting_space_types.json +1429 -0
- data/lib/openstudio-standards/interior_lighting/data/lighting_technology.csv +46 -0
- data/lib/openstudio-standards/interior_lighting/data/lighting_technology.json +859 -0
- data/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2010/ashrae_90_1_2010.AirTerminalSingleDuctVAVReheat.rb +1 -1
- data/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.AirTerminalSingleDuctVAVReheat.rb +1 -1
- data/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.AirTerminalSingleDuctVAVReheat.rb +1 -1
- data/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Model.rb +4 -4
- data/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.AirTerminalSingleDuctVAVReheat.rb +1 -1
- data/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Model.rb +4 -4
- data/lib/openstudio-standards/prototypes/ashrae_90_1/nrel_nze_ready_2017/nrel_zne_ready_2017.AirTerminalSingleDuctVAVReheat.rb +1 -1
- data/lib/openstudio-standards/prototypes/ashrae_90_1/ze_aedg_multifamily/ze_aedg_multifamily.AirTerminalSingleDuctVAVReheat.rb +1 -1
- data/lib/openstudio-standards/prototypes/common/buildings/Prototype.HighRiseApartment.rb +6 -7
- data/lib/openstudio-standards/prototypes/common/buildings/Prototype.Hospital.rb +15 -15
- data/lib/openstudio-standards/prototypes/common/buildings/Prototype.LargeHotel.rb +4 -4
- data/lib/openstudio-standards/prototypes/common/buildings/Prototype.LargeOffice.rb +5 -5
- data/lib/openstudio-standards/prototypes/common/buildings/Prototype.MediumOffice.rb +6 -6
- data/lib/openstudio-standards/prototypes/common/buildings/Prototype.Outpatient.rb +7 -7
- data/lib/openstudio-standards/prototypes/common/buildings/Prototype.PrimarySchool.rb +4 -4
- data/lib/openstudio-standards/prototypes/common/buildings/Prototype.SecondarySchool.rb +6 -6
- data/lib/openstudio-standards/prototypes/common/buildings/Prototype.SmallOfficeDetailed.rb +5 -1
- data/lib/openstudio-standards/prototypes/common/data/prototype_space_type_map.json +2594 -0
- data/lib/openstudio-standards/prototypes/common/data/thermostat_schedule_lookup.json +2108 -0
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.AirTerminalSingleDuctVAVReheat.rb +33 -0
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.Fan.rb +0 -140
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.FanConstantVolume.rb +1 -73
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.FanOnOff.rb +1 -69
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.FanVariableVolume.rb +0 -116
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.FanZoneExhaust.rb +0 -61
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.hvac.rb +2 -2
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.rb +128 -13
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.hvac_systems.rb +606 -607
- data/lib/openstudio-standards/prototypes/common/prototype_space_type_map.rb +41 -0
- data/lib/openstudio-standards/prototypes/common/space_type_equipment_map.rb +184 -0
- data/lib/openstudio-standards/prototypes/common/space_type_thermostat_schedule_map.rb +116 -0
- data/lib/openstudio-standards/qaqc/hvac.rb +12 -12
- data/lib/openstudio-standards/refrigeration/create_compressor.rb +2 -5
- data/lib/openstudio-standards/refrigeration/data/refrigeration_compressors.csv +4 -4
- data/lib/openstudio-standards/service_water_heating/create_water_heater.rb +1 -2
- data/lib/openstudio-standards/service_water_heating/create_water_use.rb +5 -5
- data/lib/openstudio-standards/space_type/data/level_1_space_types.json +612 -0
- data/lib/openstudio-standards/space_type/standards_space_type.rb +53 -0
- data/lib/openstudio-standards/standards/Standards.AirConditionerVariableRefrigerantFlow.rb +8 -26
- data/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb +13 -13
- data/lib/openstudio-standards/standards/Standards.AirTerminalSingleDuctVAVReheat.rb +0 -24
- data/lib/openstudio-standards/standards/Standards.BoilerHotWater.rb +6 -43
- data/lib/openstudio-standards/standards/Standards.ChillerElectricEIR.rb +7 -24
- data/lib/openstudio-standards/standards/Standards.CoilCoolingDXMultiSpeed.rb +19 -44
- data/lib/openstudio-standards/standards/Standards.CoilCoolingDXSingleSpeed.rb +25 -50
- data/lib/openstudio-standards/standards/Standards.CoilCoolingDXTwoSpeed.rb +25 -33
- data/lib/openstudio-standards/standards/Standards.CoilCoolingWaterToAirHeatPumpEquationFit.rb +9 -22
- data/lib/openstudio-standards/standards/Standards.CoilDX.rb +15 -157
- data/lib/openstudio-standards/standards/Standards.CoilHeatingDXMultiSpeed.rb +2 -2
- data/lib/openstudio-standards/standards/Standards.CoilHeatingDXSingleSpeed.rb +18 -105
- data/lib/openstudio-standards/standards/Standards.CoilHeatingGas.rb +3 -23
- data/lib/openstudio-standards/standards/Standards.CoilHeatingGasMultiStage.rb +0 -24
- data/lib/openstudio-standards/standards/Standards.CoilHeatingWaterToAirHeatPumpEquationFit.rb +2 -86
- data/lib/openstudio-standards/standards/Standards.FanVariableVolume.rb +0 -107
- data/lib/openstudio-standards/standards/Standards.Model.rb +6 -11
- data/lib/openstudio-standards/standards/Standards.People.rb +113 -0
- data/lib/openstudio-standards/standards/Standards.PlantLoop.rb +11 -11
- data/lib/openstudio-standards/standards/Standards.Pump.rb +2 -147
- data/lib/openstudio-standards/standards/Standards.PumpVariableSpeed.rb +57 -41
- data/lib/openstudio-standards/standards/Standards.SpaceType.rb +30 -153
- data/lib/openstudio-standards/standards/Standards.Ventilation.rb +74 -0
- data/lib/openstudio-standards/standards/Standards.ZoneHVACComponent.rb +1 -1
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/ashrae_90_1_2004.PlantLoop.rb +4 -4
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.heat_pumps_heating.json +3 -3
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.spc_typ.json +37 -112
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/comstock_ashrae_90_1_2007/data/comstock_ashrae_90_1_2007.spc_typ.json +37 -102
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.heat_pumps_heating.json +3 -3
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.spc_typ.json +37 -112
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/ashrae_90_1_2010.AirTerminalSingleDuctVAVReheat.rb +1 -1
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/comstock_ashrae_90_1_2010/data/comstock_ashrae_90_1_2010.spc_typ.json +37 -37
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.heat_pumps_heating.json +6 -6
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.spc_typ.json +37 -37
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.AirTerminalSingleDuctVAVReheat.rb +1 -1
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.BoilerHotWater.rb +1 -1
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/comstock_ashrae_90_1_2013/data/comstock_ashrae_90_1_2013.spc_typ.json +37 -102
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.heat_pumps_heating.json +6 -6
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.spc_typ.json +37 -37
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.AirTerminalSingleDuctVAVReheat.rb +1 -1
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.BoilerHotWater.rb +1 -1
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/comstock_ashrae_90_1_2016/data/comstock_ashrae_90_1_2016.spc_typ.json +45 -109
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.heat_pumps_heating.json +6 -6
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.spc_typ.json +37 -37
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.AirLoopHVAC.rb +1 -1
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.AirTerminalSingleDuctVAVReheat.rb +1 -1
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.BoilerHotWater.rb +1 -1
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.CoilHeatingGas.rb +1 -1
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/comstock_ashrae_90_1_2019/data/comstock_ashrae_90_1_2019.spc_typ.json +45 -109
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.heat_pumps_heating.json +6 -6
- data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.spc_typ.json +37 -37
- data/lib/openstudio-standards/standards/ashrae_90_1/data/ashrae_90_1.curves.json +0 -200
- data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/comstock_doe_ref_1980_2004/data/comstock_doe_ref_1980_2004.spc_typ.json +37 -37
- data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/data/doe_ref_1980_2004.spc_typ.json +37 -37
- data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/comstock_doe_ref_pre_1980/data/comstock_doe_ref_pre_1980.spc_typ.json +37 -37
- data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/data/doe_ref_pre_1980.spc_typ.json +37 -37
- data/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/nrel_zne_ready_2017.AirTerminalSingleDuctVAVReheat.rb +1 -1
- data/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/nrel_zne_ready_2017.PlantLoop.rb +5 -5
- data/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/ze_aedg_multifamily.AirTerminalSingleDuctVAVReheat.rb +1 -1
- data/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/ze_aedg_multifamily.PlantLoop.rb +5 -5
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.AirLoopHVAC.rb +1 -1
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.ChillerElectricEIR.rb +2 -2
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilCoolingDXSingleSpeed.rb +2 -68
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilCoolingDXTwoSpeed.rb +2 -35
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilDX.rb +42 -0
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilHeatingDXSingleSpeed.rb +5 -2
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilHeatingGas.rb +2 -2
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.PlantLoop.rb +3 -3
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.SpaceType.rb +1 -1
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/ashrae_90_1_prm_2019.Model.rb +1 -0
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/ashrae_90_1_prm_2019_WaterHeaterMixed.rb +2 -4
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/data/ashrae_90_1_prm.curves.json +0 -200
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/data/ashrae_90_1_prm.fans.json +5 -5
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/ashrae_90_1_prm.UserData.rb +1 -0
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_enums.rb +0 -1
- data/lib/openstudio-standards/standards/cbes/data/cbes.curves.json +0 -200
- data/lib/openstudio-standards/standards/deer/data/deer.curves.json +0 -200
- data/lib/openstudio-standards/standards/necb/BTAPPRE1980/btap_pre1980.rb +19 -10
- data/lib/openstudio-standards/standards/necb/BTAPPRE1980/building_envelope.rb +12 -11
- data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_systems.rb +4 -4
- data/lib/openstudio-standards/standards/necb/ECMS/ecms.rb +1 -1
- data/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb +69 -92
- data/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +2 -1
- data/lib/openstudio-standards/standards/necb/NECB2011/beps_compliance_path.rb +16 -12
- data/lib/openstudio-standards/standards/necb/NECB2011/building_envelope.rb +799 -46
- data/lib/openstudio-standards/standards/necb/NECB2011/data/chillers.json +33 -51
- data/lib/openstudio-standards/standards/necb/NECB2011/data/constants.json +32 -0
- data/lib/openstudio-standards/standards/necb/NECB2011/data/fuel_type_sets.json +18 -0
- data/lib/openstudio-standards/standards/necb/NECB2011/data/heat_pumps_heating.json +21 -15
- data/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb +5 -5
- data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb +2 -0
- data/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb +30 -141
- data/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb +233 -112
- data/lib/openstudio-standards/standards/necb/NECB2015/data/heat_pumps_heating.json +10 -2
- data/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb +2 -2
- data/lib/openstudio-standards/standards/necb/NECB2020/data/heat_pumps_heating.json +16 -6
- data/lib/openstudio-standards/standards/necb/NECB2020/data/unitary_acs.json +60 -61
- data/lib/openstudio-standards/standards/necb/NECB2020/service_water_heating.rb +30 -30
- data/lib/openstudio-standards/standards/necb/common/btap_analysis.rb +79 -0
- data/lib/openstudio-standards/standards/necb/common/btap_data.rb +16 -4
- data/lib/openstudio-standards/standards/necb/common/btap_datapoint.rb +65 -42
- data/lib/openstudio-standards/thermal_zone/{thermal_zone.rb → information.rb} +12 -45
- data/lib/openstudio-standards/thermal_zone/thermostat_schedules.rb +152 -0
- data/lib/openstudio-standards/version.rb +1 -1
- data/lib/openstudio-standards/weather/stat_file.rb +2 -2
- data/lib/openstudio-standards.rb +55 -38
- metadata +106 -66
- data/lib/openstudio-standards/btap/costing/common_resources/constructions_glazing.csv +0 -61
- data/lib/openstudio-standards/btap/costing/common_resources/costs.csv +0 -1904
- data/lib/openstudio-standards/hvac/components/create.rb +0 -169
- data/lib/openstudio-standards/hvac/components/modify.rb +0 -42
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.AirConditionerVariableRefrigerantFlow.rb +0 -438
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.BoilerHotWater.rb +0 -123
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.CentralAirSourceHeatPump.rb +0 -216
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilCoolingDXSingleSpeed.rb +0 -273
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilCoolingDXTwoSpeed.rb +0 -159
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilCoolingWater.rb +0 -77
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilCoolingWaterToAirHeatPumpEquationFit.rb +0 -154
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilHeatingDXSingleSpeed.rb +0 -214
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilHeatingElectric.rb +0 -53
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilHeatingGas.rb +0 -72
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilHeatingWater.rb +0 -95
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilHeatingWaterToAirHeatPumpEquationFit.rb +0 -125
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.ControllerWaterCoil.rb +0 -17
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.transformers.rb +0 -90
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.Pump.rb +0 -4
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.PumpVariableSpeed.rb +0 -70
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.radiant_system_controls.rb +0 -590
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.utilities.rb +0 -901
- data/lib/openstudio-standards/standards/Standards.FanConstantVolume.rb +0 -5
- data/lib/openstudio-standards/standards/Standards.FanOnOff.rb +0 -5
- data/lib/openstudio-standards/standards/Standards.FanZoneExhaust.rb +0 -5
- data/lib/openstudio-standards/standards/Standards.HeaderedPumpsConstantSpeed.rb +0 -5
- data/lib/openstudio-standards/standards/Standards.HeaderedPumpsVariableSpeed.rb +0 -55
- data/lib/openstudio-standards/standards/Standards.PumpConstantSpeed.rb +0 -5
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.FanConstantVolume.rb +0 -5
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.FanOnOff.rb +0 -5
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.FanZoneExhaust.rb +0 -5
- data/lib/openstudio-standards/standards/cbes/data/cbes.fans.json +0 -328
- data/lib/openstudio-standards/standards/deer/data/deer.fans.json +0 -328
- /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/ConstructionProperties.csv +0 -0
- /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/Constructions.csv +0 -0
- /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/construction_sets.csv +0 -0
- /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/constructions_opaque.csv +0 -0
- /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/costs_local_factors.csv +0 -0
- /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/hvac_vent_ahu.csv +0 -0
- /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/lighting_sets.csv +0 -0
- /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/locations.csv +0 -0
- /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/materials_glazing.csv +0 -0
- /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/materials_lighting.csv +0 -0
- /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/materials_opaque.csv +0 -0
- /data/lib/openstudio-standards/{prototypes → standards}/ashrae_90_1/ashrae_90_1_2004/ashrae_90_1_2004.PumpVariableSpeed.rb +0 -0
- /data/lib/openstudio-standards/{prototypes → standards}/ashrae_90_1/ashrae_90_1_2007/ashrae_90_1_2007.PumpVariableSpeed.rb +0 -0
- /data/lib/openstudio-standards/{prototypes → standards}/ashrae_90_1/ashrae_90_1_2010/ashrae_90_1_2010.PumpVariableSpeed.rb +0 -0
- /data/lib/openstudio-standards/{prototypes → standards}/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.PumpVariableSpeed.rb +0 -0
- /data/lib/openstudio-standards/{prototypes → standards}/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.PumpVariableSpeed.rb +0 -0
- /data/lib/openstudio-standards/{prototypes → standards}/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Pump.rb +0 -0
- /data/lib/openstudio-standards/{prototypes → standards}/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.PumpVariableSpeed.rb +0 -0
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
{
|
|
69
69
|
"template": "ComStock DOE Ref Pre-1980",
|
|
70
70
|
"building_type": "College",
|
|
71
|
-
"space_type": "
|
|
71
|
+
"space_type": "Conference",
|
|
72
72
|
"lighting_primary_space_type": "Conference",
|
|
73
73
|
"lighting_secondary_space_type": "General",
|
|
74
74
|
"manual_continuous_dimming": null,
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
{
|
|
85
85
|
"template": "ComStock DOE Ref Pre-1980",
|
|
86
86
|
"building_type": "College",
|
|
87
|
-
"space_type": "
|
|
87
|
+
"space_type": "Corridor",
|
|
88
88
|
"lighting_primary_space_type": "Corridor",
|
|
89
89
|
"lighting_secondary_space_type": "General",
|
|
90
90
|
"manual_continuous_dimming": null,
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
{
|
|
101
101
|
"template": "ComStock DOE Ref Pre-1980",
|
|
102
102
|
"building_type": "College",
|
|
103
|
-
"space_type": "
|
|
103
|
+
"space_type": "Elevator Shaft",
|
|
104
104
|
"lighting_primary_space_type": "ElevatorCore",
|
|
105
105
|
"lighting_secondary_space_type": null,
|
|
106
106
|
"manual_continuous_dimming": null,
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
{
|
|
117
117
|
"template": "ComStock DOE Ref Pre-1980",
|
|
118
118
|
"building_type": "College",
|
|
119
|
-
"space_type": "
|
|
119
|
+
"space_type": "Entrance Lobby",
|
|
120
120
|
"lighting_primary_space_type": "Lobby - elevator",
|
|
121
121
|
"lighting_secondary_space_type": "General",
|
|
122
122
|
"manual_continuous_dimming": null,
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
{
|
|
133
133
|
"template": "ComStock DOE Ref Pre-1980",
|
|
134
134
|
"building_type": "College",
|
|
135
|
-
"space_type": "
|
|
135
|
+
"space_type": "Lounge",
|
|
136
136
|
"lighting_primary_space_type": "Lounge",
|
|
137
137
|
"lighting_secondary_space_type": "General",
|
|
138
138
|
"manual_continuous_dimming": null,
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
{
|
|
149
149
|
"template": "ComStock DOE Ref Pre-1980",
|
|
150
150
|
"building_type": "College",
|
|
151
|
-
"space_type": "
|
|
151
|
+
"space_type": "Office",
|
|
152
152
|
"lighting_primary_space_type": "Office - enclosed",
|
|
153
153
|
"lighting_secondary_space_type": "General",
|
|
154
154
|
"manual_continuous_dimming": null,
|
|
@@ -164,7 +164,7 @@
|
|
|
164
164
|
{
|
|
165
165
|
"template": "ComStock DOE Ref Pre-1980",
|
|
166
166
|
"building_type": "College",
|
|
167
|
-
"space_type": "
|
|
167
|
+
"space_type": "Restroom",
|
|
168
168
|
"lighting_primary_space_type": "Restroom",
|
|
169
169
|
"lighting_secondary_space_type": "General",
|
|
170
170
|
"manual_continuous_dimming": null,
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
{
|
|
181
181
|
"template": "ComStock DOE Ref Pre-1980",
|
|
182
182
|
"building_type": "College",
|
|
183
|
-
"space_type": "
|
|
183
|
+
"space_type": "Utility",
|
|
184
184
|
"lighting_primary_space_type": "Electrical/Mechanical",
|
|
185
185
|
"lighting_secondary_space_type": "General",
|
|
186
186
|
"manual_continuous_dimming": null,
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
{
|
|
197
197
|
"template": "ComStock DOE Ref Pre-1980",
|
|
198
198
|
"building_type": "College",
|
|
199
|
-
"space_type": "
|
|
199
|
+
"space_type": "Art Classroom",
|
|
200
200
|
"lighting_primary_space_type": "Classroom/lecture/training",
|
|
201
201
|
"lighting_secondary_space_type": "General",
|
|
202
202
|
"manual_continuous_dimming": null,
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
{
|
|
213
213
|
"template": "ComStock DOE Ref Pre-1980",
|
|
214
214
|
"building_type": "College",
|
|
215
|
-
"space_type": "
|
|
215
|
+
"space_type": "Classroom",
|
|
216
216
|
"lighting_primary_space_type": "Classroom",
|
|
217
217
|
"lighting_secondary_space_type": "General",
|
|
218
218
|
"manual_continuous_dimming": null,
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
{
|
|
229
229
|
"template": "ComStock DOE Ref Pre-1980",
|
|
230
230
|
"building_type": "College",
|
|
231
|
-
"space_type": "
|
|
231
|
+
"space_type": "Laboratory",
|
|
232
232
|
"lighting_primary_space_type": "Lab",
|
|
233
233
|
"lighting_secondary_space_type": "General",
|
|
234
234
|
"manual_continuous_dimming": null,
|
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
{
|
|
245
245
|
"template": "ComStock DOE Ref Pre-1980",
|
|
246
246
|
"building_type": "College",
|
|
247
|
-
"space_type": "
|
|
247
|
+
"space_type": "Lecture Hall",
|
|
248
248
|
"lighting_primary_space_type": "Auditorium",
|
|
249
249
|
"lighting_secondary_space_type": "General",
|
|
250
250
|
"manual_continuous_dimming": null,
|
|
@@ -260,7 +260,7 @@
|
|
|
260
260
|
{
|
|
261
261
|
"template": "ComStock DOE Ref Pre-1980",
|
|
262
262
|
"building_type": "College",
|
|
263
|
-
"space_type": "
|
|
263
|
+
"space_type": "Media Center",
|
|
264
264
|
"lighting_primary_space_type": "Auditorium",
|
|
265
265
|
"lighting_secondary_space_type": "General",
|
|
266
266
|
"manual_continuous_dimming": null,
|
|
@@ -276,7 +276,7 @@
|
|
|
276
276
|
{
|
|
277
277
|
"template": "ComStock DOE Ref Pre-1980",
|
|
278
278
|
"building_type": "College",
|
|
279
|
-
"space_type": "
|
|
279
|
+
"space_type": "Stairs",
|
|
280
280
|
"lighting_primary_space_type": "Stair",
|
|
281
281
|
"lighting_secondary_space_type": "General",
|
|
282
282
|
"manual_continuous_dimming": null,
|
|
@@ -292,7 +292,7 @@
|
|
|
292
292
|
{
|
|
293
293
|
"template": "ComStock DOE Ref Pre-1980",
|
|
294
294
|
"building_type": "College",
|
|
295
|
-
"space_type": "
|
|
295
|
+
"space_type": "Storage",
|
|
296
296
|
"lighting_primary_space_type": "Storage",
|
|
297
297
|
"lighting_secondary_space_type": "General",
|
|
298
298
|
"manual_continuous_dimming": null,
|
|
@@ -308,7 +308,7 @@
|
|
|
308
308
|
{
|
|
309
309
|
"template": "ComStock DOE Ref Pre-1980",
|
|
310
310
|
"building_type": "Courthouse",
|
|
311
|
-
"space_type": "
|
|
311
|
+
"space_type": "Break Room",
|
|
312
312
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
313
313
|
"lighting_primary_space_type": "Office",
|
|
314
314
|
"lighting_secondary_space_type": "BreakRoom",
|
|
@@ -373,7 +373,7 @@
|
|
|
373
373
|
{
|
|
374
374
|
"template": "ComStock DOE Ref Pre-1980",
|
|
375
375
|
"building_type": "Courthouse",
|
|
376
|
-
"space_type": "
|
|
376
|
+
"space_type": "Cell",
|
|
377
377
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
378
378
|
"lighting_primary_space_type": null,
|
|
379
379
|
"lighting_secondary_space_type": null,
|
|
@@ -438,7 +438,7 @@
|
|
|
438
438
|
{
|
|
439
439
|
"template": "ComStock DOE Ref Pre-1980",
|
|
440
440
|
"building_type": "Courthouse",
|
|
441
|
-
"space_type": "
|
|
441
|
+
"space_type": "Conference",
|
|
442
442
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
443
443
|
"lighting_primary_space_type": "Office",
|
|
444
444
|
"lighting_secondary_space_type": "Conference",
|
|
@@ -503,7 +503,7 @@
|
|
|
503
503
|
{
|
|
504
504
|
"template": "ComStock DOE Ref Pre-1980",
|
|
505
505
|
"building_type": "Courthouse",
|
|
506
|
-
"space_type": "
|
|
506
|
+
"space_type": "Corridor",
|
|
507
507
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
508
508
|
"lighting_primary_space_type": "Office",
|
|
509
509
|
"lighting_secondary_space_type": "Corridor",
|
|
@@ -568,7 +568,7 @@
|
|
|
568
568
|
{
|
|
569
569
|
"template": "ComStock DOE Ref Pre-1980",
|
|
570
570
|
"building_type": "Courthouse",
|
|
571
|
-
"space_type": "
|
|
571
|
+
"space_type": "Courtroom",
|
|
572
572
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
573
573
|
"lighting_primary_space_type": null,
|
|
574
574
|
"lighting_secondary_space_type": null,
|
|
@@ -633,7 +633,7 @@
|
|
|
633
633
|
{
|
|
634
634
|
"template": "ComStock DOE Ref Pre-1980",
|
|
635
635
|
"building_type": "Courthouse",
|
|
636
|
-
"space_type": "
|
|
636
|
+
"space_type": "Courtroom Waiting",
|
|
637
637
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
638
638
|
"lighting_primary_space_type": "Office",
|
|
639
639
|
"lighting_secondary_space_type": "Lobby",
|
|
@@ -698,7 +698,7 @@
|
|
|
698
698
|
{
|
|
699
699
|
"template": "ComStock DOE Ref Pre-1980",
|
|
700
700
|
"building_type": "Courthouse",
|
|
701
|
-
"space_type": "
|
|
701
|
+
"space_type": "Elevator Lobby",
|
|
702
702
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
703
703
|
"lighting_primary_space_type": "Office",
|
|
704
704
|
"lighting_secondary_space_type": "Lobby",
|
|
@@ -763,7 +763,7 @@
|
|
|
763
763
|
{
|
|
764
764
|
"template": "ComStock DOE Ref Pre-1980",
|
|
765
765
|
"building_type": "Courthouse",
|
|
766
|
-
"space_type": "
|
|
766
|
+
"space_type": "Elevator Shaft",
|
|
767
767
|
"lighting_standard": null,
|
|
768
768
|
"lighting_primary_space_type": null,
|
|
769
769
|
"lighting_secondary_space_type": null,
|
|
@@ -828,7 +828,7 @@
|
|
|
828
828
|
{
|
|
829
829
|
"template": "ComStock DOE Ref Pre-1980",
|
|
830
830
|
"building_type": "Courthouse",
|
|
831
|
-
"space_type": "
|
|
831
|
+
"space_type": "Entrance Lobby",
|
|
832
832
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
833
833
|
"lighting_primary_space_type": "Office",
|
|
834
834
|
"lighting_secondary_space_type": "Lobby",
|
|
@@ -893,7 +893,7 @@
|
|
|
893
893
|
{
|
|
894
894
|
"template": "ComStock DOE Ref Pre-1980",
|
|
895
895
|
"building_type": "Courthouse",
|
|
896
|
-
"space_type": "
|
|
896
|
+
"space_type": "Judges Chamber",
|
|
897
897
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
898
898
|
"lighting_primary_space_type": "Office",
|
|
899
899
|
"lighting_secondary_space_type": "ClosedOffice",
|
|
@@ -958,7 +958,7 @@
|
|
|
958
958
|
{
|
|
959
959
|
"template": "ComStock DOE Ref Pre-1980",
|
|
960
960
|
"building_type": "Courthouse",
|
|
961
|
-
"space_type": "
|
|
961
|
+
"space_type": "Jury Assembly",
|
|
962
962
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
963
963
|
"lighting_primary_space_type": "PrimarySchool",
|
|
964
964
|
"lighting_secondary_space_type": "Classroom",
|
|
@@ -1023,7 +1023,7 @@
|
|
|
1023
1023
|
{
|
|
1024
1024
|
"template": "ComStock DOE Ref Pre-1980",
|
|
1025
1025
|
"building_type": "Courthouse",
|
|
1026
|
-
"space_type": "
|
|
1026
|
+
"space_type": "Jury Deliberation",
|
|
1027
1027
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1028
1028
|
"lighting_primary_space_type": "Office",
|
|
1029
1029
|
"lighting_secondary_space_type": "Conference",
|
|
@@ -1088,7 +1088,7 @@
|
|
|
1088
1088
|
{
|
|
1089
1089
|
"template": "ComStock DOE Ref Pre-1980",
|
|
1090
1090
|
"building_type": "Courthouse",
|
|
1091
|
-
"space_type": "
|
|
1091
|
+
"space_type": "Library",
|
|
1092
1092
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1093
1093
|
"lighting_primary_space_type": "PrimarySchool",
|
|
1094
1094
|
"lighting_secondary_space_type": "Library",
|
|
@@ -1153,7 +1153,7 @@
|
|
|
1153
1153
|
{
|
|
1154
1154
|
"template": "ComStock DOE Ref Pre-1980",
|
|
1155
1155
|
"building_type": "Courthouse",
|
|
1156
|
-
"space_type": "
|
|
1156
|
+
"space_type": "Office",
|
|
1157
1157
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1158
1158
|
"lighting_primary_space_type": "Office",
|
|
1159
1159
|
"lighting_secondary_space_type": "ClosedOffice",
|
|
@@ -1218,7 +1218,7 @@
|
|
|
1218
1218
|
{
|
|
1219
1219
|
"template": "ComStock DOE Ref Pre-1980",
|
|
1220
1220
|
"building_type": "Courthouse",
|
|
1221
|
-
"space_type": "
|
|
1221
|
+
"space_type": "Parking",
|
|
1222
1222
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1223
1223
|
"lighting_primary_space_type": null,
|
|
1224
1224
|
"lighting_secondary_space_type": null,
|
|
@@ -1283,7 +1283,7 @@
|
|
|
1283
1283
|
{
|
|
1284
1284
|
"template": "ComStock DOE Ref Pre-1980",
|
|
1285
1285
|
"building_type": "Courthouse",
|
|
1286
|
-
"space_type": "
|
|
1286
|
+
"space_type": "Plenum",
|
|
1287
1287
|
"lighting_standard": null,
|
|
1288
1288
|
"lighting_primary_space_type": null,
|
|
1289
1289
|
"lighting_secondary_space_type": null,
|
|
@@ -1348,7 +1348,7 @@
|
|
|
1348
1348
|
{
|
|
1349
1349
|
"template": "ComStock DOE Ref Pre-1980",
|
|
1350
1350
|
"building_type": "Courthouse",
|
|
1351
|
-
"space_type": "
|
|
1351
|
+
"space_type": "Restrooms",
|
|
1352
1352
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1353
1353
|
"lighting_primary_space_type": "Office",
|
|
1354
1354
|
"lighting_secondary_space_type": "Restroom",
|
|
@@ -1413,7 +1413,7 @@
|
|
|
1413
1413
|
{
|
|
1414
1414
|
"template": "ComStock DOE Ref Pre-1980",
|
|
1415
1415
|
"building_type": "Courthouse",
|
|
1416
|
-
"space_type": "
|
|
1416
|
+
"space_type": "Security Screening",
|
|
1417
1417
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1418
1418
|
"lighting_primary_space_type": "Office",
|
|
1419
1419
|
"lighting_secondary_space_type": "Lobby",
|
|
@@ -1478,7 +1478,7 @@
|
|
|
1478
1478
|
{
|
|
1479
1479
|
"template": "ComStock DOE Ref Pre-1980",
|
|
1480
1480
|
"building_type": "Courthouse",
|
|
1481
|
-
"space_type": "
|
|
1481
|
+
"space_type": "Service Shaft",
|
|
1482
1482
|
"lighting_standard": null,
|
|
1483
1483
|
"lighting_primary_space_type": null,
|
|
1484
1484
|
"lighting_secondary_space_type": null,
|
|
@@ -1543,7 +1543,7 @@
|
|
|
1543
1543
|
{
|
|
1544
1544
|
"template": "ComStock DOE Ref Pre-1980",
|
|
1545
1545
|
"building_type": "Courthouse",
|
|
1546
|
-
"space_type": "
|
|
1546
|
+
"space_type": "Stairs",
|
|
1547
1547
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1548
1548
|
"lighting_primary_space_type": "Office",
|
|
1549
1549
|
"lighting_secondary_space_type": "Stair",
|
|
@@ -1608,7 +1608,7 @@
|
|
|
1608
1608
|
{
|
|
1609
1609
|
"template": "ComStock DOE Ref Pre-1980",
|
|
1610
1610
|
"building_type": "Courthouse",
|
|
1611
|
-
"space_type": "
|
|
1611
|
+
"space_type": "Storage",
|
|
1612
1612
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1613
1613
|
"lighting_primary_space_type": "Office",
|
|
1614
1614
|
"lighting_secondary_space_type": "Storage",
|
|
@@ -1673,7 +1673,7 @@
|
|
|
1673
1673
|
{
|
|
1674
1674
|
"template": "ComStock DOE Ref Pre-1980",
|
|
1675
1675
|
"building_type": "Courthouse",
|
|
1676
|
-
"space_type": "
|
|
1676
|
+
"space_type": "Utility",
|
|
1677
1677
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1678
1678
|
"lighting_primary_space_type": "Office",
|
|
1679
1679
|
"lighting_secondary_space_type": "Elec/MechRoom",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
{
|
|
79
79
|
"template": "DOE Ref Pre-1980",
|
|
80
80
|
"building_type": "College",
|
|
81
|
-
"space_type": "
|
|
81
|
+
"space_type": "Art Classroom",
|
|
82
82
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
83
83
|
"lighting_primary_space_type": "Classroom/lecture/training",
|
|
84
84
|
"lighting_secondary_space_type": "General",
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
{
|
|
154
154
|
"template": "DOE Ref Pre-1980",
|
|
155
155
|
"building_type": "College",
|
|
156
|
-
"space_type": "
|
|
156
|
+
"space_type": "Classroom",
|
|
157
157
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
158
158
|
"lighting_primary_space_type": "Classroom",
|
|
159
159
|
"lighting_secondary_space_type": "General",
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
{
|
|
229
229
|
"template": "DOE Ref Pre-1980",
|
|
230
230
|
"building_type": "College",
|
|
231
|
-
"space_type": "
|
|
231
|
+
"space_type": "Conference",
|
|
232
232
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
233
233
|
"lighting_primary_space_type": "Conference",
|
|
234
234
|
"lighting_secondary_space_type": "General",
|
|
@@ -303,7 +303,7 @@
|
|
|
303
303
|
{
|
|
304
304
|
"template": "DOE Ref Pre-1980",
|
|
305
305
|
"building_type": "College",
|
|
306
|
-
"space_type": "
|
|
306
|
+
"space_type": "Corridor",
|
|
307
307
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
308
308
|
"lighting_primary_space_type": "Corridor",
|
|
309
309
|
"lighting_secondary_space_type": "General",
|
|
@@ -378,7 +378,7 @@
|
|
|
378
378
|
{
|
|
379
379
|
"template": "DOE Ref Pre-1980",
|
|
380
380
|
"building_type": "College",
|
|
381
|
-
"space_type": "
|
|
381
|
+
"space_type": "Elevator Shaft",
|
|
382
382
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
383
383
|
"lighting_primary_space_type": "ElevatorCore",
|
|
384
384
|
"lighting_secondary_space_type": null,
|
|
@@ -441,7 +441,7 @@
|
|
|
441
441
|
{
|
|
442
442
|
"template": "DOE Ref Pre-1980",
|
|
443
443
|
"building_type": "College",
|
|
444
|
-
"space_type": "
|
|
444
|
+
"space_type": "Entrance Lobby",
|
|
445
445
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
446
446
|
"lighting_primary_space_type": "Lobby - elevator",
|
|
447
447
|
"lighting_secondary_space_type": "General",
|
|
@@ -516,7 +516,7 @@
|
|
|
516
516
|
{
|
|
517
517
|
"template": "DOE Ref Pre-1980",
|
|
518
518
|
"building_type": "College",
|
|
519
|
-
"space_type": "
|
|
519
|
+
"space_type": "Laboratory",
|
|
520
520
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
521
521
|
"lighting_primary_space_type": "Lab",
|
|
522
522
|
"lighting_secondary_space_type": "General",
|
|
@@ -591,7 +591,7 @@
|
|
|
591
591
|
{
|
|
592
592
|
"template": "DOE Ref Pre-1980",
|
|
593
593
|
"building_type": "College",
|
|
594
|
-
"space_type": "
|
|
594
|
+
"space_type": "Lecture Hall",
|
|
595
595
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
596
596
|
"lighting_primary_space_type": "Auditorium",
|
|
597
597
|
"lighting_secondary_space_type": "General",
|
|
@@ -666,7 +666,7 @@
|
|
|
666
666
|
{
|
|
667
667
|
"template": "DOE Ref Pre-1980",
|
|
668
668
|
"building_type": "College",
|
|
669
|
-
"space_type": "
|
|
669
|
+
"space_type": "Lounge",
|
|
670
670
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
671
671
|
"lighting_primary_space_type": "Lounge",
|
|
672
672
|
"lighting_secondary_space_type": "General",
|
|
@@ -741,7 +741,7 @@
|
|
|
741
741
|
{
|
|
742
742
|
"template": "DOE Ref Pre-1980",
|
|
743
743
|
"building_type": "College",
|
|
744
|
-
"space_type": "
|
|
744
|
+
"space_type": "Media Center",
|
|
745
745
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
746
746
|
"lighting_primary_space_type": "Auditorium",
|
|
747
747
|
"lighting_secondary_space_type": "General",
|
|
@@ -816,7 +816,7 @@
|
|
|
816
816
|
{
|
|
817
817
|
"template": "DOE Ref Pre-1980",
|
|
818
818
|
"building_type": "College",
|
|
819
|
-
"space_type": "
|
|
819
|
+
"space_type": "Office",
|
|
820
820
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
821
821
|
"lighting_primary_space_type": "Office - enclosed",
|
|
822
822
|
"lighting_secondary_space_type": "General",
|
|
@@ -891,7 +891,7 @@
|
|
|
891
891
|
{
|
|
892
892
|
"template": "DOE Ref Pre-1980",
|
|
893
893
|
"building_type": "College",
|
|
894
|
-
"space_type": "
|
|
894
|
+
"space_type": "Restroom",
|
|
895
895
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
896
896
|
"lighting_primary_space_type": "Restroom",
|
|
897
897
|
"lighting_secondary_space_type": "General",
|
|
@@ -966,7 +966,7 @@
|
|
|
966
966
|
{
|
|
967
967
|
"template": "DOE Ref Pre-1980",
|
|
968
968
|
"building_type": "College",
|
|
969
|
-
"space_type": "
|
|
969
|
+
"space_type": "Stairs",
|
|
970
970
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
971
971
|
"lighting_primary_space_type": "Stair",
|
|
972
972
|
"lighting_secondary_space_type": "General",
|
|
@@ -1029,7 +1029,7 @@
|
|
|
1029
1029
|
{
|
|
1030
1030
|
"template": "DOE Ref Pre-1980",
|
|
1031
1031
|
"building_type": "College",
|
|
1032
|
-
"space_type": "
|
|
1032
|
+
"space_type": "Storage",
|
|
1033
1033
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1034
1034
|
"lighting_primary_space_type": "Storage",
|
|
1035
1035
|
"lighting_secondary_space_type": "General",
|
|
@@ -1092,7 +1092,7 @@
|
|
|
1092
1092
|
{
|
|
1093
1093
|
"template": "DOE Ref Pre-1980",
|
|
1094
1094
|
"building_type": "College",
|
|
1095
|
-
"space_type": "
|
|
1095
|
+
"space_type": "Utility",
|
|
1096
1096
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1097
1097
|
"lighting_primary_space_type": "Electrical/Mechanical",
|
|
1098
1098
|
"lighting_secondary_space_type": "General",
|
|
@@ -1167,7 +1167,7 @@
|
|
|
1167
1167
|
{
|
|
1168
1168
|
"template": "DOE Ref Pre-1980",
|
|
1169
1169
|
"building_type": "Courthouse",
|
|
1170
|
-
"space_type": "
|
|
1170
|
+
"space_type": "Break Room",
|
|
1171
1171
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1172
1172
|
"lighting_primary_space_type": "Office",
|
|
1173
1173
|
"lighting_secondary_space_type": "BreakRoom",
|
|
@@ -1242,7 +1242,7 @@
|
|
|
1242
1242
|
{
|
|
1243
1243
|
"template": "DOE Ref Pre-1980",
|
|
1244
1244
|
"building_type": "Courthouse",
|
|
1245
|
-
"space_type": "
|
|
1245
|
+
"space_type": "Cell",
|
|
1246
1246
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1247
1247
|
"lighting_primary_space_type": null,
|
|
1248
1248
|
"lighting_secondary_space_type": null,
|
|
@@ -1317,7 +1317,7 @@
|
|
|
1317
1317
|
{
|
|
1318
1318
|
"template": "DOE Ref Pre-1980",
|
|
1319
1319
|
"building_type": "Courthouse",
|
|
1320
|
-
"space_type": "
|
|
1320
|
+
"space_type": "Conference",
|
|
1321
1321
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1322
1322
|
"lighting_primary_space_type": "Office",
|
|
1323
1323
|
"lighting_secondary_space_type": "Conference",
|
|
@@ -1392,7 +1392,7 @@
|
|
|
1392
1392
|
{
|
|
1393
1393
|
"template": "DOE Ref Pre-1980",
|
|
1394
1394
|
"building_type": "Courthouse",
|
|
1395
|
-
"space_type": "
|
|
1395
|
+
"space_type": "Corridor",
|
|
1396
1396
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1397
1397
|
"lighting_primary_space_type": "Office",
|
|
1398
1398
|
"lighting_secondary_space_type": "Corridor",
|
|
@@ -1467,7 +1467,7 @@
|
|
|
1467
1467
|
{
|
|
1468
1468
|
"template": "DOE Ref Pre-1980",
|
|
1469
1469
|
"building_type": "Courthouse",
|
|
1470
|
-
"space_type": "
|
|
1470
|
+
"space_type": "Courtroom",
|
|
1471
1471
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1472
1472
|
"lighting_primary_space_type": null,
|
|
1473
1473
|
"lighting_secondary_space_type": null,
|
|
@@ -1542,7 +1542,7 @@
|
|
|
1542
1542
|
{
|
|
1543
1543
|
"template": "DOE Ref Pre-1980",
|
|
1544
1544
|
"building_type": "Courthouse",
|
|
1545
|
-
"space_type": "
|
|
1545
|
+
"space_type": "Courtroom Waiting",
|
|
1546
1546
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1547
1547
|
"lighting_primary_space_type": "Office",
|
|
1548
1548
|
"lighting_secondary_space_type": "Lobby",
|
|
@@ -1617,7 +1617,7 @@
|
|
|
1617
1617
|
{
|
|
1618
1618
|
"template": "DOE Ref Pre-1980",
|
|
1619
1619
|
"building_type": "Courthouse",
|
|
1620
|
-
"space_type": "
|
|
1620
|
+
"space_type": "Elevator Lobby",
|
|
1621
1621
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1622
1622
|
"lighting_primary_space_type": "Office",
|
|
1623
1623
|
"lighting_secondary_space_type": "Lobby",
|
|
@@ -1692,7 +1692,7 @@
|
|
|
1692
1692
|
{
|
|
1693
1693
|
"template": "DOE Ref Pre-1980",
|
|
1694
1694
|
"building_type": "Courthouse",
|
|
1695
|
-
"space_type": "
|
|
1695
|
+
"space_type": "Elevator Shaft",
|
|
1696
1696
|
"lighting_standard": null,
|
|
1697
1697
|
"lighting_primary_space_type": null,
|
|
1698
1698
|
"lighting_secondary_space_type": null,
|
|
@@ -1767,7 +1767,7 @@
|
|
|
1767
1767
|
{
|
|
1768
1768
|
"template": "DOE Ref Pre-1980",
|
|
1769
1769
|
"building_type": "Courthouse",
|
|
1770
|
-
"space_type": "
|
|
1770
|
+
"space_type": "Entrance Lobby",
|
|
1771
1771
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1772
1772
|
"lighting_primary_space_type": "Office",
|
|
1773
1773
|
"lighting_secondary_space_type": "Lobby",
|
|
@@ -1842,7 +1842,7 @@
|
|
|
1842
1842
|
{
|
|
1843
1843
|
"template": "DOE Ref Pre-1980",
|
|
1844
1844
|
"building_type": "Courthouse",
|
|
1845
|
-
"space_type": "
|
|
1845
|
+
"space_type": "Judges Chamber",
|
|
1846
1846
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1847
1847
|
"lighting_primary_space_type": "Office",
|
|
1848
1848
|
"lighting_secondary_space_type": "ClosedOffice",
|
|
@@ -1917,7 +1917,7 @@
|
|
|
1917
1917
|
{
|
|
1918
1918
|
"template": "DOE Ref Pre-1980",
|
|
1919
1919
|
"building_type": "Courthouse",
|
|
1920
|
-
"space_type": "
|
|
1920
|
+
"space_type": "Jury Assembly",
|
|
1921
1921
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1922
1922
|
"lighting_primary_space_type": "PrimarySchool",
|
|
1923
1923
|
"lighting_secondary_space_type": "Classroom",
|
|
@@ -1992,7 +1992,7 @@
|
|
|
1992
1992
|
{
|
|
1993
1993
|
"template": "DOE Ref Pre-1980",
|
|
1994
1994
|
"building_type": "Courthouse",
|
|
1995
|
-
"space_type": "
|
|
1995
|
+
"space_type": "Jury Deliberation",
|
|
1996
1996
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
1997
1997
|
"lighting_primary_space_type": "Office",
|
|
1998
1998
|
"lighting_secondary_space_type": "Conference",
|
|
@@ -2067,7 +2067,7 @@
|
|
|
2067
2067
|
{
|
|
2068
2068
|
"template": "DOE Ref Pre-1980",
|
|
2069
2069
|
"building_type": "Courthouse",
|
|
2070
|
-
"space_type": "
|
|
2070
|
+
"space_type": "Library",
|
|
2071
2071
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
2072
2072
|
"lighting_primary_space_type": "PrimarySchool",
|
|
2073
2073
|
"lighting_secondary_space_type": "Library",
|
|
@@ -2142,7 +2142,7 @@
|
|
|
2142
2142
|
{
|
|
2143
2143
|
"template": "DOE Ref Pre-1980",
|
|
2144
2144
|
"building_type": "Courthouse",
|
|
2145
|
-
"space_type": "
|
|
2145
|
+
"space_type": "Office",
|
|
2146
2146
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
2147
2147
|
"lighting_primary_space_type": "Office",
|
|
2148
2148
|
"lighting_secondary_space_type": "ClosedOffice",
|
|
@@ -2217,7 +2217,7 @@
|
|
|
2217
2217
|
{
|
|
2218
2218
|
"template": "DOE Ref Pre-1980",
|
|
2219
2219
|
"building_type": "Courthouse",
|
|
2220
|
-
"space_type": "
|
|
2220
|
+
"space_type": "Parking",
|
|
2221
2221
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
2222
2222
|
"lighting_primary_space_type": null,
|
|
2223
2223
|
"lighting_secondary_space_type": null,
|
|
@@ -2292,7 +2292,7 @@
|
|
|
2292
2292
|
{
|
|
2293
2293
|
"template": "DOE Ref Pre-1980",
|
|
2294
2294
|
"building_type": "Courthouse",
|
|
2295
|
-
"space_type": "
|
|
2295
|
+
"space_type": "Plenum",
|
|
2296
2296
|
"lighting_standard": null,
|
|
2297
2297
|
"lighting_primary_space_type": null,
|
|
2298
2298
|
"lighting_secondary_space_type": null,
|
|
@@ -2367,7 +2367,7 @@
|
|
|
2367
2367
|
{
|
|
2368
2368
|
"template": "DOE Ref Pre-1980",
|
|
2369
2369
|
"building_type": "Courthouse",
|
|
2370
|
-
"space_type": "
|
|
2370
|
+
"space_type": "Restrooms",
|
|
2371
2371
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
2372
2372
|
"lighting_primary_space_type": "Office",
|
|
2373
2373
|
"lighting_secondary_space_type": "Restroom",
|
|
@@ -2442,7 +2442,7 @@
|
|
|
2442
2442
|
{
|
|
2443
2443
|
"template": "DOE Ref Pre-1980",
|
|
2444
2444
|
"building_type": "Courthouse",
|
|
2445
|
-
"space_type": "
|
|
2445
|
+
"space_type": "Security Screening",
|
|
2446
2446
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
2447
2447
|
"lighting_primary_space_type": "Office",
|
|
2448
2448
|
"lighting_secondary_space_type": "Lobby",
|
|
@@ -2517,7 +2517,7 @@
|
|
|
2517
2517
|
{
|
|
2518
2518
|
"template": "DOE Ref Pre-1980",
|
|
2519
2519
|
"building_type": "Courthouse",
|
|
2520
|
-
"space_type": "
|
|
2520
|
+
"space_type": "Service Shaft",
|
|
2521
2521
|
"lighting_standard": null,
|
|
2522
2522
|
"lighting_primary_space_type": null,
|
|
2523
2523
|
"lighting_secondary_space_type": null,
|
|
@@ -2592,7 +2592,7 @@
|
|
|
2592
2592
|
{
|
|
2593
2593
|
"template": "DOE Ref Pre-1980",
|
|
2594
2594
|
"building_type": "Courthouse",
|
|
2595
|
-
"space_type": "
|
|
2595
|
+
"space_type": "Stairs",
|
|
2596
2596
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
2597
2597
|
"lighting_primary_space_type": "Office",
|
|
2598
2598
|
"lighting_secondary_space_type": "Stair",
|
|
@@ -2667,7 +2667,7 @@
|
|
|
2667
2667
|
{
|
|
2668
2668
|
"template": "DOE Ref Pre-1980",
|
|
2669
2669
|
"building_type": "Courthouse",
|
|
2670
|
-
"space_type": "
|
|
2670
|
+
"space_type": "Storage",
|
|
2671
2671
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
2672
2672
|
"lighting_primary_space_type": "Office",
|
|
2673
2673
|
"lighting_secondary_space_type": "Storage",
|
|
@@ -2742,7 +2742,7 @@
|
|
|
2742
2742
|
{
|
|
2743
2743
|
"template": "DOE Ref Pre-1980",
|
|
2744
2744
|
"building_type": "Courthouse",
|
|
2745
|
-
"space_type": "
|
|
2745
|
+
"space_type": "Utility",
|
|
2746
2746
|
"lighting_standard": "DOE Ref Pre-1980",
|
|
2747
2747
|
"lighting_primary_space_type": "Office",
|
|
2748
2748
|
"lighting_secondary_space_type": "Elec/MechRoom",
|
|
@@ -9,7 +9,7 @@ class NRELZNEReady2017 < ASHRAE901
|
|
|
9
9
|
# @return [Double] minimum damper position
|
|
10
10
|
def air_terminal_single_duct_vav_reheat_minimum_damper_position(air_terminal_single_duct_vav_reheat, has_ddc = true)
|
|
11
11
|
min_damper_position = nil
|
|
12
|
-
case air_terminal_single_duct_vav_reheat_reheat_type(air_terminal_single_duct_vav_reheat)
|
|
12
|
+
case OpenstudioStandards::HVAC.air_terminal_single_duct_vav_reheat_reheat_type(air_terminal_single_duct_vav_reheat)
|
|
13
13
|
when 'HotWater'
|
|
14
14
|
min_damper_position = if has_ddc
|
|
15
15
|
0.2
|