diff --git a/data/standards/manage_OpenStudio_Standards.rb b/data/standards/manage_OpenStudio_Standards.rb index 0c50ce3997..5ddc1461f9 100644 --- a/data/standards/manage_OpenStudio_Standards.rb +++ b/data/standards/manage_OpenStudio_Standards.rb @@ -131,9 +131,7 @@ def unique_properties(sheet_name) when 'refrigeration_compressors' ['template', 'compressor_name', 'compressor_type'] when 'economizers' - ['template', 'climate_zone', 'data_center'] - when 'prm_economizers' - ['template', 'climate_ID'] + ['climate_zone', 'data_center', 'minimum_capacity', 'fan_cooling_application', 'minimum_water_cooled_chilled_water_capacity_no_fan_cooling', 'minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling', 'fixed_dry_bulb_is_allowed', 'differential_dry_bulb_is_allowed', 'electronic_enthalpy_is_allowed', 'differential_enthalpy_is_allowed', 'dew_point_dry_bulb_is_allowed', 'fixed_enthalpy_is_allowed', 'fixed_enthalpy_fixed_dry_bulb_is_allowed', 'differential_enthalpy_fixed_dry_bulb_is_allowed', 'fixed_dry_bulb_high_limit_shutoff_temp', 'fixed_enthalpy_high_limit_shutoff_enthalpy', 'dew_point_dry_bulb_high_limit_shutoff_dew_point_temp', 'dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp', 'fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy', 'fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp', 'differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp', 'percent_increase_cooling_efficiency_eliminate_requirement', 'heat_recovery_exempted'] when 'motors' ['template', 'number_of_poles', 'type', 'synchronous_speed', 'minimum_capacity', 'maximum_capacity'] when 'ground_temperatures' diff --git a/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.rb b/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.rb index f2d3d794e0..54807314b5 100644 --- a/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.rb +++ b/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.rb @@ -2019,6 +2019,9 @@ def apply_economizers(climate_zone, model) econ_max_70_pct_oa_sch.defaultDaySchedule.setName('Economizer Max OA Fraction 70 pct Default') econ_max_70_pct_oa_sch.defaultDaySchedule.addValue(OpenStudio::Time.new(0, 24, 0, 0), 0.7) + # Store original climate zones + climate_zone_code = climate_zone + # Check each airloop model.getAirLoopHVACs.sort.each do |air_loop| economizer_required = false @@ -2050,6 +2053,11 @@ def apply_economizers(climate_zone, model) # specified, economizer requirements were aimed at comfort # cooling, not computer room cooling (as per input from the MSC). + # Process climate zone: + # Moisture regime is not needed for climate zone 8 + climate_zone = climate_zone.split('-')[-1] + climate_zone = '8' if climate_zone.include?('8') + # Get the size threshold requirement search_criteria = { 'template' => template, @@ -2057,7 +2065,7 @@ def apply_economizers(climate_zone, model) 'data_center' => true } econ_limits = model_find_object(standards_data['economizers'], search_criteria) - minimum_capacity_btu_per_hr = econ_limits['capacity_limit'] + minimum_capacity_btu_per_hr = econ_limits['minimum_capacity'] economizer_required = !minimum_capacity_btu_per_hr.nil? elsif @instvarbuilding_type == 'LargeOffice' && air_loop_hvac_include_wshp?(air_loop) # WSHP serving the IT closets are assumed to always be too @@ -2070,7 +2078,7 @@ def apply_economizers(climate_zone, model) if economizer_required # If an economizer is required, determine the economizer type # in the prototype buildings, which depends on climate zone. - economizer_type = model_economizer_type(model, climate_zone) + economizer_type = model_economizer_type(model, climate_zone_code) # Set the economizer type # Get the OA system and OA controller @@ -2087,7 +2095,7 @@ def apply_economizers(climate_zone, model) # Check that the economizer type set by the prototypes # is not prohibited by code. If it is, change to no economizer. - unless air_loop_hvac_economizer_type_allowable?(air_loop, climate_zone) + unless air_loop_hvac_economizer_type_allowable?(air_loop, climate_zone_code) OpenStudio.logFree(OpenStudio::Warn, 'openstudio.prototype.Model', "#{air_loop.name} is required to have an economizer, but the type chosen, #{economizer_type} is prohibited by code for climate zone #{climate_zone}. Economizer type will be switched to No Economizer.") oa_control.setEconomizerControlType('NoEconomizer') end diff --git a/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb b/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb index 7f83c52d03..6127af06c7 100644 --- a/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb +++ b/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb @@ -965,6 +965,11 @@ def air_loop_hvac_economizer_required?(air_loop_hvac, climate_zone) is_dc = true end + # Process climate zone: + # Moisture regime is not needed for climate zone 8 + climate_zone = climate_zone.split('-')[-1] + climate_zone = '8' if climate_zone.include?('8') + # Retrieve economizer limits from JSON search_criteria = { 'template' => template, @@ -978,7 +983,7 @@ def air_loop_hvac_economizer_required?(air_loop_hvac, climate_zone) end # Determine the minimum capacity and whether or not it is a data center - minimum_capacity_btu_per_hr = econ_limits['capacity_limit'] + minimum_capacity_btu_per_hr = econ_limits['minimum_capacity'] # A big number of btu per hr as the minimum requirement if nil in spreadsheet infinity_btu_per_hr = 999_999_999_999 @@ -1115,6 +1120,11 @@ def air_loop_hvac_economizer_limits(air_loop_hvac, climate_zone) when 'NoEconomizer' return [nil, nil, nil] when 'FixedDryBulb' + # Process climate zone: + # Moisture regime is not needed for climate zone 8 + climate_zone = climate_zone.split('-')[-1] + climate_zone = '8' if climate_zone.include?('8') + search_criteria = { 'template' => template, 'climate_zone' => climate_zone @@ -1122,10 +1132,10 @@ def air_loop_hvac_economizer_limits(air_loop_hvac, climate_zone) econ_limits = model_find_object(standards_data['economizers'], search_criteria) drybulb_limit_f = econ_limits['fixed_dry_bulb_high_limit_shutoff_temp'] when 'FixedEnthalpy' - enthalpy_limit_btu_per_lb = 28 + enthalpy_limit_btu_per_lb = 28.0 when 'FixedDewPointAndDryBulb' - drybulb_limit_f = 75 - dewpoint_limit_f = 55 + drybulb_limit_f = 75.0 + dewpoint_limit_f = 55.0 end return [drybulb_limit_f, enthalpy_limit_btu_per_lb, dewpoint_limit_f] diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.economizers.json b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.economizers.json index 70f1c9f009..63c10bbda2 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.economizers.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.economizers.json @@ -1,644 +1,1054 @@ { "economizers": [ { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-0A", + "climate_zone": "1A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-0B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-7A", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-7A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-7B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-7B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-0A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-0B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-1B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-1B", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-2A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-2A", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-7A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-7A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-7B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-7B", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-8B", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" - }, - { - "template": "90.1-2004", - "climate_zone": "ASHRAE 169-2013-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2004 Table 6.5.1" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.economizers.json b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.economizers.json index 289a87fdaa..63c10bbda2 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.economizers.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.economizers.json @@ -1,644 +1,1054 @@ { "economizers": [ { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-0A", + "climate_zone": "1A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-0B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-7A", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-7A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-7B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-7B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-0A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-0B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-1B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-1B", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-2A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-2A", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-7A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-7A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-7B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-7B", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-8B", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" - }, - { - "template": "90.1-2007", - "climate_zone": "ASHRAE 169-2013-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2007 Table 6.5.1" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/ashrae_90_1_2010.AirLoopHVAC.rb b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/ashrae_90_1_2010.AirLoopHVAC.rb index 7a99f04288..cc2260502c 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/ashrae_90_1_2010.AirLoopHVAC.rb +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/ashrae_90_1_2010.AirLoopHVAC.rb @@ -23,6 +23,11 @@ def air_loop_hvac_economizer_limits(air_loop_hvac, climate_zone) when 'NoEconomizer' return [nil, nil, nil] when 'FixedDryBulb' + # Process climate zone: + # Moisture regime is not needed for climate zone 8 + climate_zone = climate_zone.split('-')[-1] + climate_zone = '8' if climate_zone.include?('8') + search_criteria = { 'template' => template, 'climate_zone' => climate_zone @@ -30,10 +35,10 @@ def air_loop_hvac_economizer_limits(air_loop_hvac, climate_zone) econ_limits = model_find_object(standards_data['economizers'], search_criteria) drybulb_limit_f = econ_limits['fixed_dry_bulb_high_limit_shutoff_temp'] when 'FixedEnthalpy' - enthalpy_limit_btu_per_lb = 28 + enthalpy_limit_btu_per_lb = 28.0 when 'FixedDewPointAndDryBulb' - drybulb_limit_f = 75 - dewpoint_limit_f = 55 + drybulb_limit_f = 75.0 + dewpoint_limit_f = 55.0 end return [drybulb_limit_f, enthalpy_limit_btu_per_lb, dewpoint_limit_f] diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.economizers.json b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.economizers.json index 6fb405cebc..dbc300acc6 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.economizers.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.economizers.json @@ -1,676 +1,1054 @@ { "economizers": [ { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-0A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-0A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-0B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-0B", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-7A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-7A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-7B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-7B", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-8A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-8A", + "climate_zone": "1A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": false, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": false, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-0A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-0A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-0B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": false, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-0B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": false, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-1B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": false, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-1B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": false, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-2A", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-2A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": false, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": false, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-7A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-7A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-7B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-7B", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": false, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-8B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1A" - }, - { - "template": "90.1-2010", - "climate_zone": "ASHRAE 169-2013-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": false, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2010 Table 6.5.1B" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.AirLoopHVAC.rb b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.AirLoopHVAC.rb index 751e2cc401..a45a1ff4d1 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.AirLoopHVAC.rb +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.AirLoopHVAC.rb @@ -25,6 +25,11 @@ def air_loop_hvac_economizer_limits(air_loop_hvac, climate_zone) OpenStudio.logFree(OpenStudio::Debug, 'openstudio.standards.AirLoopHVAC', "For #{air_loop_hvac.name} no economizer") return [nil, nil, nil] when 'FixedDryBulb' + # Process climate zone: + # Moisture regime is not needed for climate zone 8 + climate_zone = climate_zone.split('-')[-1] + climate_zone = '8' if climate_zone.include?('8') + search_criteria = { 'template' => template, 'climate_zone' => climate_zone diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.economizers.json b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.economizers.json index 6ade1fe18e..ccb78d36f7 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.economizers.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.economizers.json @@ -1,676 +1,1054 @@ { "economizers": [ { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-0A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-0A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-0B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-0B", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-7A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-7A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-7B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-7B", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-8A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-8A", + "climate_zone": "1A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-0A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-0A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-0B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 17, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-0B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 17, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 21, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 21, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-1B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 27, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-1B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 27, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-2A", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 32, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-2A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 32, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 42, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 42, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 64, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 64, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 59, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 59, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 74, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 74, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 56, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 56, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-7A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 77, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-7A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-7B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 77, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-7B", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-8B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-1" - }, - { - "template": "90.1-2013", - "climate_zone": "ASHRAE 169-2013-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2013 Table 6.5.1-2" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.AirLoopHVAC.rb b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.AirLoopHVAC.rb index bce385268e..b279f375b2 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.AirLoopHVAC.rb +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.AirLoopHVAC.rb @@ -57,6 +57,11 @@ def air_loop_hvac_economizer_limits(air_loop_hvac, climate_zone) OpenStudio.logFree(OpenStudio::Debug, 'openstudio.standards.AirLoopHVAC', "For #{air_loop_hvac.name} no economizer") return [nil, nil, nil] when 'FixedDryBulb' + # Process climate zone: + # Moisture regime is not needed for climate zone 8 + climate_zone = climate_zone.split('-')[-1] + climate_zone = '8' if climate_zone.include?('8') + search_criteria = { 'template' => template, 'climate_zone' => climate_zone diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.economizers.json b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.economizers.json index 43367f5508..8a7cd62bee 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.economizers.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.economizers.json @@ -1,676 +1,1054 @@ { "economizers": [ { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-0A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-0A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-0B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-0B", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-7A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-7A", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-7B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-7B", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-8A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-8A", + "climate_zone": "1A", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 0, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 0, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 0, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 0, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-0A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-0A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-0B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 17, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-0B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 17, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 21, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 21, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-1B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 27, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-1B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 27, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-2A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 32, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-2A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 32, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 42, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 42, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 64, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 64, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 59, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 59, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 74, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 74, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 56, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 56, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-7A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 77, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-7A", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-7B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 77, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-7B", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-8B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" - }, - { - "template": "90.1-2016", - "climate_zone": "ASHRAE 169-2013-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2016 Table 6.5.1.1.3" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.AirLoopHVAC.rb b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.AirLoopHVAC.rb index ce245d028a..fb290df8ce 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.AirLoopHVAC.rb +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.AirLoopHVAC.rb @@ -57,6 +57,11 @@ def air_loop_hvac_economizer_limits(air_loop_hvac, climate_zone) OpenStudio.logFree(OpenStudio::Debug, 'openstudio.standards.AirLoopHVAC', "For #{air_loop_hvac.name} no economizer") return [nil, nil, nil] when 'FixedDryBulb' + # Process climate zone: + # Moisture regime is not needed for climate zone 8 + climate_zone = climate_zone.split('-')[-1] + climate_zone = '8' if climate_zone.include?('8') +s search_criteria = { 'template' => template, 'climate_zone' => climate_zone diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.economizers.json b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.economizers.json index a88948eabf..84bc626726 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.economizers.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.economizers.json @@ -1,676 +1,1054 @@ { "economizers": [ { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-0A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-0A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-0B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-0B", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-7A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-7A", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-7B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-7B", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-8A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-8A", + "climate_zone": "1A", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 0, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 0, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 0, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 0, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-0A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-0A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-0B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 17, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-0B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 17, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 21, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 21, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-1B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 27, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-1B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 27, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-2A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 32, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-2A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 32, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 42, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 42, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 64, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 64, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 59, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 59, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 74, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 74, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 56, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 56, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-7A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 77, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-7A", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-7B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1400000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1400000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 77, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-7B", - "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-8B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" - }, - { - "template": "90.1-2019", - "climate_zone": "ASHRAE 169-2013-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": true, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "90.1-2019 Table 6.5.1.1.3" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": 1000000, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": 1000000, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/data/doe_ref_1980_2004.economizers.json b/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/data/doe_ref_1980_2004.economizers.json index a86dd7ccd5..63c10bbda2 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/data/doe_ref_1980_2004.economizers.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/data/doe_ref_1980_2004.economizers.json @@ -1,308 +1,1054 @@ { "economizers": [ { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-1A", + "climate_zone": "1A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "1A", + "data_center": true, + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-2A", + "climate_zone": "1B", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "1B", + "data_center": true, + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-3A", + "climate_zone": "2A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "2A", + "data_center": true, + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-3C", + "climate_zone": "2B", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "climate_zone": "2B", + "data_center": true, + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-4B", + "climate_zone": "3A", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "3A", + "data_center": true, + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-5A", + "climate_zone": "3B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "3B", + "data_center": true, + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-5C", + "climate_zone": "3C", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2004" + "climate_zone": "3C", + "data_center": true, + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-6B", + "climate_zone": "4A", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-7A", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2004" + "climate_zone": "4A", + "data_center": true, + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-7B", + "climate_zone": "4B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-8A", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "4B", + "data_center": true, + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2006-8B", + "climate_zone": "4C", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-1A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "climate_zone": "4C", + "data_center": true, + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-1B", + "climate_zone": "5A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-2A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "climate_zone": "5A", + "data_center": true, + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-2B", + "climate_zone": "5B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-3A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "climate_zone": "5B", + "data_center": true, + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-3B", + "climate_zone": "5C", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-3C", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "5C", + "data_center": true, + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-4A", + "climate_zone": "6A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-4B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "6A", + "data_center": true, + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-4C", + "climate_zone": "6B", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-5A", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2004" + "climate_zone": "6B", + "data_center": true, + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-5B", + "climate_zone": "7", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-5C", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "7", + "data_center": true, + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-6A", + "climate_zone": "7A", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-6B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "7A", + "data_center": true, + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-7A", + "climate_zone": "7B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", + "data_center": true, + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-7B", + "climate_zone": "8", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-8A", + "climate_zone": "8", + "data_center": true, + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref 1980-2004", - "climate_zone": "ASHRAE 169-2013-8B", + "climate_zone": "0B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", + "data_center": true, + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", + "data_center": true, + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/data/doe_ref_pre_1980.economizers.json b/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/data/doe_ref_pre_1980.economizers.json index 991dfc8478..63c10bbda2 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/data/doe_ref_pre_1980.economizers.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/data/doe_ref_pre_1980.economizers.json @@ -1,308 +1,1054 @@ { "economizers": [ { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-1A", + "climate_zone": "1A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "1A", + "data_center": true, + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-2A", + "climate_zone": "1B", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "1B", + "data_center": true, + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-3A", + "climate_zone": "2A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "2A", + "data_center": true, + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-3C", + "climate_zone": "2B", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "climate_zone": "2B", + "data_center": true, + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-4B", + "climate_zone": "3A", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "3A", + "data_center": true, + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-5A", + "climate_zone": "3B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "3B", + "data_center": true, + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-5C", + "climate_zone": "3C", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2004" + "climate_zone": "3C", + "data_center": true, + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-6B", + "climate_zone": "4A", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-7A", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2004" + "climate_zone": "4A", + "data_center": true, + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-7B", + "climate_zone": "4B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-8A", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "4B", + "data_center": true, + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2006-8B", + "climate_zone": "4C", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-1A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "climate_zone": "4C", + "data_center": true, + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-1B", + "climate_zone": "5A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-2A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "climate_zone": "5A", + "data_center": true, + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-2B", + "climate_zone": "5B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-3A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "climate_zone": "5B", + "data_center": true, + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-3B", + "climate_zone": "5C", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-3C", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "5C", + "data_center": true, + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-4A", + "climate_zone": "6A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 65.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-4B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "6A", + "data_center": true, + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-4C", + "climate_zone": "6B", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-5A", - "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2004" + "climate_zone": "6B", + "data_center": true, + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-5B", + "climate_zone": "7", "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-5C", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "7", + "data_center": true, + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-6A", + "climate_zone": "7A", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-6B", - "data_center": false, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "climate_zone": "7A", + "data_center": true, + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-7A", + "climate_zone": "7B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", + "data_center": true, + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-7B", + "climate_zone": "8", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-8A", + "climate_zone": "8", + "data_center": true, + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true }, { - "template": "DOE Ref Pre-1980", - "climate_zone": "ASHRAE 169-2013-8B", + "climate_zone": "0B", "data_center": false, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2004" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", + "data_center": true, + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": true, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": 28, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", + "data_center": true, + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": true, + "differential_enthalpy_is_allowed": true, + "dew_point_dry_bulb_is_allowed": true, + "fixed_enthalpy_is_allowed": false, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": null, + "differential_enthalpy_fixed_dry_bulb_is_allowed": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": 55, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/data/nrel_zne_ready_2017.economizers.json b/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/data/nrel_zne_ready_2017.economizers.json index 327ed1f019..ccb78d36f7 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/data/nrel_zne_ready_2017.economizers.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/data/nrel_zne_ready_2017.economizers.json @@ -1,612 +1,1054 @@ { "economizers": [ { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-7A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-7A", + "climate_zone": "1A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-7B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-7B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 17, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 17, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 21, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 21, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-1B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 27, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-1B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 27, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-2A", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 32, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-2A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 32, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 42, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 42, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 64, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 64, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 59, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 59, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 74, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 74, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 56, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 56, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-7A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 77, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-7A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-7B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 77, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-7B", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-8B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "NREL ZNE Ready 2017", - "climate_zone": "ASHRAE 169-2013-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/nrel_zne_ready_2017.AirLoopHVAC.rb b/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/nrel_zne_ready_2017.AirLoopHVAC.rb index 397fa20155..af3d8095aa 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/nrel_zne_ready_2017.AirLoopHVAC.rb +++ b/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/nrel_zne_ready_2017.AirLoopHVAC.rb @@ -26,42 +26,17 @@ def air_loop_hvac_economizer_limits(air_loop_hvac, climate_zone) OpenStudio.logFree(OpenStudio::Debug, 'openstudio.standards.AirLoopHVAC', "For #{air_loop_hvac.name} no economizer") return [nil, nil, nil] when 'FixedDryBulb' - case climate_zone - when 'ASHRAE 169-2006-0B', - 'ASHRAE 169-2006-1B', - 'ASHRAE 169-2006-2B', - 'ASHRAE 169-2006-3B', - 'ASHRAE 169-2006-3C', - 'ASHRAE 169-2006-4B', - 'ASHRAE 169-2006-4C', - 'ASHRAE 169-2006-5B', - 'ASHRAE 169-2006-5C', - 'ASHRAE 169-2006-6B', - 'ASHRAE 169-2006-7A', - 'ASHRAE 169-2006-7B', - 'ASHRAE 169-2006-8A', - 'ASHRAE 169-2006-8B', - 'ASHRAE 169-2013-0B', - 'ASHRAE 169-2013-1B', - 'ASHRAE 169-2013-2B', - 'ASHRAE 169-2013-3B', - 'ASHRAE 169-2013-3C', - 'ASHRAE 169-2013-4B', - 'ASHRAE 169-2013-4C', - 'ASHRAE 169-2013-5B', - 'ASHRAE 169-2013-5C', - 'ASHRAE 169-2013-6B', - 'ASHRAE 169-2013-7A', - 'ASHRAE 169-2013-7B', - 'ASHRAE 169-2013-8A', - 'ASHRAE 169-2013-8B' - drybulb_limit_f = 75.0 - when 'ASHRAE 169-2006-5A', - 'ASHRAE 169-2006-6A', - 'ASHRAE 169-2013-5A', - 'ASHRAE 169-2013-6A' - drybulb_limit_f = 70.0 - end + # Process climate zone: + # Moisture regime is not needed for climate zone 8 + climate_zone = climate_zone.split('-')[-1] + climate_zone = '8' if climate_zone.include?('8') + + search_criteria = { + 'template' => template, + 'climate_zone' => climate_zone + } + econ_limits = model_find_object(standards_data['economizers'], search_criteria) + drybulb_limit_f = econ_limits['fixed_dry_bulb_high_limit_shutoff_temp'] when 'FixedEnthalpy' enthalpy_limit_btu_per_lb = 28.0 when 'FixedDewPointAndDryBulb' diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/data/ze_aedg_multifamily.economizers.json b/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/data/ze_aedg_multifamily.economizers.json index 38bf2e5d38..ccb78d36f7 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/data/ze_aedg_multifamily.economizers.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/data/ze_aedg_multifamily.economizers.json @@ -1,612 +1,1054 @@ { "economizers": [ { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-1A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-1B", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-2A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-2B", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-3A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-3B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-3C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-4A", - "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-4B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-4C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-5A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-5B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-5C", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-6A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-6B", - "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-7A", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-7A", + "climate_zone": "1A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-7B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-7B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "1B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 17, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2006-8B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 17, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 21, + "heat_recovery_exempted": true + }, + { + "climate_zone": "2B", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-1A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 21, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-1B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 27, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3A", "data_center": false, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-1B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 27, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-2A", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 32, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-2A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 32, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "3C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-2B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 42, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-3A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 42, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-3B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 64, + "heat_recovery_exempted": true + }, + { + "climate_zone": "4C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-3C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 64, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-4A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 49, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": true, - "capacity_limit": null, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 59, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-4B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 59, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 74, + "heat_recovery_exempted": true + }, + { + "climate_zone": "5C", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-4C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 74, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 56, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-5A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 56, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 65000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "6B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-5B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 65, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-5C", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-6A", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "7B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-6B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 72, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": true, - "capacity_limit": 65000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-7A", + "minimum_capacity": 135000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 77, + "heat_recovery_exempted": true + }, + { + "climate_zone": "8", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-7A", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-7B", + "minimum_capacity": 54000, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": 77, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-7B", - "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-8A", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0A", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-8B", - "data_center": false, - "capacity_limit": 54000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" - }, - { - "template": "ZE AEDG Multifamily", - "climate_zone": "ASHRAE 169-2013-8B", + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": false, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 65, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true + }, + { + "climate_zone": "0B", "data_center": true, - "capacity_limit": 135000.0, - "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, - "notes": "Same as 90.1-2013" + "minimum_capacity": null, + "fan_cooling_application": "All", + "minimum_water_cooled_chilled_water_capacity_no_fan_cooling": null, + "minimum_air_cooled_chilled_water_or_district_chilled_water_capacity_no_fan_cooling": null, + "fixed_dry_bulb_is_allowed": true, + "differential_dry_bulb_is_allowed": true, + "electronic_enthalpy_is_allowed": null, + "differential_enthalpy_is_allowed": null, + "dew_point_dry_bulb_is_allowed": null, + "fixed_enthalpy_is_allowed": null, + "fixed_enthalpy_fixed_dry_bulb_is_allowed": true, + "differential_enthalpy_fixed_dry_bulb_is_allowed": true, + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null, + "dew_point_dry_bulb_high_limit_shutoff_dew_point_temp": null, + "dew_point_dry_bulb_high_limit_shutoff_dry_bulb_temp": null, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_enthalpy": 28, + "fixed_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "differential_enthalpy_fixed_dry_bulb_high_limit_shutoff_dry_bulb_temp": 75, + "percent_increase_cooling_efficiency_eliminate_requirement": null, + "heat_recovery_exempted": true } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/ze_aedg_multifamily.AirLoopHVAC.rb b/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/ze_aedg_multifamily.AirLoopHVAC.rb index d84c7c94f3..e77bc17674 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/ze_aedg_multifamily.AirLoopHVAC.rb +++ b/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/ze_aedg_multifamily.AirLoopHVAC.rb @@ -26,42 +26,17 @@ def air_loop_hvac_economizer_limits(air_loop_hvac, climate_zone) OpenStudio.logFree(OpenStudio::Debug, 'openstudio.standards.AirLoopHVAC', "For #{air_loop_hvac.name} no economizer") return [nil, nil, nil] when 'FixedDryBulb' - case climate_zone - when 'ASHRAE 169-2006-0B', - 'ASHRAE 169-2006-1B', - 'ASHRAE 169-2006-2B', - 'ASHRAE 169-2006-3B', - 'ASHRAE 169-2006-3C', - 'ASHRAE 169-2006-4B', - 'ASHRAE 169-2006-4C', - 'ASHRAE 169-2006-5B', - 'ASHRAE 169-2006-5C', - 'ASHRAE 169-2006-6B', - 'ASHRAE 169-2006-7A', - 'ASHRAE 169-2006-7B', - 'ASHRAE 169-2006-8A', - 'ASHRAE 169-2006-8B', - 'ASHRAE 169-2013-0B', - 'ASHRAE 169-2013-1B', - 'ASHRAE 169-2013-2B', - 'ASHRAE 169-2013-3B', - 'ASHRAE 169-2013-3C', - 'ASHRAE 169-2013-4B', - 'ASHRAE 169-2013-4C', - 'ASHRAE 169-2013-5B', - 'ASHRAE 169-2013-5C', - 'ASHRAE 169-2013-6B', - 'ASHRAE 169-2013-7A', - 'ASHRAE 169-2013-7B', - 'ASHRAE 169-2013-8A', - 'ASHRAE 169-2013-8B' - drybulb_limit_f = 75.0 - when 'ASHRAE 169-2006-5A', - 'ASHRAE 169-2006-6A', - 'ASHRAE 169-2013-5A', - 'ASHRAE 169-2013-6A' - drybulb_limit_f = 70.0 - end + # Process climate zone: + # Moisture regime is not needed for climate zone 8 + climate_zone = climate_zone.split('-')[-1] + climate_zone = '8' if climate_zone.include?('8') + + search_criteria = { + 'template' => template, + 'climate_zone' => climate_zone + } + econ_limits = model_find_object(standards_data['economizers'], search_criteria) + drybulb_limit_f = econ_limits['fixed_dry_bulb_high_limit_shutoff_temp'] when 'FixedEnthalpy' enthalpy_limit_btu_per_lb = 28.0 when 'FixedDewPointAndDryBulb' diff --git a/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.AirLoopHVAC.rb b/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.AirLoopHVAC.rb index 626df006d5..dd99502009 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.AirLoopHVAC.rb +++ b/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.AirLoopHVAC.rb @@ -594,20 +594,22 @@ def air_loop_hvac_economizer_limits(air_loop_hvac, climate_zone) when 'NoEconomizer' return [nil, nil, nil] when 'FixedDryBulb' - climate_zone_code = climate_zone.split('-')[-1] - climate_zone_code = 7 if ['7A', '7B'].include? climate_zone_code - climate_zone_code = 8 if ['8A', '8B'].include? climate_zone_code + # Process climate zone: + # Moisture regime is not needed for climate zone 8 + climate_zone = climate_zone.split('-')[-1] + climate_zone = '8' if climate_zone.include?('8') + search_criteria = { - 'template' => template, - 'climate_id' => climate_zone_code + 'climate_zone' => climate_zone, + 'data_center' => false, } - econ_limits = model_find_object(standards_data['prm_economizers'], search_criteria) - drybulb_limit_f = econ_limits['high_limit_shutoff'] + econ_limits = model_find_object(standards_data['economizers'], search_criteria) + drybulb_limit_f = econ_limits['fixed_dry_bulb_high_limit_shutoff_temp'] when 'FixedEnthalpy' - enthalpy_limit_btu_per_lb = 28 + enthalpy_limit_btu_per_lb = 28.0 when 'FixedDewPointAndDryBulb' - drybulb_limit_f = 75 - dewpoint_limit_f = 55 + drybulb_limit_f = 75.0 + dewpoint_limit_f = 55.0 end return [drybulb_limit_f, enthalpy_limit_btu_per_lb, dewpoint_limit_f] diff --git a/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.economizers.json b/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.economizers.json new file mode 100644 index 0000000000..a2466d4a67 --- /dev/null +++ b/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.economizers.json @@ -0,0 +1,550 @@ +{ + "economizers": [ + { + "climate_zone": "1A", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "1A", + "data_center": false, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "1B", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "1B", + "data_center": false, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "2A", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "2A", + "data_center": false, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "2B", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "2B", + "data_center": false, + "systems_3_4_minimum_threshold": 0, + "systems_3_4_minimum_threshold_descriptor": "Any", + "systems_5_through_8_minimum_threshold": 0, + "systems_5_through_8_minimum_threshold_descriptor": "Any", + "systems_11_12_13_minimum_threshold": 0, + "systems_11_12_13_minimum_threshold_descriptor": "Any", + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "3A", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "3A", + "data_center": false, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "3B", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "3B", + "data_center": false, + "systems_3_4_minimum_threshold": 0, + "systems_3_4_minimum_threshold_descriptor": "Any", + "systems_5_through_8_minimum_threshold": 0, + "systems_5_through_8_minimum_threshold_descriptor": "Any", + "systems_11_12_13_minimum_threshold": 0, + "systems_11_12_13_minimum_threshold_descriptor": "Any", + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "3C", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "3C", + "data_center": false, + "systems_3_4_minimum_threshold": 0, + "systems_3_4_minimum_threshold_descriptor": "Any", + "systems_5_through_8_minimum_threshold": 0, + "systems_5_through_8_minimum_threshold_descriptor": "Any", + "systems_11_12_13_minimum_threshold": 0, + "systems_11_12_13_minimum_threshold_descriptor": "Any", + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "4A", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "4A", + "data_center": false, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "4B", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "4B", + "data_center": false, + "systems_3_4_minimum_threshold": 0, + "systems_3_4_minimum_threshold_descriptor": "Any", + "systems_5_through_8_minimum_threshold": 0, + "systems_5_through_8_minimum_threshold_descriptor": "Any", + "systems_11_12_13_minimum_threshold": 0, + "systems_11_12_13_minimum_threshold_descriptor": "Any", + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "4C", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "4C", + "data_center": false, + "systems_3_4_minimum_threshold": 0, + "systems_3_4_minimum_threshold_descriptor": "Any", + "systems_5_through_8_minimum_threshold": 0, + "systems_5_through_8_minimum_threshold_descriptor": "Any", + "systems_11_12_13_minimum_threshold": 0, + "systems_11_12_13_minimum_threshold_descriptor": "Any", + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "5A", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "5A", + "data_center": false, + "systems_3_4_minimum_threshold": 0, + "systems_3_4_minimum_threshold_descriptor": "Any", + "systems_5_through_8_minimum_threshold": 0, + "systems_5_through_8_minimum_threshold_descriptor": "Any", + "systems_11_12_13_minimum_threshold": 0, + "systems_11_12_13_minimum_threshold_descriptor": "Any", + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "5B", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "5B", + "data_center": false, + "systems_3_4_minimum_threshold": 0, + "systems_3_4_minimum_threshold_descriptor": "Any", + "systems_5_through_8_minimum_threshold": 0, + "systems_5_through_8_minimum_threshold_descriptor": "Any", + "systems_11_12_13_minimum_threshold": 0, + "systems_11_12_13_minimum_threshold_descriptor": "Any", + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "5C", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "5C", + "data_center": false, + "systems_3_4_minimum_threshold": 0, + "systems_3_4_minimum_threshold_descriptor": "Any", + "systems_5_through_8_minimum_threshold": 0, + "systems_5_through_8_minimum_threshold_descriptor": "Any", + "systems_11_12_13_minimum_threshold": 0, + "systems_11_12_13_minimum_threshold_descriptor": "Any", + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "6A", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "6A", + "data_center": false, + "systems_3_4_minimum_threshold": 0, + "systems_3_4_minimum_threshold_descriptor": "Any", + "systems_5_through_8_minimum_threshold": 0, + "systems_5_through_8_minimum_threshold_descriptor": "Any", + "systems_11_12_13_minimum_threshold": 0, + "systems_11_12_13_minimum_threshold_descriptor": "Any", + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 70, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "6B", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "6B", + "data_center": false, + "systems_3_4_minimum_threshold": 0, + "systems_3_4_minimum_threshold_descriptor": "Any", + "systems_5_through_8_minimum_threshold": 0, + "systems_5_through_8_minimum_threshold_descriptor": "Any", + "systems_11_12_13_minimum_threshold": 0, + "systems_11_12_13_minimum_threshold_descriptor": "Any", + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "7", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "7", + "data_center": false, + "systems_3_4_minimum_threshold": 0, + "systems_3_4_minimum_threshold_descriptor": "Any", + "systems_5_through_8_minimum_threshold": 0, + "systems_5_through_8_minimum_threshold_descriptor": "Any", + "systems_11_12_13_minimum_threshold": 0, + "systems_11_12_13_minimum_threshold_descriptor": "Any", + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "7A", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "7A", + "data_center": false, + "systems_3_4_minimum_threshold": 0, + "systems_3_4_minimum_threshold_descriptor": "Any", + "systems_5_through_8_minimum_threshold": 0, + "systems_5_through_8_minimum_threshold_descriptor": "Any", + "systems_11_12_13_minimum_threshold": 0, + "systems_11_12_13_minimum_threshold_descriptor": "Any", + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "7B", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "7B", + "data_center": false, + "systems_3_4_minimum_threshold": 0, + "systems_3_4_minimum_threshold_descriptor": "Any", + "systems_5_through_8_minimum_threshold": 0, + "systems_5_through_8_minimum_threshold_descriptor": "Any", + "systems_11_12_13_minimum_threshold": 0, + "systems_11_12_13_minimum_threshold_descriptor": "Any", + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "8", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "8", + "data_center": false, + "systems_3_4_minimum_threshold": 0, + "systems_3_4_minimum_threshold_descriptor": "Any", + "systems_5_through_8_minimum_threshold": 0, + "systems_5_through_8_minimum_threshold_descriptor": "Any", + "systems_11_12_13_minimum_threshold": 0, + "systems_11_12_13_minimum_threshold_descriptor": "Any", + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "0A", + "data_center": false, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "0B", + "data_center": false, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": "Dry-Bulb", + "fixed_dry_bulb_high_limit_shutoff_temp": 75, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "0A", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + }, + { + "climate_zone": "0B", + "data_center": true, + "systems_3_4_minimum_threshold": null, + "systems_3_4_minimum_threshold_descriptor": null, + "systems_5_through_8_minimum_threshold": null, + "systems_5_through_8_minimum_threshold_descriptor": null, + "systems_11_12_13_minimum_threshold": null, + "systems_11_12_13_minimum_threshold_descriptor": null, + "allowed_control_type": null, + "fixed_dry_bulb_high_limit_shutoff_temp": null, + "fixed_enthalpy_high_limit_shutoff_enthalpy": null + } + ] +} \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.prm_economizers.json b/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.prm_economizers.json deleted file mode 100644 index eec2770534..0000000000 --- a/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.prm_economizers.json +++ /dev/null @@ -1,213 +0,0 @@ -{ - "prm_economizers": [ - { - "template": "90.1-PRM-2019", - "climate_id": "0A", - "required": 0, - "high_limit_shutoff": 0.0, - "data_center_required": 0, - "data_center_db_limit": 0.0, - "data_center_wb_limit": 0.0, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "0B", - "required": 0, - "high_limit_shutoff": 0.0, - "data_center_required": 0, - "data_center_db_limit": 0.0, - "data_center_wb_limit": 0.0, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "1A", - "required": 0, - "high_limit_shutoff": 0.0, - "data_center_required": 0, - "data_center_db_limit": 0.0, - "data_center_wb_limit": 0.0, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "1B", - "required": 0, - "high_limit_shutoff": 0.0, - "data_center_required": 0, - "data_center_db_limit": 0.0, - "data_center_wb_limit": 0.0, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "2A", - "required": 0, - "high_limit_shutoff": 0.0, - "data_center_required": 1, - "data_center_db_limit": 40.0, - "data_center_wb_limit": 35, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "2B", - "required": 1, - "high_limit_shutoff": 75.0, - "data_center_required": 1, - "data_center_db_limit": 35.0, - "data_center_wb_limit": 30, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "3A", - "required": 0, - "high_limit_shutoff": 0.0, - "data_center_required": 1, - "data_center_db_limit": 40.0, - "data_center_wb_limit": 35, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "3B", - "required": 1, - "high_limit_shutoff": 75.0, - "data_center_required": 1, - "data_center_db_limit": 30.0, - "data_center_wb_limit": 25, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "3C", - "required": 1, - "high_limit_shutoff": 75.0, - "data_center_required": 1, - "data_center_db_limit": 30.0, - "data_center_wb_limit": 25, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "4A", - "required": 0, - "high_limit_shutoff": 0.0, - "data_center_required": 1, - "data_center_db_limit": 40.0, - "data_center_wb_limit": 35, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "4B", - "required": 1, - "high_limit_shutoff": 75.0, - "data_center_required": 1, - "data_center_db_limit": 30.0, - "data_center_wb_limit": 25, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "4C", - "required": 1, - "high_limit_shutoff": 75.0, - "data_center_required": 1, - "data_center_db_limit": 30.0, - "data_center_wb_limit": 25, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "5A", - "required": 1, - "high_limit_shutoff": 70.0, - "data_center_required": 1, - "data_center_db_limit": 40.0, - "data_center_wb_limit": 35, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "5B", - "required": 1, - "high_limit_shutoff": 75.0, - "data_center_required": 1, - "data_center_db_limit": 30.0, - "data_center_wb_limit": 25, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "5C", - "required": 1, - "high_limit_shutoff": 75.0, - "data_center_required": 1, - "data_center_db_limit": 30.0, - "data_center_wb_limit": 25, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "6A", - "required": 1, - "high_limit_shutoff": 70.0, - "data_center_required": 1, - "data_center_db_limit": 35.0, - "data_center_wb_limit": 30, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": "6B", - "required": 1, - "high_limit_shutoff": 75.0, - "data_center_required": 1, - "data_center_db_limit": 30.0, - "data_center_wb_limit": 25, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": 7.0, - "required": 1, - "high_limit_shutoff": 75.0, - "data_center_required": 1, - "data_center_db_limit": 30.0, - "data_center_wb_limit": 25, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - }, - { - "template": "90.1-PRM-2019", - "climate_id": 8.0, - "required": 1, - "high_limit_shutoff": 75.0, - "data_center_required": 1, - "data_center_db_limit": 30.0, - "data_center_wb_limit": 25, - "capacity_limit": 0.0, - "notes": "2019 Appendix G" - } - ] -} \ No newline at end of file