diff --git a/lib/openstudio-standards.rb b/lib/openstudio-standards.rb index 3a15fafcd7..c51b6ed050 100644 --- a/lib/openstudio-standards.rb +++ b/lib/openstudio-standards.rb @@ -497,7 +497,6 @@ module OpenstudioStandards require_relative "#{proto}/ashrae_90_1/nrel_nze_ready_2017/nrel_zne_ready_2017.FanOnOff" require_relative "#{proto}/ashrae_90_1/nrel_nze_ready_2017/nrel_zne_ready_2017.FanVariableVolume" require_relative "#{proto}/ashrae_90_1/nrel_nze_ready_2017/nrel_zne_ready_2017.HeatExchangerAirToAirSensibleAndLatent" - require_relative "#{proto}/ashrae_90_1/nrel_nze_ready_2017/nrel_zne_ready_2017.Model" require_relative "#{proto}/ashrae_90_1/nrel_nze_ready_2017/nrel_zne_ready_2017.Model.elevators" require_relative "#{proto}/ashrae_90_1/nrel_nze_ready_2017/nrel_zne_ready_2017.hvac_systems" # ZE AEDG Multifamily diff --git a/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Model.rb b/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Model.rb index 64bd729751..55058fe3a6 100644 --- a/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Model.rb +++ b/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Model.rb @@ -1,38 +1,6 @@ class ASHRAE9012016 < ASHRAE901 # @!group Model - # Determine the prototypical economizer type for the model. - # - # @param model [OpenStudio::Model::Model] OpenStudio model object - # @param climate_zone [String] ASHRAE climate zone, e.g. 'ASHRAE 169-2013-4A' - # @return [String] the economizer type. Possible values are: - # 'NoEconomizer' - # 'FixedDryBulb' - # 'FixedEnthalpy' - # 'DifferentialDryBulb' - # 'DifferentialEnthalpy' - # 'FixedDewPointAndDryBulb' - # 'ElectronicEnthalpy' - # 'DifferentialDryBulbAndEnthalpy' - def model_economizer_type(model, climate_zone) - economizer_type = case climate_zone - when 'ASHRAE 169-2006-0A', - 'ASHRAE 169-2006-1A', - 'ASHRAE 169-2006-2A', - 'ASHRAE 169-2006-3A', - 'ASHRAE 169-2006-4A', - 'ASHRAE 169-2013-0A', - 'ASHRAE 169-2013-1A', - 'ASHRAE 169-2013-2A', - 'ASHRAE 169-2013-3A', - 'ASHRAE 169-2013-4A' - 'DifferentialEnthalpy' - else - 'DifferentialDryBulb' - end - return economizer_type - end - # Adjust model to comply with fenestration orientation requirements # @note code_sections [90.1-2013_5.5.4.5] # @@ -299,7 +267,7 @@ def model_add_lights_shutoff(model) end # guard clause to skip space with no lights - next if space_lights.empty? + next if space_lights.empty? # if lights are defined at the space type level, clone each lights object and make it individual to the space new_space_lights = [] diff --git a/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Model.rb b/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Model.rb index a58b23253a..0160f31d1d 100644 --- a/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Model.rb +++ b/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Model.rb @@ -1,38 +1,6 @@ class ASHRAE9012019 < ASHRAE901 # @!group Model - # Determine the prototypical economizer type for the model. - # - # @param model [OpenStudio::Model::Model] OpenStudio model object - # @param climate_zone [String] ASHRAE climate zone, e.g. 'ASHRAE 169-2013-4A' - # @return [String] the economizer type. Possible values are: - # 'NoEconomizer' - # 'FixedDryBulb' - # 'FixedEnthalpy' - # 'DifferentialDryBulb' - # 'DifferentialEnthalpy' - # 'FixedDewPointAndDryBulb' - # 'ElectronicEnthalpy' - # 'DifferentialDryBulbAndEnthalpy' - def model_economizer_type(model, climate_zone) - economizer_type = case climate_zone - when 'ASHRAE 169-2006-0A', - 'ASHRAE 169-2006-1A', - 'ASHRAE 169-2006-2A', - 'ASHRAE 169-2006-3A', - 'ASHRAE 169-2006-4A', - 'ASHRAE 169-2013-0A', - 'ASHRAE 169-2013-1A', - 'ASHRAE 169-2013-2A', - 'ASHRAE 169-2013-3A', - 'ASHRAE 169-2013-4A' - 'DifferentialEnthalpy' - else - 'DifferentialDryBulb' - end - return economizer_type - end - # Adjust model to comply with fenestration orientation requirements # @note code_sections [90.1-2013_5.5.4.5] # @@ -299,7 +267,7 @@ def model_add_lights_shutoff(model) end # guard clause to skip space with no lights - next if space_lights.empty? + next if space_lights.empty? # if lights are defined at the space type level, clone each lights object and make it individual to the space new_space_lights = [] diff --git a/lib/openstudio-standards/prototypes/ashrae_90_1/nrel_nze_ready_2017/nrel_zne_ready_2017.Model.rb b/lib/openstudio-standards/prototypes/ashrae_90_1/nrel_nze_ready_2017/nrel_zne_ready_2017.Model.rb deleted file mode 100644 index de8a43ae0b..0000000000 --- a/lib/openstudio-standards/prototypes/ashrae_90_1/nrel_nze_ready_2017/nrel_zne_ready_2017.Model.rb +++ /dev/null @@ -1,35 +0,0 @@ -class NRELZNEReady2017 < ASHRAE901 - # @!group Model - - # Determine the prototypical economizer type for the model. - # - # @param model [OpenStudio::Model::Model] OpenStudio model object - # @param climate_zone [String] ASHRAE climate zone, e.g. 'ASHRAE 169-2013-4A' - # @return [String] the economizer type. Possible values are: - # 'NoEconomizer' - # 'FixedDryBulb' - # 'FixedEnthalpy' - # 'DifferentialDryBulb' - # 'DifferentialEnthalpy' - # 'FixedDewPointAndDryBulb' - # 'ElectronicEnthalpy' - # 'DifferentialDryBulbAndEnthalpy' - def model_economizer_type(model, climate_zone) - economizer_type = case climate_zone - when 'ASHRAE 169-2006-0A', - 'ASHRAE 169-2006-1A', - 'ASHRAE 169-2006-2A', - 'ASHRAE 169-2006-3A', - 'ASHRAE 169-2006-4A', - 'ASHRAE 169-2013-0A', - 'ASHRAE 169-2013-1A', - 'ASHRAE 169-2013-2A', - 'ASHRAE 169-2013-3A', - 'ASHRAE 169-2013-4A' - 'DifferentialEnthalpy' - else - 'DifferentialDryBulb' - end - return economizer_type - end -end diff --git a/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.rb b/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.rb index b5634c4673..727c0b416b 100644 --- a/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.rb +++ b/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.rb @@ -2474,7 +2474,13 @@ def model_multiply_schedule(model, day_sch, multiplier, limit) # end reduce schedule # Determine the prototypical economizer type for the model. - # Defaults to the pre-90.1-2010 assumption of DifferentialDryBulb. + # Defaults to FixedDryBulb based on anecdotal evidence of this being + # the most common type encountered in the field, combined + # with this being the default option for many equipment manufacturers, + # and being the strategy recommended in the 2010 ASHRAE journal article + # "Economizer High Limit Devices and Why Enthalpy Economizers Don't Work" + # by Steven Taylor and Hwakong Cheng. + # https://tayloreng.egnyte.com/dl/mN0c9t4WSO/ASHRAE_Journal_-_Economizer_High_Limit_Devices_and_Why_Enthalpy_Economizers_Dont_Work.pdf_ # # @param model [OpenStudio::Model::Model] the model # @param climate_zone [String] ASHRAE climate zone, e.g. 'ASHRAE 169-2013-4A' @@ -2488,7 +2494,7 @@ def model_multiply_schedule(model, day_sch, multiplier, limit) # 'ElectronicEnthalpy' # 'DifferentialDryBulbAndEnthalpy' def model_economizer_type(model, climate_zone) - economizer_type = 'DifferentialDryBulb' + economizer_type = 'FixedDryBulb' return economizer_type end diff --git a/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb b/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb index 7cb0252ea4..6251eefe53 100644 --- a/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb +++ b/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb @@ -1060,6 +1060,12 @@ def air_loop_hvac_apply_economizer_limits(air_loop_hvac, climate_zone) oa_control.setEconomizerMaximumLimitDryBulbTemperature(drybulb_limit_c) OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.AirLoopHVAC', "For #{air_loop_hvac.name}: Economizer type = #{economizer_type}, dry bulb limit = #{drybulb_limit_f}F") end + # Some templates include fixed enthalpy limits in addition to fixed dry bulb limits + if enthalpy_limit_btu_per_lb + enthalpy_limit_j_per_kg = OpenStudio.convert(enthalpy_limit_btu_per_lb, 'Btu/lb', 'J/kg').get + oa_control.setEconomizerMaximumLimitEnthalpy(enthalpy_limit_j_per_kg) + OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.AirLoopHVAC', "For #{air_loop_hvac.name}: additional economizer enthalpy limit = #{enthalpy_limit_btu_per_lb}Btu/lb") + end when 'FixedEnthalpy' if enthalpy_limit_btu_per_lb enthalpy_limit_j_per_kg = OpenStudio.convert(enthalpy_limit_btu_per_lb, 'Btu/lb', 'J/kg').get 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 4c26f713b1..2647f71385 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 @@ -1,6 +1,38 @@ class ASHRAE9012016 < ASHRAE901 # @!group AirLoopHVAC + # Determine the prototypical economizer type for the model. + # + # @param model [OpenStudio::Model::Model] OpenStudio model object + # @param climate_zone [String] ASHRAE climate zone, e.g. 'ASHRAE 169-2013-4A' + # @return [String] the economizer type. Possible values are: + # 'NoEconomizer' + # 'FixedDryBulb' + # 'FixedEnthalpy' + # 'DifferentialDryBulb' + # 'DifferentialEnthalpy' + # 'FixedDewPointAndDryBulb' + # 'ElectronicEnthalpy' + # 'DifferentialDryBulbAndEnthalpy' + def model_economizer_type(model, climate_zone) + economizer_type = case climate_zone + when 'ASHRAE 169-2006-0A', + 'ASHRAE 169-2006-1A', + 'ASHRAE 169-2006-2A', + 'ASHRAE 169-2006-3A', + 'ASHRAE 169-2006-4A', + 'ASHRAE 169-2013-0A', + 'ASHRAE 169-2013-1A', + 'ASHRAE 169-2013-2A', + 'ASHRAE 169-2013-3A', + 'ASHRAE 169-2013-4A' + 'DifferentialEnthalpy' + else + 'DifferentialDryBulb' + end + return economizer_type + end + # Determine the limits for the type of economizer present on the AirLoopHVAC, if any. # # @param air_loop_hvac [OpenStudio::Model::AirLoopHVAC] air loop diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/comstock_ashrae_90_1_2016/comstock_ashrae_90_1_2016.AirLoopHVAC.rb b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/comstock_ashrae_90_1_2016/comstock_ashrae_90_1_2016.AirLoopHVAC.rb new file mode 100644 index 0000000000..bc703490d8 --- /dev/null +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/comstock_ashrae_90_1_2016/comstock_ashrae_90_1_2016.AirLoopHVAC.rb @@ -0,0 +1,26 @@ +class ComStockASHRAE9012016 < ASHRAE9012016 + # Determine the prototypical economizer type for the model. + # Defaults to FixedDryBulb based on anecdotal evidence of this being + # the most common type encountered in the field, combined + # with this being the default option for many equipment manufacturers, + # and being the strategy recommended in the 2010 ASHRAE journal article + # "Economizer High Limit Devices and Why Enthalpy Economizers Don't Work" + # by Steven Taylor and Hwakong Cheng. + # https://tayloreng.egnyte.com/dl/mN0c9t4WSO/ASHRAE_Journal_-_Economizer_High_Limit_Devices_and_Why_Enthalpy_Economizers_Dont_Work.pdf_ + # + # @param model [OpenStudio::Model::Model] the model + # @param climate_zone [String] ASHRAE climate zone, e.g. 'ASHRAE 169-2013-4A' + # @return [String] the economizer type. Possible values are: + # 'NoEconomizer' + # 'FixedDryBulb' + # 'FixedEnthalpy' + # 'DifferentialDryBulb' + # 'DifferentialEnthalpy' + # 'FixedDewPointAndDryBulb' + # 'ElectronicEnthalpy' + # 'DifferentialDryBulbAndEnthalpy' + def model_economizer_type(model, climate_zone) + economizer_type = 'FixedDryBulb' + return economizer_type + end +end 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 547a487489..d4974682ef 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 @@ -1,6 +1,38 @@ class ASHRAE9012019 < ASHRAE901 # @!group AirLoopHVAC + # Determine the prototypical economizer type for the model. + # + # @param model [OpenStudio::Model::Model] OpenStudio model object + # @param climate_zone [String] ASHRAE climate zone, e.g. 'ASHRAE 169-2013-4A' + # @return [String] the economizer type. Possible values are: + # 'NoEconomizer' + # 'FixedDryBulb' + # 'FixedEnthalpy' + # 'DifferentialDryBulb' + # 'DifferentialEnthalpy' + # 'FixedDewPointAndDryBulb' + # 'ElectronicEnthalpy' + # 'DifferentialDryBulbAndEnthalpy' + def model_economizer_type(model, climate_zone) + economizer_type = case climate_zone + when 'ASHRAE 169-2006-0A', + 'ASHRAE 169-2006-1A', + 'ASHRAE 169-2006-2A', + 'ASHRAE 169-2006-3A', + 'ASHRAE 169-2006-4A', + 'ASHRAE 169-2013-0A', + 'ASHRAE 169-2013-1A', + 'ASHRAE 169-2013-2A', + 'ASHRAE 169-2013-3A', + 'ASHRAE 169-2013-4A' + 'DifferentialEnthalpy' + else + 'DifferentialDryBulb' + end + return economizer_type + end + # Determine the limits for the type of economizer present on the AirLoopHVAC, if any. # # @param air_loop_hvac [OpenStudio::Model::AirLoopHVAC] air loop diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/comstock_ashrae_90_1_2019/comstock_ashrae_90_1_2019.AirLoopHVAC.rb b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/comstock_ashrae_90_1_2019/comstock_ashrae_90_1_2019.AirLoopHVAC.rb new file mode 100644 index 0000000000..c37886f8e1 --- /dev/null +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/comstock_ashrae_90_1_2019/comstock_ashrae_90_1_2019.AirLoopHVAC.rb @@ -0,0 +1,26 @@ +class ComStockASHRAE9012019 < ASHRAE9012019 + # Determine the prototypical economizer type for the model. + # Defaults to FixedDryBulb based on anecdotal evidence of this being + # the most common type encountered in the field, combined + # with this being the default option for many equipment manufacturers, + # and being the strategy recommended in the 2010 ASHRAE journal article + # "Economizer High Limit Devices and Why Enthalpy Economizers Don't Work" + # by Steven Taylor and Hwakong Cheng. + # https://tayloreng.egnyte.com/dl/mN0c9t4WSO/ASHRAE_Journal_-_Economizer_High_Limit_Devices_and_Why_Enthalpy_Economizers_Dont_Work.pdf_ + # + # @param model [OpenStudio::Model::Model] the model + # @param climate_zone [String] ASHRAE climate zone, e.g. 'ASHRAE 169-2013-4A' + # @return [String] the economizer type. Possible values are: + # 'NoEconomizer' + # 'FixedDryBulb' + # 'FixedEnthalpy' + # 'DifferentialDryBulb' + # 'DifferentialEnthalpy' + # 'FixedDewPointAndDryBulb' + # 'ElectronicEnthalpy' + # 'DifferentialDryBulbAndEnthalpy' + def model_economizer_type(model, climate_zone) + economizer_type = 'FixedDryBulb' + return economizer_type + end +end diff --git a/lib/openstudio-standards/standards/deer/deer.AirLoopHVAC.rb b/lib/openstudio-standards/standards/deer/deer.AirLoopHVAC.rb index 18f84daa49..b0b2b44247 100644 --- a/lib/openstudio-standards/standards/deer/deer.AirLoopHVAC.rb +++ b/lib/openstudio-standards/standards/deer/deer.AirLoopHVAC.rb @@ -11,6 +11,83 @@ def air_loop_hvac_unoccupied_fan_shutoff_required?(air_loop_hvac) return shutoff_required end + # Determine whether or not this system is required to have an economizer. + # Logic inferred from MASControl3 INP files and parameters database. + # + # @param air_loop_hvac [OpenStudio::Model::AirLoopHVAC] air loop + # @param climate_zone [String] ASHRAE climate zone, e.g. 'ASHRAE 169-2013-4A' + # @return [Bool] returns true if an economizer is required, false if not + def air_loop_hvac_economizer_required?(air_loop_hvac, climate_zone) + economizer_required = false + + # skip systems without outdoor air + return economizer_required unless air_loop_hvac.airLoopHVACOutdoorAirSystem.is_initialized + + # Determine if the airloop serves any computer rooms + # / data centers, which changes the economizer. + is_dc = false + if air_loop_hvac_data_center_area_served(air_loop_hvac) > 0 + is_dc = true + end + + # Retrieve economizer limits from JSON + search_criteria = { + 'template' => template, + 'climate_zone' => climate_zone, + 'data_center' => is_dc + } + econ_limits = model_find_object(standards_data['economizers'], search_criteria) + if econ_limits.nil? + OpenStudio.logFree(OpenStudio::Warn, 'openstudio.standards.AirLoopHVAC', "Cannot find economizer limits for template '#{template}' and climate zone '#{climate_zone}', assuming no economizer required.") + return economizer_required + end + + # Determine the minimum capacity and whether or not it is a data center + minimum_capacity_btu_per_hr = econ_limits['capacity_limit'] + + # A big number of btu per hr as the minimum requirement if nil in spreadsheet + infinity_btu_per_hr = 999_999_999_999 + minimum_capacity_btu_per_hr = infinity_btu_per_hr if minimum_capacity_btu_per_hr.nil? + + # Check whether the system requires an economizer by comparing + # the system capacity to the minimum capacity. + total_cooling_capacity_w = air_loop_hvac_total_cooling_capacity(air_loop_hvac) + total_cooling_capacity_btu_per_hr = OpenStudio.convert(total_cooling_capacity_w, 'W', 'Btu/hr').get + + # Check whether the system has chilled water cooling + has_chilled_water_cooling = false + air_loop_hvac.supplyComponents.each do |equip| + if equip.to_CoilCoolingWater.is_initialized + has_chilled_water_cooling = true + end + end + + # Applicability logic from MASControl3 + if has_chilled_water_cooling + # All systems with chilled water cooling get an economizer regardless of capacity + OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.AirLoopHVAC', "#{air_loop_hvac.name} requires an economizer because it has chilled water cooling.") + economizer_required = true + else + # DX and other systems may have a capacity limit + if total_cooling_capacity_btu_per_hr >= minimum_capacity_btu_per_hr + if is_dc + OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.AirLoopHVAC', "#{air_loop_hvac.name} requires an economizer because the total cooling capacity of #{total_cooling_capacity_btu_per_hr.round} Btu/hr exceeds the minimum capacity of #{minimum_capacity_btu_per_hr.round} Btu/hr for data centers.") + else + OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.AirLoopHVAC', "#{air_loop_hvac.name} requires an economizer because the total cooling capacity of #{total_cooling_capacity_btu_per_hr.round} Btu/hr exceeds the minimum capacity of #{minimum_capacity_btu_per_hr.round} Btu/hr.") + end + economizer_required = true + else + if is_dc + OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.AirLoopHVAC', "#{air_loop_hvac.name} does not require an economizer because the total cooling capacity of #{total_cooling_capacity_btu_per_hr.round} Btu/hr is less than the minimum capacity of #{minimum_capacity_btu_per_hr.round} Btu/hr for data centers.") + else + OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.AirLoopHVAC', "#{air_loop_hvac.name} does not require an economizer because the total cooling capacity of #{total_cooling_capacity_btu_per_hr.round} Btu/hr is less than the minimum capacity of #{minimum_capacity_btu_per_hr.round} Btu/hr.") + end + end + end + + return economizer_required + end + # Check the economizer type currently specified in the ControllerOutdoorAir object on this air loop # is acceptable per the standard. Based on the MASControl rules, it appears that # only NoEconomizer and FixedDryBulb are allowed. @@ -48,6 +125,7 @@ def air_loop_hvac_economizer_type_allowable?(air_loop_hvac, climate_zone) end # Determine the limits for the type of economizer present on the AirLoopHVAC, if any. + # Enthalpy limit is from MASControl3. # # @param air_loop_hvac [OpenStudio::Model::AirLoopHVAC] air loop # @param climate_zone [String] ASHRAE climate zone, e.g. 'ASHRAE 169-2013-4A' @@ -59,7 +137,7 @@ def air_loop_hvac_economizer_limits(air_loop_hvac, climate_zone) # Get the OA system and OA controller oa_sys = air_loop_hvac.airLoopHVACOutdoorAirSystem - return [nil, nil, nil] unless oa_sys.is_initialized # No OA system + return [nil, nil, nil] unless oa_sys.is_initialized oa_sys = oa_sys.get oa_control = oa_sys.getControllerOutdoorAir @@ -70,29 +148,12 @@ def air_loop_hvac_economizer_limits(air_loop_hvac, climate_zone) return [nil, nil, nil] when 'FixedDryBulb' enthalpy_limit_btu_per_lb = 28 - case climate_zone - when 'CEC T24-CEC7' - drybulb_limit_f = 69 - when 'CEC T24-CEC1', - 'CEC T24-CEC3', - 'CEC T24-CEC5' - drybulb_limit_f = 70 - when 'CEC T24-CEC6', - 'CEC T24-CEC8', - 'CEC T24-CEC9' - drybulb_limit_f = 71 - when 'CEC T24-CEC2', - 'CEC T24-CEC4', - 'CEC T24-CEC10', - drybulb_limit_f = 73 - when 'CEC T24-CEC11', - 'CEC T24-CEC12', - 'CEC T24-CEC13', - 'CEC T24-CEC14', - 'CEC T24-CEC15', - 'CEC T24-CEC16' - drybulb_limit_f = 75 - end + 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'] end return [drybulb_limit_f, enthalpy_limit_btu_per_lb, dewpoint_limit_f] diff --git a/lib/openstudio-standards/standards/deer/deer_1985/data/deer_1985.economizers.json b/lib/openstudio-standards/standards/deer/deer_1985/data/deer_1985.economizers.json index 8c89ad94a2..0d75416eae 100644 --- a/lib/openstudio-standards/standards/deer/deer_1985/data/deer_1985.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_1985/data/deer_1985.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 1985", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, "capacity_limit": null, - "notes": "From MASControl2" + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 1985", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, "capacity_limit": null, - "notes": "From MASControl2" + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1985", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_1996/data/deer_1996.economizers.json b/lib/openstudio-standards/standards/deer/deer_1996/data/deer_1996.economizers.json index efb156ba5f..c0a05c6e75 100644 --- a/lib/openstudio-standards/standards/deer/deer_1996/data/deer_1996.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_1996/data/deer_1996.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 1996", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, "capacity_limit": null, - "notes": "From MASControl2" + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 1996", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, "capacity_limit": null, - "notes": "From MASControl2" + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 1996", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2003/data/deer_2003.economizers.json b/lib/openstudio-standards/standards/deer/deer_2003/data/deer_2003.economizers.json index 4ee02c3eef..bab56ab492 100644 --- a/lib/openstudio-standards/standards/deer/deer_2003/data/deer_2003.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2003/data/deer_2003.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2003", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, "capacity_limit": null, - "notes": "From MASControl2" + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2003", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, "capacity_limit": null, - "notes": "From MASControl2" + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2003", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2007/data/deer_2007.economizers.json b/lib/openstudio-standards/standards/deer/deer_2007/data/deer_2007.economizers.json index af996b968c..2f0198d590 100644 --- a/lib/openstudio-standards/standards/deer/deer_2007/data/deer_2007.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2007/data/deer_2007.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2007", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, "capacity_limit": null, - "notes": "From MASControl2" + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2007", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, "capacity_limit": null, - "notes": "From MASControl2" + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2007", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2011/data/deer_2011.economizers.json b/lib/openstudio-standards/standards/deer/deer_2011/data/deer_2011.economizers.json index 77b0d3b179..0d2ab5c400 100644 --- a/lib/openstudio-standards/standards/deer/deer_2011/data/deer_2011.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2011/data/deer_2011.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2011", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, "capacity_limit": null, - "notes": "From MASControl2" + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2011", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, "capacity_limit": null, - "notes": "From MASControl2" + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2011", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2014/data/deer_2014.economizers.json b/lib/openstudio-standards/standards/deer/deer_2014/data/deer_2014.economizers.json index bc256d0efd..0479ed7aef 100644 --- a/lib/openstudio-standards/standards/deer/deer_2014/data/deer_2014.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2014/data/deer_2014.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2014", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, - "capacity_limit": null, - "notes": "From MASControl2" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2014", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, - "capacity_limit": null, - "notes": "From MASControl2" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2014", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2015/data/deer_2015.economizers.json b/lib/openstudio-standards/standards/deer/deer_2015/data/deer_2015.economizers.json index 565a8f86c4..f066fe89f7 100644 --- a/lib/openstudio-standards/standards/deer/deer_2015/data/deer_2015.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2015/data/deer_2015.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2015", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, - "capacity_limit": 55000.0, - "notes": "From MASControl2" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2015", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, - "capacity_limit": 55000.0, - "notes": "From MASControl2" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2015", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2017/data/deer_2017.economizers.json b/lib/openstudio-standards/standards/deer/deer_2017/data/deer_2017.economizers.json index 6602a14bd7..9b79f5c547 100644 --- a/lib/openstudio-standards/standards/deer/deer_2017/data/deer_2017.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2017/data/deer_2017.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2017", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, - "capacity_limit": 55000.0, - "notes": "From MASControl2" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2017", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, - "capacity_limit": 55000.0, - "notes": "From MASControl2" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2017", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2020/data/deer_2020.economizers.json b/lib/openstudio-standards/standards/deer/deer_2020/data/deer_2020.economizers.json index a6968b8e83..463420c6e2 100644 --- a/lib/openstudio-standards/standards/deer/deer_2020/data/deer_2020.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2020/data/deer_2020.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2020", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2020", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2020", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2025/data/deer_2025.economizers.json b/lib/openstudio-standards/standards/deer/deer_2025/data/deer_2025.economizers.json index 5628b5b1f6..33f4ce4f4b 100644 --- a/lib/openstudio-standards/standards/deer/deer_2025/data/deer_2025.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2025/data/deer_2025.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2025", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2025", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2025", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2030/data/deer_2030.economizers.json b/lib/openstudio-standards/standards/deer/deer_2030/data/deer_2030.economizers.json index 711e1b8172..e54fafe3a5 100644 --- a/lib/openstudio-standards/standards/deer/deer_2030/data/deer_2030.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2030/data/deer_2030.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2030", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2030", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2030", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2030/data/deer_2030.heat_pumps.json b/lib/openstudio-standards/standards/deer/deer_2030/data/deer_2030.heat_pumps.json index e55abb6902..e22284d9a6 100644 --- a/lib/openstudio-standards/standards/deer/deer_2030/data/deer_2030.heat_pumps.json +++ b/lib/openstudio-standards/standards/deer/deer_2030/data/deer_2030.heat_pumps.json @@ -31,8 +31,8 @@ "maximum_capacity": 58310.0, "start_date": "1919-09-09T00:00:00+00:00", "end_date": "2999-09-09T00:00:00+00:00", - "minimum_seasonal_efficiency": 15.211683, - "minimum_full_load_efficiency": 12.256644, + "minimum_seasonal_efficiency": 16.3, + "minimum_full_load_efficiency": 13.038, "minimum_iplv": null, "minimum_integrated_energy_efficiency_ratio": null, "pthp_eer_coefficient_1": null, diff --git a/lib/openstudio-standards/standards/deer/deer_2035/data/deer_2035.economizers.json b/lib/openstudio-standards/standards/deer/deer_2035/data/deer_2035.economizers.json index 7f26c09c53..759ded0d46 100644 --- a/lib/openstudio-standards/standards/deer/deer_2035/data/deer_2035.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2035/data/deer_2035.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2035", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2035", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2035", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2040/data/deer_2040.economizers.json b/lib/openstudio-standards/standards/deer/deer_2040/data/deer_2040.economizers.json index 09e7907d10..7b6a78e0f9 100644 --- a/lib/openstudio-standards/standards/deer/deer_2040/data/deer_2040.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2040/data/deer_2040.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2040", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2040", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2040", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2045/data/deer_2045.economizers.json b/lib/openstudio-standards/standards/deer/deer_2045/data/deer_2045.economizers.json new file mode 100644 index 0000000000..d2502c6bb9 --- /dev/null +++ b/lib/openstudio-standards/standards/deer/deer_2045/data/deer_2045.economizers.json @@ -0,0 +1,260 @@ +{ + "economizers": [ + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC1", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC1", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2045", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + } + ] +} \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2050/data/deer_2050.economizers.json b/lib/openstudio-standards/standards/deer/deer_2050/data/deer_2050.economizers.json index 722fe1214f..f200b85e7b 100644 --- a/lib/openstudio-standards/standards/deer/deer_2050/data/deer_2050.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2050/data/deer_2050.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2050", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2050", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2050", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2055/data/deer_2055.economizers.json b/lib/openstudio-standards/standards/deer/deer_2055/data/deer_2055.economizers.json index 21a7328439..6d5ce2c5f9 100644 --- a/lib/openstudio-standards/standards/deer/deer_2055/data/deer_2055.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2055/data/deer_2055.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2055", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2055", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2055", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2060/data/deer_2060.economizers.json b/lib/openstudio-standards/standards/deer/deer_2060/data/deer_2060.economizers.json index 0e9e41d580..8d1e6533f4 100644 --- a/lib/openstudio-standards/standards/deer/deer_2060/data/deer_2060.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2060/data/deer_2060.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2060", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2060", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2060", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2065/data/deer_2065.economizers.json b/lib/openstudio-standards/standards/deer/deer_2065/data/deer_2065.economizers.json index 2e2fd65a14..dfea69ce82 100644 --- a/lib/openstudio-standards/standards/deer/deer_2065/data/deer_2065.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2065/data/deer_2065.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2065", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2065", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2065", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2070/data/deer_2070.economizers.json b/lib/openstudio-standards/standards/deer/deer_2070/data/deer_2070.economizers.json index 78798b566d..74711bdbc4 100644 --- a/lib/openstudio-standards/standards/deer/deer_2070/data/deer_2070.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2070/data/deer_2070.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2070", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2070", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2070", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_2075/data/deer_2075.economizers.json b/lib/openstudio-standards/standards/deer/deer_2075/data/deer_2075.economizers.json index c7cf97ca85..a841287a50 100644 --- a/lib/openstudio-standards/standards/deer/deer_2075/data/deer_2075.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_2075/data/deer_2075.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER 2075", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER 2075", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, - "capacity_limit": 54000.0, - "notes": "Same as 90.1-2016" + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER 2075", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": 1.0, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/deer/deer_pre_1975/data/deer_pre_1975.economizers.json b/lib/openstudio-standards/standards/deer/deer_pre_1975/data/deer_pre_1975.economizers.json index e1a95568b2..2019fd0b05 100644 --- a/lib/openstudio-standards/standards/deer/deer_pre_1975/data/deer_pre_1975.economizers.json +++ b/lib/openstudio-standards/standards/deer/deer_pre_1975/data/deer_pre_1975.economizers.json @@ -2,17 +2,259 @@ "economizers": [ { "template": "DEER Pre-1975", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": false, "capacity_limit": null, - "notes": "From MASControl2" + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" }, { "template": "DEER Pre-1975", - "climate_zone": "Any", + "climate_zone": "CEC T24-CEC1", "data_center": true, "capacity_limit": null, - "notes": "From MASControl2" + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC10", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC10", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC11", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC11", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC12", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC12", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC13", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC13", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC14", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC14", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC15", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC15", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC16", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC16", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 75.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC2", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC2", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC3", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC3", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC4", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC4", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 73.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC5", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC5", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 70.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC6", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC6", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC7", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC7", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 69.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC8", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC8", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC9", + "data_center": false, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" + }, + { + "template": "DEER Pre-1975", + "climate_zone": "CEC T24-CEC9", + "data_center": true, + "capacity_limit": null, + "fixed_dry_bulb_high_limit_shutoff_temp": 71.0, + "notes": "Applicability from MASControl3" } ] } \ No newline at end of file