diff --git a/lib/openstudio-standards.rb b/lib/openstudio-standards.rb index beadbd18c..6278d12ec 100644 --- a/lib/openstudio-standards.rb +++ b/lib/openstudio-standards.rb @@ -280,6 +280,7 @@ module OpenstudioStandards require_relative "#{stds}/Standards.HeaderedPumpsVariableSpeed" require_relative "#{stds}/Standards.HeatExchangerSensLat" require_relative "#{stds}/Standards.Model" + require_relative "#{stds}/Standards.Motor" require_relative "#{stds}/Standards.PlanarSurface" require_relative "#{stds}/Standards.PlantLoop" require_relative "#{stds}/Standards.PumpConstantSpeed" @@ -333,6 +334,7 @@ module OpenstudioStandards require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.CoolingTowerVariableSpeed" require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.FanVariableVolume" require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.Model" + require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.Motor" require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.PlantLoop" require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.Space" require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.ThermalZone" @@ -348,6 +350,7 @@ module OpenstudioStandards require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.CoolingTowerVariableSpeed" require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.FanVariableVolume" require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Model" + require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Motor" require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Space" require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.ThermalZone" # 90.1-2019 @@ -362,6 +365,7 @@ module OpenstudioStandards require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.CoolingTowerVariableSpeed" require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.FanVariableVolume" require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Model" + require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Motor" require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Space" require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.ThermalZone" require_relative "#{stds}/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.WaterHeaterMixed" diff --git a/lib/openstudio-standards/prototypes/common/objects/Prototype.Fan.rb b/lib/openstudio-standards/prototypes/common/objects/Prototype.Fan.rb index 3472e6db6..348640d61 100644 --- a/lib/openstudio-standards/prototypes/common/objects/Prototype.Fan.rb +++ b/lib/openstudio-standards/prototypes/common/objects/Prototype.Fan.rb @@ -45,13 +45,6 @@ def prototype_fan_apply_prototype_fan_efficiency(fan) allowed_hp = 0.01 end - # Minimum motor size for efficiency lookup - # is 1 HP unless the motor serves an exhaust fan, - # a powered VAV terminal, or a fan coil unit. - if !fan_small_fan?(fan) && allowed_hp < 1.0 - allowed_hp = 1.01 - end - # Find the motor efficiency motor_eff, nominal_hp = fan_standard_minimum_motor_efficiency_and_size(fan, allowed_hp) diff --git a/lib/openstudio-standards/standards/Standards.CoolingTower.rb b/lib/openstudio-standards/standards/Standards.CoolingTower.rb index 98f949513..42b3f27e0 100644 --- a/lib/openstudio-standards/standards/Standards.CoolingTower.rb +++ b/lib/openstudio-standards/standards/Standards.CoolingTower.rb @@ -84,28 +84,55 @@ def cooling_tower_apply_minimum_power_per_flow(cooling_tower) # per method used in PNNL prototype buildings. # Assumes that the fan brake horsepower is 90% # of the fan nameplate rated motor power. - fan_motor_nameplate_hp = design_water_flow_gpm / min_gpm_per_hp - fan_bhp = 0.9 * fan_motor_nameplate_hp - - # Lookup the minimum motor efficiency + # Source: Thornton et al. (2011), Achieving the 30% Goal: Energy and Cost Savings Analysis of ASHRAE Standard 90.1-2010, Section 4.5.4 + nominal_hp = design_water_flow_gpm / min_gpm_per_hp + fan_bhp = 0.9 * nominal_hp fan_motor_eff = 0.85 - motors = standards_data['motors'] - # Assuming all fan motors are 4-pole Enclosed - search_criteria = { - 'template' => template, - 'number_of_poles' => 4.0, - 'type' => 'Enclosed' - } + if nominal_hp <= 0.75 + motor_type = motor_type(nominal_hp) + motor_properties = motor_fractional_hp_efficiencies(nominal_hp, motor_type = motor_type) + else + # Lookup the minimum motor efficiency + motors = standards_data['motors'] + + # Assuming all fan motors are 4-pole Enclosed + search_criteria = { + 'template' => template, + 'number_of_poles' => 4.0, + 'type' => 'Enclosed' + } + + # Use the efficiency largest motor efficiency when BHP is greater than the largest size for which a requirement is provided + data = model_find_objects(motors, search_criteria) + if data.empty? + search_criteria = { + 'template' => template, + 'type' => nil + } + data = model_find_objects(motors, search_criteria) + end + maximum_capacity = model_find_maximum_value(data, 'maximum_capacity') + if fan_bhp > maximum_capacity + fan_bhp = maximum_capacity + end + + motor_properties = model_find_object(motors, search_criteria, capacity = nil, date = Date.today, area = nil, num_floors = nil, fan_motor_bhp = fan_bhp) + + if motor_properties.nil? + # Retry without the date + motor_properties = model_find_object(motors, search_criteria, capacity = nil, date = nil, area = nil, num_floors = nil, fan_motor_bhp = fan_bhp) + end + end - motor_properties = model_find_object(motors, search_criteria, fan_motor_nameplate_hp) if motor_properties.nil? - OpenStudio.logFree(OpenStudio::Error, 'openstudio.standards.CoolingTower', "For #{cooling_tower.name}, could not find motor properties using search criteria: #{search_criteria}, motor_hp = #{fan_motor_nameplate_hp} hp.") - return false + OpenStudio.logFree(OpenStudio::Error, 'openstudio.standards.CoolingTower', "For #{cooling_tower.name}, could not find motor properties using search criteria: #{search_criteria}, motor_hp = #{nominal_hp} hp. Using a default value of #{fan_motor_eff}.") end - fan_motor_eff = motor_properties['nominal_full_load_efficiency'] - nominal_hp = motor_properties['maximum_capacity'].to_f.round(1) + unless motor_properties.nil? + fan_motor_eff = motor_properties['nominal_full_load_efficiency'] + nominal_hp = motor_properties['maximum_capacity'].to_f.round(1) + end # Round to nearest whole HP for niceness if nominal_hp >= 2 nominal_hp = nominal_hp.round @@ -116,7 +143,7 @@ def cooling_tower_apply_minimum_power_per_flow(cooling_tower) # Convert to W fan_motor_actual_power_w = fan_motor_actual_power_hp * 745.7 # 745.7 W/HP - OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.CoolingTower', "For #{cooling_tower.name}, allowed fan motor nameplate hp = #{fan_motor_nameplate_hp.round(1)} hp, fan brake horsepower = #{fan_bhp.round(1)}, and fan motor actual power = #{fan_motor_actual_power_hp.round(1)} hp (#{fan_motor_actual_power_w.round} W) at #{fan_motor_eff} motor efficiency.") + OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.CoolingTower', "For #{cooling_tower.name}, allowed fan motor nameplate hp = #{nominal_hp.round(1)} hp, fan brake horsepower = #{fan_bhp.round(1)}, and fan motor actual power = #{fan_motor_actual_power_hp.round(1)} hp (#{fan_motor_actual_power_w.round} W) at #{fan_motor_eff} motor efficiency.") # Append the efficiency to the name cooling_tower.setName("#{cooling_tower.name} #{min_gpm_per_hp.to_f.round(1)} gpm/hp") diff --git a/lib/openstudio-standards/standards/Standards.Fan.rb b/lib/openstudio-standards/standards/Standards.Fan.rb index a15873a3e..14a0fddeb 100644 --- a/lib/openstudio-standards/standards/Standards.Fan.rb +++ b/lib/openstudio-standards/standards/Standards.Fan.rb @@ -231,7 +231,7 @@ def fan_baseline_impeller_efficiency(fan) # Determines the minimum fan motor efficiency and nominal size for a given motor bhp. # This should be the total brake horsepower with any desired safety factor already included. - # This method picks the next nominal motor catgory larger than the required brake horsepower, + # This method picks the next nominal motor category larger than the required brake horsepower, # and the efficiency is based on that size. # For example, if the bhp = 6.3, the nominal size will be 7.5HP and the efficiency # for 90.1-2010 will be 91.7% from Table 10.8B. @@ -243,7 +243,12 @@ def fan_baseline_impeller_efficiency(fan) # @return [Array] minimum motor efficiency (0.0 to 1.0), nominal horsepower def fan_standard_minimum_motor_efficiency_and_size(fan, motor_bhp) fan_motor_eff = 0.85 - nominal_hp = motor_bhp + # Calculate the allowed fan brake horsepower + # per method used in PNNL prototype buildings. + # Assumes that the fan brake horsepower is 90% + # of the fan nameplate rated motor power. + # Source: Thornton et al. (2011), Achieving the 30% Goal: Energy and Cost Savings Analysis of ASHRAE Standard 90.1-2010, Section 4.5.4 + nominal_hp = motor_bhp * 1.1 # Don't attempt to look up motor efficiency # for zero-hp fans, which may occur when there is no @@ -267,34 +272,40 @@ def fan_standard_minimum_motor_efficiency_and_size(fan, motor_bhp) # In this case, use the 0.5 HP for the lookup. if fan_small_fan?(fan) nominal_hp = 0.5 - else - motor_properties = model_find_object(motors, search_criteria, motor_bhp) + + # Get the efficiency based on the nominal horsepower + motor_type = motor_type(nominal_hp) + motor_properties = motor_fractional_hp_efficiencies(nominal_hp, motor_type = motor_type) + if motor_properties.nil? - OpenStudio.logFree(OpenStudio::Error, 'openstudio.standards.Fan', "For #{fan.name}, could not find motor properties using search criteria: #{search_criteria}, motor_bhp = #{motor_bhp} hp.") + OpenStudio.logFree(OpenStudio::Error, 'openstudio.standards.Fan', "For #{fan.name}, could not find nominal motor properties using search criteria: #{search_criteria}, motor_hp = #{nominal_hp} hp.") return [fan_motor_eff, nominal_hp] end - - nominal_hp = motor_properties['maximum_capacity'].to_f.round(1) - # If the biggest fan motor size is hit, use the highest category efficiency - if nominal_hp > 9998.0 - OpenStudio.logFree(OpenStudio::Warn, 'openstudio.standards.Fan', "For #{fan.name}, there is no greater nominal HP. Use the efficiency of the largest motor category.") - nominal_hp = motor_bhp + else + # Use the efficiency largest motor efficiency when BHP is greater than the largest size for which a requirement is provided + data = model_find_objects(motors, search_criteria) + maximum_capacity = model_find_maximum_value(data, 'maximum_capacity') + if motor_bhp > maximum_capacity + motor_bhp = maximum_capacity end - # Round to nearest whole HP for niceness - if nominal_hp >= 2 - nominal_hp = nominal_hp.round + motor_properties = model_find_object(motors, search_criteria, capacity = nil, date = Date.today, area = nil, num_floors = nil, fan_motor_bhp = motor_bhp) + if motor_properties.nil? + # Retry without the date + motor_properties = model_find_object(motors, search_criteria, capacity = nil, date = nil, area = nil, num_floors = nil, fan_motor_bhp = motor_bhp) + if motor_properties.nil? + OpenStudio.logFree(OpenStudio::Error, 'openstudio.standards.Fan', "For #{fan.name}, could not find motor properties using search criteria: #{search_criteria}, motor_bhp = #{motor_bhp} hp.") + return [fan_motor_eff, nominal_hp] + end end end - # Get the efficiency based on the nominal horsepower - # Add 0.01 hp to avoid search errors. - motor_properties = model_find_object(motors, search_criteria, nominal_hp + 0.01) - - if motor_properties.nil? - OpenStudio.logFree(OpenStudio::Error, 'openstudio.standards.Fan', "For #{fan.name}, could not find nominal motor properties using search criteria: #{search_criteria}, motor_hp = #{nominal_hp} hp.") - return [fan_motor_eff, nominal_hp] + nominal_hp = motor_properties['maximum_capacity'].to_f.round(1) + # Round to nearest whole HP for niceness + if nominal_hp >= 2 + nominal_hp = nominal_hp.round end + fan_motor_eff = motor_properties['nominal_full_load_efficiency'] return [fan_motor_eff, nominal_hp] diff --git a/lib/openstudio-standards/standards/Standards.FluidCooler.rb b/lib/openstudio-standards/standards/Standards.FluidCooler.rb index 1eb4d9ab4..643e95520 100644 --- a/lib/openstudio-standards/standards/Standards.FluidCooler.rb +++ b/lib/openstudio-standards/standards/Standards.FluidCooler.rb @@ -76,27 +76,54 @@ def fluid_cooler_apply_minimum_power_per_flow(fluid_cooler, equipment_type: 'Clo # per method used in PNNL prototype buildings. # Assumes that the fan brake horsepower is 90% # of the fan nameplate rated motor power. - fan_motor_nameplate_hp = design_water_flow_gpm / min_gpm_per_hp - fan_bhp = 0.9 * fan_motor_nameplate_hp - - # Lookup the minimum motor efficiency - motors = standards_data['motors'] - - # Assuming all fan motors are 4-pole Enclosed - search_criteria = { - 'template' => template, - 'number_of_poles' => 4.0, - 'type' => 'Enclosed' - } + # Source: Thornton et al. (2011), Achieving the 30% Goal: Energy and Cost Savings Analysis of ASHRAE Standard 90.1-2010, Section 4.5.4 + nominal_hp = design_water_flow_gpm / min_gpm_per_hp + fan_bhp = 0.9 * nominal_hp + fan_motor_eff = 0.85 + + if nominal_hp <= 0.75 + motor_type = motor_type(nominal_hp) + motor_properties = motor_fractional_hp_efficiencies(nominal_hp, motor_type = motor_type) + else + # Lookup the minimum motor efficiency + motors = standards_data['motors'] + + # Assuming all fan motors are 4-pole Enclosed + search_criteria = { + 'template' => template, + 'number_of_poles' => 4.0, + 'type' => 'Enclosed' + } + + # Use the efficiency largest motor efficiency when BHP is greater than the largest size for which a requirement is provided + data = model_find_objects(motors, search_criteria) + if data.empty? + search_criteria = { + 'template' => template, + 'type' => nil + } + data = model_find_objects(motors, search_criteria) + end + maximum_capacity = model_find_maximum_value(data, 'maximum_capacity') + if fan_bhp > maximum_capacity + fan_bhp = maximum_capacity + end + + motor_properties = model_find_object(motors, search_criteria, capacity = nil, date = Date.today, area = nil, num_floors = nil, fan_motor_bhp = fan_bhp) + if motor_properties.nil? + # Retry without the date + motor_properties = model_find_object(motors, search_criteria, capacity = nil, date = nil, area = nil, num_floors = nil, fan_motor_bhp = fan_bhp) + end + end - motor_properties = model_find_object(motors, search_criteria, fan_motor_nameplate_hp) if motor_properties.nil? - OpenStudio.logFree(OpenStudio::Error, 'openstudio.standards.FluidCooler', "For #{fluid_cooler.name}, could not find motor properties using search criteria: #{search_criteria}, motor_hp = #{motor_hp} hp.") - return false + OpenStudio.logFree(OpenStudio::Error, 'openstudio.standards.FluidCooler', "For #{fluid_cooler.name}, could not find motor properties using search criteria: #{search_criteria}, motor_hp = #{norminal_hp} hp. Using a default value of #{fan_motor_eff}.") end - fan_motor_eff = motor_properties['nominal_full_load_efficiency'] - nominal_hp = motor_properties['maximum_capacity'].to_f.round(1) + unless motor_properties.nil? + fan_motor_eff = motor_properties['nominal_full_load_efficiency'] + nominal_hp = motor_properties['maximum_capacity'].to_f.round(1) + end # Round to nearest whole HP for niceness if nominal_hp >= 2 nominal_hp = nominal_hp.round @@ -107,7 +134,7 @@ def fluid_cooler_apply_minimum_power_per_flow(fluid_cooler, equipment_type: 'Clo # Convert to W fan_motor_actual_power_w = fan_motor_actual_power_hp * 745.7 # 745.7 W/HP - OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.FluidCooler', "For #{fluid_cooler.name}, allowed fan motor nameplate hp = #{fan_motor_nameplate_hp.round(1)} hp, fan brake horsepower = #{fan_bhp.round(1)}, and fan motor actual power = #{fan_motor_actual_power_hp.round(1)} hp (#{fan_motor_actual_power_w.round} W) at #{fan_motor_eff} motor efficiency.") + OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.FluidCooler', "For #{fluid_cooler.name}, allowed fan motor nameplate hp = #{nominal_hp.round(1)} hp, fan brake horsepower = #{fan_bhp.round(1)}, and fan motor actual power = #{fan_motor_actual_power_hp.round(1)} hp (#{fan_motor_actual_power_w.round} W) at #{fan_motor_eff} motor efficiency.") # Append the efficiency to the name fluid_cooler.setName("#{fluid_cooler.name} #{min_gpm_per_hp.to_f.round(1)} gpm/hp") diff --git a/lib/openstudio-standards/standards/Standards.Model.rb b/lib/openstudio-standards/standards/Standards.Model.rb index 764e81f04..279550bfe 100644 --- a/lib/openstudio-standards/standards/Standards.Model.rb +++ b/lib/openstudio-standards/standards/Standards.Model.rb @@ -260,10 +260,8 @@ def model_create_prm_any_baseline_building(user_model, building_type, climate_zo OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.Model', '*** Adding Daylighting Controls ***') # Run a sizing run to calculate VLT for layer-by-layer windows. - if model_create_prm_baseline_building_requires_vlt_sizing_run(model) - if model_run_sizing_run(model, "#{sizing_run_dir}/SRVLT") == false - return false - end + if model_create_prm_baseline_building_requires_vlt_sizing_run(model) && (model_run_sizing_run(model, "#{sizing_run_dir}/SRVLT") == false) + return false end # Add or remove daylighting controls to each space @@ -683,10 +681,8 @@ def model_is_hvac_autosized(model) # Check if the object needs to be checked for autosizing obj_to_be_checked_for_autosizing = false - if obj_type.include?('chiller') || obj_type.include?('boiler') || obj_type.include?('coil') || obj_type.include?('fan') || obj_type.include?('pump') || obj_type.include?('waterheater') - if !obj_type.include?('controller') - obj_to_be_checked_for_autosizing = true - end + if (obj_type.include?('chiller') || obj_type.include?('boiler') || obj_type.include?('coil') || obj_type.include?('fan') || obj_type.include?('pump') || obj_type.include?('waterheater')) && !obj_type.include?('controller') + obj_to_be_checked_for_autosizing = true end # Check for autosizing @@ -696,11 +692,9 @@ def model_is_hvac_autosized(model) next if casted_obj.nil? casted_obj.methods.each do |method| - if method.to_s.include?('is') && method.to_s.include?('Autosized') - if casted_obj.public_send(method) == true - is_hvac_autosized = true - OpenStudio.logFree(OpenStudio::Info, 'prm.log', "The #{method.to_s.sub('is', '').sub('Autosized', '').sub(':', '')} field of the #{obj_type} named #{casted_obj.name} is autosized. It should be hard sized.") - end + if method.to_s.include?('is') && method.to_s.include?('Autosized') && (casted_obj.public_send(method) == true) + is_hvac_autosized = true + OpenStudio.logFree(OpenStudio::Info, 'prm.log', "The #{method.to_s.sub('is', '').sub('Autosized', '').sub(':', '')} field of the #{obj_type} named #{casted_obj.name} is autosized. It should be hard sized.") end end end @@ -756,12 +750,10 @@ def model_zones_with_occ_and_fuel_type(model, custom, applicable_zones = nil) next end - if !applicable_zones.nil? - # This is only used for the stable baseline (2016 and later) - if !applicable_zones.include?(zone) - # This zone is not part of the current hvac_building_type - next - end + # This is only used for the stable baseline (2016 and later) + if !applicable_zones.nil? && !applicable_zones.include?(zone) + # This zone is not part of the current hvac_building_type + next end # Skip unconditioned zones @@ -2335,6 +2327,19 @@ def default_air_barrier return false end + # Get the maximum value for a field of a hash + # + # @param hash_of_objects [Hash] hash of objects to search through + # @param field [String] field name from the hash + # @return [float] Return the first matching object hash if successful, nil if not. + def model_find_maximum_value(hash_of_objects, field) + maximum_value = 0 + hash_of_objects.each do |set| + maximum_value = [maximum_value, set[field]].max if set[field].to_f > 0 + end + return maximum_value + end + # Method to search through a hash for the objects that meets the desired search criteria, as passed via a hash. # Returns an Array (empty if nothing found) of matching objects. # @@ -2465,7 +2470,7 @@ def model_find_objects(hash_of_objects, search_criteria, capacity = nil, date = matching_capacity_objects = matching_objects.reject { |object| fan_motor_bhp.to_f <= object['minimum_capacity'].to_f || fan_motor_bhp.to_f > object['maximum_capacity'].to_f } # Filter based on motor type - matching_capacity_objects = matching_capacity_objects.select { |object| object['type'].downcase == search_criteria['type'].downcase } if search_criteria.keys.include?('type') + matching_capacity_objects = matching_capacity_objects.select { |object| object['type'].to_s.downcase == search_criteria['type'].to_s.downcase } if search_criteria.keys.include?('type') # If no object was found, round the fan_motor_bhp down in case the number fell between the limits in the json file. if matching_capacity_objects.empty? @@ -2534,7 +2539,7 @@ def model_find_objects(hash_of_objects, search_criteria, capacity = nil, date = # the objects will only be returned if the specified area is between the minimum_area and maximum_area values. # @param num_floors [Double] capacity of the object in question. If num_floors is supplied, # the objects will only be returned if the specified num_floors is between the minimum_floors and maximum_floors values. - # @return [Hash] Return tbe first matching object hash if successful, nil if not. + # @return [Hash] Return the first matching object hash if successful, nil if not. # @example Find the motor that meets these size criteria # search_criteria = { # 'template' => template, @@ -2706,7 +2711,7 @@ def standards_lookup_table_many(table_name:, search_criteria: {}, capacity: nil, # the objects will only be returned if the specified capacity is between the minimum_capacity and maximum_capacity values. # @param date [] date of the object in question. If date is supplied, # the objects will only be returned if the specified date is between the start_date and end_date. - # @return [Hash] Return tbe first matching object hash if successful, nil if not. + # @return [Hash] Return the first matching object hash if successful, nil if not. # @example Find the motor that meets these size criteria # search_criteria = { # 'template' => template, @@ -5536,7 +5541,7 @@ def model_add_vals_to_sch(model, day_sch, sch_type, values) if sch_type == 'Constant' day_sch.addValue(OpenStudio::Time.new(0, 24, 0, 0), values[0]) elsif sch_type == 'Hourly' - (0..23).each do |i| + 24.times do |i| next if values[i] == values[i + 1] day_sch.addValue(OpenStudio::Time.new(0, i + 1, 0, 0), values[i]) diff --git a/lib/openstudio-standards/standards/Standards.Motor.rb b/lib/openstudio-standards/standards/Standards.Motor.rb new file mode 100644 index 000000000..2b89a12c9 --- /dev/null +++ b/lib/openstudio-standards/standards/Standards.Motor.rb @@ -0,0 +1,65 @@ +class Standard + # @!group Motor + + # Determine the type of motor to model + # + # @param nominal_hp [Float] nominal or nameplate motor horsepower + # @return [String] motor type + def motor_type(nominal_hp) + return 'PSC' + end + + # Determine the efficiency of fractional horsepower motors + # + # @param nominal_hp [Float] nominal or nameplate motor horsepower + # @param motor_type [String] motor type, either 'PSC' or 'ECM' + # @return [Float] motor efficiency + def motor_fractional_hp_efficiencies(nominal_hp, motor_type = 'PSC') + # Unless specified otherwise, the efficiencies are calculated from + # Table 5-3 from Energy Savings Potential and Research & Development Opportunities for Commercial Refrigeration, Navigant, 2009 + # https://www1.eere.energy.gov/buildings/pdfs/commercial_refrigeration_equipment_research_opportunities.pdf + # + # efficiency = (rated shaft output) / (input power) + case motor_type + when 'PSC' + if nominal_hp <= 1.0 / 20.0 + efficiency = 37.0 / 70.0 + elsif nominal_hp <= 1.0 / 15.0 + efficiency = 50.0 / 90.0 + elsif nominal_hp <= 1.0 / 6.0 + efficiency = 125.0 / 202.0 + elsif nominal_hp <= 1.0 / 3.0 + efficiency = 249.0 / 370.0 + elsif nominal_hp <= 1.0 / 2.0 + efficiency = 373.0 / 530.0 + elsif nominal_hp <= 3.0 / 4.0 + efficiency = 560.0 / 699.0 # data obtained from motorboss.com + else + return nil + end + when 'ECM' + if nominal_hp <= 1.0 / 20.0 + efficiency = 37.0 / 49.0 + elsif nominal_hp <= 1.0 / 15.0 + efficiency = 50.0 / 65.0 + elsif nominal_hp <= 1.0 / 6.0 + efficiency = 125.0 / 155.0 + elsif nominal_hp <= 1.0 / 3.0 + efficiency = 249.0 / 304.0 + elsif nominal_hp <= 1.0 / 2.0 + efficiency = 373.0 / 450.0 + elsif nominal_hp <= 3.0 / 4.0 + efficiency = 560.0 / 674.0 # data obtained from motorboss.com + else + return nil + end + else + return nil + end + motor_properties = { + 'nominal_full_load_efficiency' => efficiency, + 'maximum_capacity' => nominal_hp + } + return motor_properties + end +end diff --git a/lib/openstudio-standards/standards/Standards.Pump.rb b/lib/openstudio-standards/standards/Standards.Pump.rb index 6d8f4431a..116fdf88d 100644 --- a/lib/openstudio-standards/standards/Standards.Pump.rb +++ b/lib/openstudio-standards/standards/Standards.Pump.rb @@ -113,7 +113,7 @@ def pump_apply_standard_minimum_motor_efficiency(pump) # Determines the minimum pump motor efficiency and nominal size # for a given motor bhp. This should be the total brake horsepower with # any desired safety factor already included. This method picks - # the next nominal motor catgory larger than the required brake + # the next nominal motor category larger than the required brake # horsepower, and the efficiency is based on that size. For example, # if the bhp = 6.3, the nominal size will be 7.5HP and the efficiency # for 90.1-2010 will be 91.7% from Table 10.8B. This method assumes @@ -125,24 +125,48 @@ def pump_apply_standard_minimum_motor_efficiency(pump) # @return [Array] minimum motor efficiency (0.0 to 1.0), nominal horsepower def pump_standard_minimum_motor_efficiency_and_size(pump, motor_bhp) motor_eff = 0.85 - nominal_hp = motor_bhp + # Calculate the allowed fan brake horsepower + # per method used in PNNL prototype buildings. + # Assumes that the fan brake horsepower is 90% + # of the fan nameplate rated motor power. + # Source: Thornton et al. (2011), Achieving the 30% Goal: Energy and Cost Savings Analysis of ASHRAE Standard 90.1-2010, Section 4.5.4 + nominal_hp = motor_bhp * 1.1 # Don't attempt to look up motor efficiency # for zero-hp pumps (required for circulation-pump-free # service water heating systems). return [1.0, 0] if motor_bhp < 0.0001 # under 1 watt - # Lookup the minimum motor efficiency - motors = standards_data['motors'] + if nominal_hp <= 0.75 + motor_type = motor_type(nominal_hp) + motor_properties = motor_fractional_hp_efficiencies(nominal_hp, motor_type = motor_type) + else + motor_properties.nil? + # Lookup the minimum motor efficiency + motors = standards_data['motors'] + + # Assuming all pump motors are 4-pole ODP + search_criteria = { + 'template' => template, + 'number_of_poles' => 4.0, + 'type' => 'Enclosed' + } + + # Use the efficiency largest motor efficiency when BHP is greater than the largest size for which a requirement is provided + data = model_find_objects(motors, search_criteria) + maximum_capacity = model_find_maximum_value(data, 'maximum_capacity') + if motor_bhp > maximum_capacity + motor_bhp = maximum_capacity + end + + motor_properties = model_find_object(motors, search_criteria, capacity = nil, date = Date.today, area = nil, num_floors = nil, fan_motor_bhp = motor_bhp) - # Assuming all pump motors are 4-pole ODP - search_criteria = { - 'template' => template, - 'number_of_poles' => 4.0, - 'type' => 'Enclosed' - } + if motor_properties.nil? + # Retry without the date + motor_properties = model_find_object(motors, search_criteria, capacity = nil, date = nil, area = nil, num_floors = nil, fan_motor_bhp = motor_bhp) + end + end - motor_properties = model_find_object(motors, search_criteria, motor_bhp) if motor_properties.nil? OpenStudio.logFree(OpenStudio::Error, 'openstudio.standards.Pump', "For #{pump.name}, could not find motor properties using search criteria: #{search_criteria}, motor_bhp = #{motor_bhp} hp.") return [motor_eff, nominal_hp] @@ -155,15 +179,6 @@ def pump_standard_minimum_motor_efficiency_and_size(pump, motor_bhp) nominal_hp = nominal_hp.round end - # Get the efficiency based on the nominal horsepower - # Add 0.01 hp to avoid search errors. - motor_properties = model_find_object(motors, search_criteria, nominal_hp + 0.01) - if motor_properties.nil? - OpenStudio.logFree(OpenStudio::Error, 'openstudio.standards.Fan', "For #{pump.name}, could not find nominal motor properties using search criteria: #{search_criteria}, motor_hp = #{nominal_hp} hp.") - return [motor_eff, nominal_hp] - end - motor_eff = motor_properties['nominal_full_load_efficiency'] - return [motor_eff, nominal_hp] end diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.motors.json b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.motors.json index 854baea0e..0d6c08cf5 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.motors.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.motors.json @@ -1,204 +1,1134 @@ { "motors": [ { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.8 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.755 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 0.0, - "maximum_capacity": 0.999, - "nominal_full_load_efficiency": 0.29, - "notes": "Motors below 1 HP assumed to be PSC, with average typical efficiency of 29% per PNNL" + "synchronous_speed": 1800, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 1.0, - "maximum_capacity": 1.499, - "nominal_full_load_efficiency": 0.825, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.8 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 1.5, - "maximum_capacity": 1.999, - "nominal_full_load_efficiency": 0.84, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 2.0, - "maximum_capacity": 2.999, - "nominal_full_load_efficiency": 0.84, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 3.0, - "maximum_capacity": 4.999, - "nominal_full_load_efficiency": 0.875, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 5.0, - "maximum_capacity": 7.499, - "nominal_full_load_efficiency": 0.875, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 7.5, - "maximum_capacity": 9.999, - "nominal_full_load_efficiency": 0.895, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 10.0, - "maximum_capacity": 14.999, - "nominal_full_load_efficiency": 0.895, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 15.0, - "maximum_capacity": 19.999, - "nominal_full_load_efficiency": 0.91, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 20.0, - "maximum_capacity": 24.999, - "nominal_full_load_efficiency": 0.91, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 25.0, - "maximum_capacity": 29.999, - "nominal_full_load_efficiency": 0.924, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 30.0, - "maximum_capacity": 39.999, - "nominal_full_load_efficiency": 0.924, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 40.0, - "maximum_capacity": 49.999, - "nominal_full_load_efficiency": 0.93, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 50.0, - "maximum_capacity": 59.999, - "nominal_full_load_efficiency": 0.93, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 60.0, - "maximum_capacity": 74.999, - "nominal_full_load_efficiency": 0.936, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 75.0, - "maximum_capacity": 99.999, - "nominal_full_load_efficiency": 0.941, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 100.0, - "maximum_capacity": 124.999, - "nominal_full_load_efficiency": 0.945, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 125.0, - "maximum_capacity": 149.999, - "nominal_full_load_efficiency": 0.945, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 150.0, - "maximum_capacity": 199.999, - "nominal_full_load_efficiency": 0.95, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 }, { - "template": "90.1-2004", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 200.0, - "maximum_capacity": 9999.0, - "nominal_full_load_efficiency": 0.95, - "notes": "From 90.1-2004 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.motors.json b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.motors.json index aa59c79b5..0d6c08cf5 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.motors.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.motors.json @@ -1,204 +1,1134 @@ { "motors": [ { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.8 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.755 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 0.0, - "maximum_capacity": 0.999, - "nominal_full_load_efficiency": 0.29, - "notes": "Motors below 1 HP assumed to be PSC, with average typical efficiency of 29% per PNNL" + "synchronous_speed": 1800, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 1.0, - "maximum_capacity": 1.499, - "nominal_full_load_efficiency": 0.825, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.8 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 1.5, - "maximum_capacity": 1.999, - "nominal_full_load_efficiency": 0.84, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 2.0, - "maximum_capacity": 2.999, - "nominal_full_load_efficiency": 0.84, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 3.0, - "maximum_capacity": 4.999, - "nominal_full_load_efficiency": 0.875, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 5.0, - "maximum_capacity": 7.499, - "nominal_full_load_efficiency": 0.875, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 7.5, - "maximum_capacity": 9.999, - "nominal_full_load_efficiency": 0.895, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 10.0, - "maximum_capacity": 14.999, - "nominal_full_load_efficiency": 0.895, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 15.0, - "maximum_capacity": 19.999, - "nominal_full_load_efficiency": 0.91, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 20.0, - "maximum_capacity": 24.999, - "nominal_full_load_efficiency": 0.91, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 25.0, - "maximum_capacity": 29.999, - "nominal_full_load_efficiency": 0.924, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 30.0, - "maximum_capacity": 39.999, - "nominal_full_load_efficiency": 0.924, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 40.0, - "maximum_capacity": 49.999, - "nominal_full_load_efficiency": 0.93, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 50.0, - "maximum_capacity": 59.999, - "nominal_full_load_efficiency": 0.93, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 60.0, - "maximum_capacity": 74.999, - "nominal_full_load_efficiency": 0.936, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 75.0, - "maximum_capacity": 99.999, - "nominal_full_load_efficiency": 0.941, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 100.0, - "maximum_capacity": 124.999, - "nominal_full_load_efficiency": 0.945, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 125.0, - "maximum_capacity": 149.999, - "nominal_full_load_efficiency": 0.945, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 150.0, - "maximum_capacity": 199.999, - "nominal_full_load_efficiency": 0.95, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 }, { - "template": "90.1-2007", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 200.0, - "maximum_capacity": 9999.0, - "nominal_full_load_efficiency": 0.95, - "notes": "From 90.1-2007 Table 10.8" + "synchronous_speed": 1200, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.motors.json b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.motors.json index ff7130d25..bb4c81469 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.motors.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.motors.json @@ -1,264 +1,2634 @@ { "motors": [ { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.8 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.755 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.8 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2010-12-18T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.77 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.77 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 0.0, - "maximum_capacity": 0.999, - "nominal_full_load_efficiency": 0.29, - "notes": "Motors below 1 HP assumed to be PSC, with average typical efficiency of 29% per PNNL" + "synchronous_speed": 1800, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 1.0, - "maximum_capacity": 1.499, - "nominal_full_load_efficiency": 0.855, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 1.5, - "maximum_capacity": 1.999, - "nominal_full_load_efficiency": 0.865, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 2.0, - "maximum_capacity": 2.999, - "nominal_full_load_efficiency": 0.865, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 3.0, - "maximum_capacity": 4.999, - "nominal_full_load_efficiency": 0.895, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 5.0, - "maximum_capacity": 7.499, - "nominal_full_load_efficiency": 0.895, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 7.5, - "maximum_capacity": 9.999, - "nominal_full_load_efficiency": 0.917, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 10.0, - "maximum_capacity": 14.999, - "nominal_full_load_efficiency": 0.917, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 15.0, - "maximum_capacity": 19.999, - "nominal_full_load_efficiency": 0.924, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 20.0, - "maximum_capacity": 24.9999, - "nominal_full_load_efficiency": 0.93, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 25.0, - "maximum_capacity": 29.999, - "nominal_full_load_efficiency": 0.936, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 30.0, - "maximum_capacity": 39.999, - "nominal_full_load_efficiency": 0.936, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 40.0, - "maximum_capacity": 49.999, - "nominal_full_load_efficiency": 0.941, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 50.0, - "maximum_capacity": 59.999, - "nominal_full_load_efficiency": 0.945, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 60.0, - "maximum_capacity": 74.999, - "nominal_full_load_efficiency": 0.95, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 75.0, - "maximum_capacity": 99.999, - "nominal_full_load_efficiency": 0.954, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 100.0, - "maximum_capacity": 124.999, - "nominal_full_load_efficiency": 0.954, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 125.0, - "maximum_capacity": 149.999, - "nominal_full_load_efficiency": 0.954, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 150.0, - "maximum_capacity": 199.999, - "nominal_full_load_efficiency": 0.958, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 200.0, - "maximum_capacity": 249.999, - "nominal_full_load_efficiency": 0.962, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 250.0, - "maximum_capacity": 299.999, - "nominal_full_load_efficiency": 0.962, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 300.0, - "maximum_capacity": 349.999, - "nominal_full_load_efficiency": 0.962, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 350.0, - "maximum_capacity": 399.999, - "nominal_full_load_efficiency": 0.962, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 400.0, - "maximum_capacity": 449.999, - "nominal_full_load_efficiency": 0.962, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 450.0, - "maximum_capacity": 499.999, - "nominal_full_load_efficiency": 0.962, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2010", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 500.0, - "maximum_capacity": 9999.0, - "nominal_full_load_efficiency": 0.962, - "notes": "From 90.1-2010 Table 10.8B" + "synchronous_speed": 1200, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "2010-12-19T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.Motor.rb b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.Motor.rb new file mode 100644 index 000000000..3a0d28adb --- /dev/null +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.Motor.rb @@ -0,0 +1,11 @@ +class ASHRAE9012013 < ASHRAE901 + # @!group Motor + + # Determine the type of motor to model + # + # @param nominal_hp [Float] nominal or nameplate motor horsepower + # @return [String] motor type + def motor_type(nominal_hp) + return 'ECM' # Addendum aj to 90.1-2010 + end +end diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.motors.json b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.motors.json index 78c3f4ba2..69d5535cd 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.motors.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.motors.json @@ -1,274 +1,1444 @@ { "motors": [ { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.77 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.77 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 0.0, - "maximum_capacity": 0.08333, - "nominal_full_load_efficiency": 0.29, - "notes": "Motors below 1/12 HP assumed to be PSC, with average typical efficiency of 29% per PNNL" + "synchronous_speed": 1800, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 4, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 0.08334, - "maximum_capacity": 0.999, - "nominal_full_load_efficiency": 0.7, - "notes": "Motors between 1/12 and 1 HP must be EC, with minimum efficiency of 70% per PNNL" + "synchronous_speed": 1800, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 4, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 1.0, - "maximum_capacity": 1.499, - "nominal_full_load_efficiency": 0.855, - "notes": null + "synchronous_speed": 1800, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 4, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 1.5, - "maximum_capacity": 1.999, - "nominal_full_load_efficiency": 0.865, - "notes": null + "synchronous_speed": 1800, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 4, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 2.0, - "maximum_capacity": 2.999, - "nominal_full_load_efficiency": 0.865, - "notes": null + "synchronous_speed": 1800, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 3.0, - "maximum_capacity": 4.999, - "nominal_full_load_efficiency": 0.895, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 5.0, - "maximum_capacity": 7.499, - "nominal_full_load_efficiency": 0.895, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 7.5, - "maximum_capacity": 9.999, - "nominal_full_load_efficiency": 0.917, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 10.0, - "maximum_capacity": 14.999, - "nominal_full_load_efficiency": 0.917, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 15.0, - "maximum_capacity": 19.999, - "nominal_full_load_efficiency": 0.924, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 20.0, - "maximum_capacity": 24.999, - "nominal_full_load_efficiency": 0.93, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 25.0, - "maximum_capacity": 29.999, - "nominal_full_load_efficiency": 0.936, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 30.0, - "maximum_capacity": 39.999, - "nominal_full_load_efficiency": 0.936, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 40.0, - "maximum_capacity": 49.999, - "nominal_full_load_efficiency": 0.941, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 50.0, - "maximum_capacity": 59.999, - "nominal_full_load_efficiency": 0.945, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 60.0, - "maximum_capacity": 74.999, - "nominal_full_load_efficiency": 0.95, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 75.0, - "maximum_capacity": 99.999, - "nominal_full_load_efficiency": 0.954, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 100.0, - "maximum_capacity": 124.999, - "nominal_full_load_efficiency": 0.954, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 125.0, - "maximum_capacity": 149.999, - "nominal_full_load_efficiency": 0.954, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 150.0, - "maximum_capacity": 199.999, - "nominal_full_load_efficiency": 0.958, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 200.0, - "maximum_capacity": 249.999, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 250.0, - "maximum_capacity": 299.999, - "nominal_full_load_efficiency": 0.95, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 300.0, - "maximum_capacity": 349.999, - "nominal_full_load_efficiency": 0.954, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 350.0, - "maximum_capacity": 399.999, - "nominal_full_load_efficiency": 0.954, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 400.0, - "maximum_capacity": 449.999, - "nominal_full_load_efficiency": 0.954, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 450.0, - "maximum_capacity": 499.999, - "nominal_full_load_efficiency": 0.954, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 }, { - "template": "90.1-2013", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 500.0, - "maximum_capacity": 9999.0, - "nominal_full_load_efficiency": 0.954, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Motor.rb b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Motor.rb new file mode 100644 index 000000000..02eb6cd9b --- /dev/null +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Motor.rb @@ -0,0 +1,11 @@ +class ASHRAE9012016 < ASHRAE901 + # @!group Motor + + # Determine the type of motor to model + # + # @param nominal_hp [Float] nominal or nameplate motor horsepower + # @return [String] motor type + def motor_type(nominal_hp) + return 'ECM' # Addendum aj to 90.1-2010 + end +end diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.motors.json b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.motors.json index ad34c951f..afa9ea8b9 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.motors.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.motors.json @@ -1,274 +1,1854 @@ { "motors": [ { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.77 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.755 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.77 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.77 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 0.0, - "maximum_capacity": 0.08333, - "nominal_full_load_efficiency": 0.29, - "notes": "Motors below 1/12 HP assumed to be PSC, with average typical efficiency of 29% per PNNL" + "synchronous_speed": 1200, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 0.08334, - "maximum_capacity": 0.999, - "nominal_full_load_efficiency": 0.7, - "notes": "Motors between 1/12 and 1 HP must be EC, with minimum efficiency of 70% per PNNL" + "synchronous_speed": 1200, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 1.0, - "maximum_capacity": 1.499, - "nominal_full_load_efficiency": 0.855, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 1.5, - "maximum_capacity": 1.999, - "nominal_full_load_efficiency": 0.865, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 2.0, - "maximum_capacity": 2.999, - "nominal_full_load_efficiency": 0.865, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 3.0, - "maximum_capacity": 4.999, - "nominal_full_load_efficiency": 0.895, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 5.0, - "maximum_capacity": 7.499, - "nominal_full_load_efficiency": 0.895, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 7.5, - "maximum_capacity": 9.999, - "nominal_full_load_efficiency": 0.917, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.755 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 10.0, - "maximum_capacity": 14.999, - "nominal_full_load_efficiency": 0.917, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.785 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 15.0, - "maximum_capacity": 19.999, - "nominal_full_load_efficiency": 0.924, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 20.0, - "maximum_capacity": 24.999, - "nominal_full_load_efficiency": 0.93, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 25.0, - "maximum_capacity": 29.999, - "nominal_full_load_efficiency": 0.936, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 30.0, - "maximum_capacity": 39.999, - "nominal_full_load_efficiency": 0.936, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 40.0, - "maximum_capacity": 49.999, - "nominal_full_load_efficiency": 0.941, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 50.0, - "maximum_capacity": 59.999, - "nominal_full_load_efficiency": 0.945, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 60.0, - "maximum_capacity": 74.999, - "nominal_full_load_efficiency": 0.95, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 75.0, - "maximum_capacity": 99.999, - "nominal_full_load_efficiency": 0.954, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 100.0, - "maximum_capacity": 124.999, - "nominal_full_load_efficiency": 0.954, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 125.0, - "maximum_capacity": 149.999, - "nominal_full_load_efficiency": 0.954, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 150.0, - "maximum_capacity": 199.999, - "nominal_full_load_efficiency": 0.958, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 200.0, - "maximum_capacity": 249.999, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 250.0, - "maximum_capacity": 299.999, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 300.0, - "maximum_capacity": 349.999, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 350.0, - "maximum_capacity": 399.999, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 400.0, - "maximum_capacity": 449.999, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 450.0, - "maximum_capacity": 499.999, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 }, { - "template": "90.1-2016", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 500.0, - "maximum_capacity": 9999.0, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Motor.rb b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Motor.rb new file mode 100644 index 000000000..db16deedc --- /dev/null +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Motor.rb @@ -0,0 +1,11 @@ +class ASHRAE9012019 < ASHRAE901 + # @!group Motor + + # Determine the type of motor to model + # + # @param nominal_hp [Float] nominal or nameplate motor horsepower + # @return [String] motor type + def motor_type(nominal_hp) + return 'ECM' # Addendum aj to 90.1-2010 + end +end diff --git a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.motors.json b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.motors.json index eb6fdf796..bf06cae07 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.motors.json +++ b/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.motors.json @@ -1,274 +1,1844 @@ { "motors": [ { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.77 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 2, + "type": "Open", + "synchronous_speed": 3600, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Open", + "synchronous_speed": 1800, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 6, + "type": "Open", + "synchronous_speed": 1200, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.755 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.77 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 8, + "type": "Open", + "synchronous_speed": 900, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.77 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 2, + "type": "Enclosed", + "synchronous_speed": 3600, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.954 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 350.001, + "maximum_capacity": 400, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 400.001, + "maximum_capacity": 450, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 4, + "type": "Enclosed", + "synchronous_speed": 1800, + "minimum_capacity": 450.001, + "maximum_capacity": 500, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.962 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.885 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, + "type": "Enclosed", + "synchronous_speed": 1200, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 0.0, - "maximum_capacity": 0.08333, - "nominal_full_load_efficiency": 0.29, - "notes": "Motors below 1/12 HP assumed to be PSC, with average typical efficiency of 29% per PNNL" + "synchronous_speed": 1200, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 0.08334, - "maximum_capacity": 0.999, - "nominal_full_load_efficiency": 0.7, - "notes": "Motors between 1/12 and 1 HP must be EC, with minimum efficiency of 70% per PNNL" + "synchronous_speed": 1200, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 1.0, - "maximum_capacity": 1.499, - "nominal_full_load_efficiency": 0.855, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 1.5, - "maximum_capacity": 1.999, - "nominal_full_load_efficiency": 0.865, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 2.0, - "maximum_capacity": 2.999, - "nominal_full_load_efficiency": 0.865, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 3.0, - "maximum_capacity": 4.999, - "nominal_full_load_efficiency": 0.895, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 250.001, + "maximum_capacity": 300, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 6, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 5.0, - "maximum_capacity": 7.499, - "nominal_full_load_efficiency": 0.895, - "notes": null + "synchronous_speed": 1200, + "minimum_capacity": 300.001, + "maximum_capacity": 350, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.958 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 7.5, - "maximum_capacity": 9.999, - "nominal_full_load_efficiency": 0.917, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.755 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 10.0, - "maximum_capacity": 14.999, - "nominal_full_load_efficiency": 0.917, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.785 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 15.0, - "maximum_capacity": 19.999, - "nominal_full_load_efficiency": 0.924, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 20.0, - "maximum_capacity": 24.999, - "nominal_full_load_efficiency": 0.93, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.855 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 25.0, - "maximum_capacity": 29.999, - "nominal_full_load_efficiency": 0.936, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 30.0, - "maximum_capacity": 39.999, - "nominal_full_load_efficiency": 0.936, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.865 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 40.0, - "maximum_capacity": 49.999, - "nominal_full_load_efficiency": 0.941, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 50.0, - "maximum_capacity": 59.999, - "nominal_full_load_efficiency": 0.945, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 60.0, - "maximum_capacity": 74.999, - "nominal_full_load_efficiency": 0.95, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 75.0, - "maximum_capacity": 99.999, - "nominal_full_load_efficiency": 0.954, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.902 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 100.0, - "maximum_capacity": 124.999, - "nominal_full_load_efficiency": 0.954, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 125.0, - "maximum_capacity": 149.999, - "nominal_full_load_efficiency": 0.954, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.917 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 150.0, - "maximum_capacity": 199.999, - "nominal_full_load_efficiency": 0.958, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 200.0, - "maximum_capacity": 249.999, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 250.0, - "maximum_capacity": 299.999, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 300.0, - "maximum_capacity": 349.999, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 350.0, - "maximum_capacity": 399.999, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 400.0, - "maximum_capacity": 449.999, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 450.0, - "maximum_capacity": 499.999, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 }, { - "template": "90.1-2019", - "number_of_poles": 4.0, + "number_of_poles": 8, "type": "Enclosed", - "synchronous_speed": 1800.0, - "minimum_capacity": 500.0, - "maximum_capacity": 9999.0, - "nominal_full_load_efficiency": 0.962, - "notes": null + "synchronous_speed": 900, + "minimum_capacity": 200.001, + "maximum_capacity": 250, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 } ] } \ No newline at end of file diff --git a/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Fan.rb b/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Fan.rb index 01e0cdac9..973b7e2c9 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Fan.rb +++ b/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Fan.rb @@ -3,7 +3,7 @@ module ASHRAE901PRMFan # Determines the minimum fan motor efficiency and nominal size for a given motor bhp. # This should be the total brake horsepower with any desired safety factor already included. - # This method picks the next nominal motor catgory larger than the required brake horsepower, + # This method picks the next nominal motor category larger than the required brake horsepower, # and the efficiency is based on that size. # For example, if the bhp = 6.3, the nominal size will be 7.5HP and the efficiency # for 90.1-2010 will be 91.7% from Table 10.8B. @@ -15,7 +15,6 @@ module ASHRAE901PRMFan # @return [Array] minimum motor efficiency (0.0 to 1.0), nominal horsepower def fan_standard_minimum_motor_efficiency_and_size(fan, motor_bhp) fan_motor_eff = 0.85 - nominal_hp = motor_bhp # Don't attempt to look up motor efficiency # for zero-hp fans, which may occur when there is no @@ -26,47 +25,14 @@ def fan_standard_minimum_motor_efficiency_and_size(fan, motor_bhp) # Lookup the minimum motor efficiency motors = standards_data['motors'] - - # Assuming all fan motors are 4-pole ODP - search_criteria = { - 'template' => template, - 'number_of_poles' => 4.0, - 'type' => 'Enclosed' - } - - # Exception for small fans, including - # zone exhaust, fan coil, and fan powered terminals. - # In this case, use the 0.5 HP for the lookup. - if fan_small_fan?(fan) - nominal_hp = 0.5 - else - motor_properties = model_find_object(motors, search_criteria, capacity = nil, date = nil, area = nil, num_floors = nil, fan_motor_bhp = motor_bhp) - if motor_properties.nil? - OpenStudio.logFree(OpenStudio::Error, 'openstudio.standards.Fan', "For #{fan.name}, could not find motor properties using search criteria: #{search_criteria}, motor_bhp = #{motor_bhp} hp.") - return [fan_motor_eff, nominal_hp] - end - - # If the biggest fan motor size is hit, use the highest category efficiency - if nominal_hp > 9998.0 - OpenStudio.logFree(OpenStudio::Warn, 'openstudio.standards.Fan', "For #{fan.name}, there is no greater nominal HP. Use the efficiency of the largest motor category.") - nominal_hp = motor_bhp - end - - # Round to nearest whole HP for niceness - if nominal_hp >= 2 - nominal_hp = nominal_hp.round - end - end - - # Get the efficiency based on the nominal horsepower - motor_properties = model_find_object(motors, search_criteria, fan_motor_bhp = motor_bhp) - + motor_properties = model_find_object(motors, {}, capacity = nil, date = nil, area = nil, num_floors = nil, fan_motor_bhp = motor_bhp) if motor_properties.nil? - OpenStudio.logFree(OpenStudio::Error, 'openstudio.standards.Fan', "For #{fan.name}, could not find nominal motor properties using search criteria: #{search_criteria}, motor_hp = #{nominal_hp} hp.") - return [fan_motor_eff, nominal_hp] + OpenStudio.logFree(OpenStudio::Error, 'openstudio.standards.Fan', "For #{fan.name}, could not find motor properties using search criteria: motor_bhp = #{motor_bhp} bhp. Use #{fan_motor_eff} as a placeholder.") + return [fan_motor_eff, motor_bhp.round] end + + nominal_hp = motor_properties['maximum_capacity'].round fan_motor_eff = motor_properties['nominal_full_load_efficiency'] - nominal_hp = motor_properties['maximum_capacity'].round(1) return [fan_motor_eff, nominal_hp] end diff --git a/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.motors.json b/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.motors.json index 4a5175d37..c8d4d9f66 100644 --- a/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.motors.json +++ b/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.motors.json @@ -1,264 +1,244 @@ { "motors": [ { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 0.0, - "maximum_capacity": 0.999, - "nominal_full_load_efficiency": 0.825, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 1.0, - "maximum_capacity": 1.499, - "nominal_full_load_efficiency": 0.84, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 1.5, - "maximum_capacity": 1.999, - "nominal_full_load_efficiency": 0.84, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 2.0, - "maximum_capacity": 2.999, - "nominal_full_load_efficiency": 0.875, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 3.0, - "maximum_capacity": 4.999, - "nominal_full_load_efficiency": 0.875, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 5.0, - "maximum_capacity": 7.499, - "nominal_full_load_efficiency": 0.895, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 7.5, - "maximum_capacity": 9.999, - "nominal_full_load_efficiency": 0.895, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 10.0, - "maximum_capacity": 14.999, - "nominal_full_load_efficiency": 0.91, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 15.0, - "maximum_capacity": 19.999, - "nominal_full_load_efficiency": 0.91, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 20.0, - "maximum_capacity": 24.999, - "nominal_full_load_efficiency": 0.924, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 25.0, - "maximum_capacity": 29.999, - "nominal_full_load_efficiency": 0.924, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 30.0, - "maximum_capacity": 39.999, - "nominal_full_load_efficiency": 0.93, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 40.0, - "maximum_capacity": 49.999, - "nominal_full_load_efficiency": 0.93, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 50.0, - "maximum_capacity": 59.999, - "nominal_full_load_efficiency": 0.9359999999999999, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 60.0, - "maximum_capacity": 74.999, - "nominal_full_load_efficiency": 0.941, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 75.0, - "maximum_capacity": 99.999, - "nominal_full_load_efficiency": 0.945, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 100.0, - "maximum_capacity": 124.999, - "nominal_full_load_efficiency": 0.945, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 125.0, - "maximum_capacity": 149.999, - "nominal_full_load_efficiency": 0.95, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 150.0, - "maximum_capacity": 199.999, - "nominal_full_load_efficiency": 0.95, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Any", - "synchronous_speed": "Any", - "minimum_capacity": 200.0, - "maximum_capacity": 9999.0, - "nominal_full_load_efficiency": 0.95, - "notes": "From 90.1-2019 Table G3.9.1, applied to all number of poles, type, and Synchronous Speed" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", - "type": "Hydraulic", - "synchronous_speed": "Any", - "minimum_capacity": 0.0, - "maximum_capacity": 9.999, - "nominal_full_load_efficiency": 0.72, - "notes": "From 90.1-2019 Table G3.9.3, hydraulic elevator motor efficiency" - }, - { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 0, + "maximum_capacity": 1, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.825 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 1.001, + "maximum_capacity": 1.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 1.501, + "maximum_capacity": 2, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.84 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 2.001, + "maximum_capacity": 3, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 3.001, + "maximum_capacity": 5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.875 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 5.001, + "maximum_capacity": 7.5, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 7.501, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.895 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 10.001, + "maximum_capacity": 15, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 15.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.91 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 20.001, + "maximum_capacity": 25, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 25.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.924 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 40.001, + "maximum_capacity": 50, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.93 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 50.001, + "maximum_capacity": 60, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.936 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 60.001, + "maximum_capacity": 75, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.941 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 75.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 100.001, + "maximum_capacity": 125, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.945 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 125.001, + "maximum_capacity": 150, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": null, + "type": null, + "synchronous_speed": null, + "minimum_capacity": 150.001, + "maximum_capacity": 200, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.95 + }, + { + "number_of_poles": null, "type": "Hydraulic", - "synchronous_speed": "Any", - "minimum_capacity": 10.0, - "maximum_capacity": 19.999, - "nominal_full_load_efficiency": 0.75, - "notes": "From 90.1-2019 Table G3.9.3, hydraulic elevator motor efficiency" + "synchronous_speed": null, + "minimum_capacity": 0, + "maximum_capacity": 10, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.72 }, { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", + "number_of_poles": null, "type": "Hydraulic", - "synchronous_speed": "Any", - "minimum_capacity": 20.0, - "maximum_capacity": 29.999, - "nominal_full_load_efficiency": 0.78, - "notes": "From 90.1-2019 Table G3.9.3, hydraulic elevator motor efficiency" + "synchronous_speed": null, + "minimum_capacity": 10.001, + "maximum_capacity": 20, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.75 }, { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", + "number_of_poles": null, "type": "Hydraulic", - "synchronous_speed": "Any", - "minimum_capacity": 30.0, - "maximum_capacity": 39.999, - "nominal_full_load_efficiency": 0.78, - "notes": "From 90.1-2019 Table G3.9.3, hydraulic elevator motor efficiency" + "synchronous_speed": null, + "minimum_capacity": 20.001, + "maximum_capacity": 30, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.78 }, { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", + "number_of_poles": null, "type": "Hydraulic", - "synchronous_speed": "Any", - "minimum_capacity": 40.0, - "maximum_capacity": 99.999, - "nominal_full_load_efficiency": 0.80, - "notes": "From 90.1-2019 Table G3.9.3, hydraulic elevator motor efficiency" + "synchronous_speed": null, + "minimum_capacity": 30.001, + "maximum_capacity": 40, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.78 }, { - "template": "90.1-PRM-2019", - "number_of_poles": "Any", + "number_of_poles": null, "type": "Hydraulic", - "synchronous_speed": "Any", - "minimum_capacity": 100.0, - "maximum_capacity": 9999.0, - "nominal_full_load_efficiency": 0.80, - "notes": "From 90.1-2019 Table G3.9.3, hydraulic elevator motor efficiency" + "synchronous_speed": null, + "minimum_capacity": 40.001, + "maximum_capacity": 100, + "start_date": "1919-09-09T00:00:00+00:00", + "end_date": "2999-09-09T00:00:00+00:00", + "nominal_full_load_efficiency": 0.8 } ] } \ No newline at end of file