openstudio-standards 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. checksums.yaml +4 -4
  2. data/data/standards/OpenStudio_Standards.xlsx +0 -0
  3. data/data/standards/OpenStudio_Standards_boilers.json +62 -4
  4. data/data/standards/OpenStudio_Standards_chillers.json +778 -68
  5. data/data/standards/OpenStudio_Standards_construction_sets.json +52 -93
  6. data/data/standards/OpenStudio_Standards_curve_biquadratics.json +36 -36
  7. data/data/standards/OpenStudio_Standards_curve_quadratics.json +3 -3
  8. data/data/standards/OpenStudio_Standards_heat_pumps.json +840 -0
  9. data/data/standards/OpenStudio_Standards_heat_pumps_heating.json +352 -0
  10. data/data/standards/OpenStudio_Standards_heat_rejection.json +48 -0
  11. data/data/standards/OpenStudio_Standards_motors.json +270 -0
  12. data/data/standards/OpenStudio_Standards_space_types.json +10390 -2824
  13. data/data/standards/OpenStudio_Standards_unitary_acs.json +794 -18
  14. data/data/weather/USA_CO_Boulder-Broomfield-Jefferson.County.AP.724699_TMY3.ddy +538 -0
  15. data/data/weather/USA_CO_Boulder-Broomfield-Jefferson.County.AP.724699_TMY3.epw +8768 -0
  16. data/data/weather/USA_CO_Boulder-Broomfield-Jefferson.County.AP.724699_TMY3.stat +493 -0
  17. data/data/weather/USA_CO_Denver.Intl.AP.725650_TMY3.ddy +536 -0
  18. data/data/weather/USA_CO_Denver.Intl.AP.725650_TMY3.epw +8768 -0
  19. data/data/weather/USA_CO_Denver.Intl.AP.725650_TMY3.stat +554 -0
  20. data/data/weather/USA_CO_Fort.Collins.AWOS.724769_TMY3.ddy +536 -0
  21. data/data/weather/USA_CO_Fort.Collins.AWOS.724769_TMY3.epw +8768 -0
  22. data/data/weather/USA_CO_Fort.Collins.AWOS.724769_TMY3.stat +554 -0
  23. data/data/weather/envelope_info.csv +6 -0
  24. data/lib/openstudio-standards.rb +10 -11
  25. data/lib/openstudio-standards/btap/compliance.rb +251 -969
  26. data/lib/openstudio-standards/btap/envelope.rb +1 -1
  27. data/lib/openstudio-standards/btap/fileio.rb +37 -5
  28. data/lib/openstudio-standards/btap/geometry.rb +27 -17
  29. data/lib/openstudio-standards/btap/hvac.rb +80 -27
  30. data/lib/openstudio-standards/hvac_sizing/{HVACSizing.CoilHeatingDXMultiSpeed.rb → Siz.CoilHeatingDXMultiSpeed.rb} +0 -0
  31. data/lib/openstudio-standards/hvac_sizing/Siz.ControllerOutdoorAir.rb +30 -4
  32. data/lib/openstudio-standards/hvac_sizing/Siz.CoolingTowerTwoSpeed.rb +61 -5
  33. data/lib/openstudio-standards/hvac_sizing/Siz.CoolingTowerVariableSpeed.rb +37 -7
  34. data/lib/openstudio-standards/hvac_sizing/Siz.DistrictCooling.rb +27 -0
  35. data/lib/openstudio-standards/hvac_sizing/Siz.DistrictHeating.rb +27 -0
  36. data/lib/openstudio-standards/hvac_sizing/Siz.HeaderedPumpsConstantSpeed.rb +55 -0
  37. data/lib/openstudio-standards/hvac_sizing/Siz.HeaderedPumpsVariableSpeed.rb +55 -0
  38. data/lib/openstudio-standards/hvac_sizing/Siz.HeatingCoolingFuels.rb +51 -9
  39. data/lib/openstudio-standards/hvac_sizing/Siz.Model.rb +99 -17
  40. data/lib/openstudio-standards/hvac_sizing/Siz.PumpConstantSpeed.rb +1 -1
  41. data/lib/openstudio-standards/hvac_sizing/Siz.ThermalZone.rb +29 -6
  42. data/lib/openstudio-standards/hvac_sizing/Siz.WaterHeaterMixed.rb +16 -0
  43. data/lib/openstudio-standards/prototypes/Prototype.AirTerminalSingleDuctVAVReheat.rb +43 -48
  44. data/lib/openstudio-standards/prototypes/Prototype.ControllerWaterCoil.rb +5 -9
  45. data/lib/openstudio-standards/prototypes/Prototype.Fan.rb +68 -0
  46. data/lib/openstudio-standards/prototypes/Prototype.FanConstantVolume.rb +39 -43
  47. data/lib/openstudio-standards/prototypes/Prototype.FanOnOff.rb +49 -51
  48. data/lib/openstudio-standards/prototypes/Prototype.FanVariableVolume.rb +55 -61
  49. data/lib/openstudio-standards/prototypes/Prototype.FanZoneExhaust.rb +8 -10
  50. data/lib/openstudio-standards/prototypes/Prototype.HeatExchangerAirToAirSensibleAndLatent.rb +15 -20
  51. data/lib/openstudio-standards/prototypes/Prototype.Model.hvac.rb +330 -322
  52. data/lib/openstudio-standards/prototypes/Prototype.Model.rb +501 -446
  53. data/lib/openstudio-standards/prototypes/Prototype.Model.swh.rb +221 -230
  54. data/lib/openstudio-standards/prototypes/Prototype.add_objects.rb +0 -2
  55. data/lib/openstudio-standards/prototypes/Prototype.full_service_restaurant.rb +130 -137
  56. data/lib/openstudio-standards/prototypes/Prototype.high_rise_apartment.rb +374 -291
  57. data/lib/openstudio-standards/prototypes/Prototype.hospital.rb +146 -193
  58. data/lib/openstudio-standards/prototypes/Prototype.hvac_systems.rb +1315 -1113
  59. data/lib/openstudio-standards/prototypes/Prototype.large_hotel.rb +65 -88
  60. data/lib/openstudio-standards/prototypes/Prototype.large_office.rb +101 -156
  61. data/lib/openstudio-standards/prototypes/Prototype.medium_office.rb +46 -96
  62. data/lib/openstudio-standards/prototypes/Prototype.mid_rise_apartment.rb +113 -123
  63. data/lib/openstudio-standards/prototypes/Prototype.outpatient.rb +356 -345
  64. data/lib/openstudio-standards/prototypes/Prototype.primary_school.rb +48 -103
  65. data/lib/openstudio-standards/prototypes/Prototype.quick_service_restaurant.rb +115 -123
  66. data/lib/openstudio-standards/prototypes/Prototype.retail_standalone.rb +30 -39
  67. data/lib/openstudio-standards/prototypes/Prototype.retail_stripmall.rb +32 -45
  68. data/lib/openstudio-standards/prototypes/Prototype.secondary_school.rb +98 -258
  69. data/lib/openstudio-standards/prototypes/Prototype.small_hotel.rb +429 -474
  70. data/lib/openstudio-standards/prototypes/Prototype.small_office.rb +28 -36
  71. data/lib/openstudio-standards/prototypes/Prototype.strip_model.rb +7 -7
  72. data/lib/openstudio-standards/prototypes/Prototype.utilities.rb +172 -146
  73. data/lib/openstudio-standards/prototypes/Prototype.warehouse.rb +46 -53
  74. data/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb +885 -707
  75. data/lib/openstudio-standards/standards/Standards.AirTerminalSingleDuctParallelPIUReheat.rb +48 -57
  76. data/lib/openstudio-standards/standards/Standards.AirTerminalSingleDuctVAVReheat.rb +24 -31
  77. data/lib/openstudio-standards/standards/Standards.BoilerHotWater.rb +80 -93
  78. data/lib/openstudio-standards/standards/Standards.BuildingStory.rb +69 -0
  79. data/lib/openstudio-standards/standards/Standards.ChillerElectricEIR.rb +60 -72
  80. data/lib/openstudio-standards/standards/Standards.CoilCoolingDXMultiSpeed.rb +104 -108
  81. data/lib/openstudio-standards/standards/Standards.CoilCoolingDXSingleSpeed.rb +190 -198
  82. data/lib/openstudio-standards/standards/Standards.CoilCoolingDXTwoSpeed.rb +134 -146
  83. data/lib/openstudio-standards/standards/Standards.CoilHeatingDXMultiSpeed.rb +56 -60
  84. data/lib/openstudio-standards/standards/Standards.CoilHeatingDXSingleSpeed.rb +151 -161
  85. data/lib/openstudio-standards/standards/Standards.CoilHeatingGasMultiStage.rb +30 -34
  86. data/lib/openstudio-standards/standards/Standards.Construction.rb +116 -132
  87. data/lib/openstudio-standards/standards/Standards.CoolingTower.rb +138 -0
  88. data/lib/openstudio-standards/standards/Standards.CoolingTowerSingleSpeed.rb +11 -0
  89. data/lib/openstudio-standards/standards/Standards.CoolingTowerTwoSpeed.rb +11 -0
  90. data/lib/openstudio-standards/standards/Standards.CoolingTowerVariableSpeed.rb +16 -0
  91. data/lib/openstudio-standards/standards/Standards.Fan.rb +190 -236
  92. data/lib/openstudio-standards/standards/Standards.FanConstantVolume.rb +0 -2
  93. data/lib/openstudio-standards/standards/Standards.FanOnOff.rb +0 -2
  94. data/lib/openstudio-standards/standards/Standards.FanVariableVolume.rb +168 -14
  95. data/lib/openstudio-standards/standards/Standards.FanZoneExhaust.rb +0 -2
  96. data/lib/openstudio-standards/standards/Standards.HeaderedPumpsConstantSpeed.rb +33 -0
  97. data/lib/openstudio-standards/standards/Standards.HeaderedPumpsVariableSpeed.rb +83 -0
  98. data/lib/openstudio-standards/standards/Standards.HeatExchangerSensLat.rb +22 -0
  99. data/lib/openstudio-standards/standards/Standards.Model.rb +2385 -1622
  100. data/lib/openstudio-standards/standards/Standards.PlanarSurface.rb +83 -35
  101. data/lib/openstudio-standards/standards/Standards.PlantLoop.rb +805 -395
  102. data/lib/openstudio-standards/standards/Standards.Pump.rb +139 -119
  103. data/lib/openstudio-standards/standards/Standards.PumpConstantSpeed.rb +0 -2
  104. data/lib/openstudio-standards/standards/Standards.PumpVariableSpeed.rb +16 -15
  105. data/lib/openstudio-standards/standards/Standards.ScheduleCompact.rb +35 -0
  106. data/lib/openstudio-standards/standards/Standards.ScheduleConstant.rb +7 -13
  107. data/lib/openstudio-standards/standards/Standards.ScheduleRuleset.rb +144 -59
  108. data/lib/openstudio-standards/standards/Standards.Space.rb +1509 -1326
  109. data/lib/openstudio-standards/standards/Standards.SpaceType.rb +254 -262
  110. data/lib/openstudio-standards/standards/Standards.SubSurface.rb +105 -105
  111. data/lib/openstudio-standards/standards/Standards.Surface.rb +27 -31
  112. data/lib/openstudio-standards/standards/Standards.ThermalZone.rb +882 -157
  113. data/lib/openstudio-standards/standards/Standards.WaterHeaterMixed.rb +179 -69
  114. data/lib/openstudio-standards/standards/Standards.ZoneHVACComponent.rb +75 -0
  115. data/lib/openstudio-standards/utilities/logging.rb +31 -38
  116. data/lib/openstudio-standards/utilities/simulation.rb +118 -82
  117. data/lib/openstudio-standards/version.rb +1 -1
  118. data/lib/openstudio-standards/weather/Weather.Model.rb +382 -390
  119. data/lib/openstudio-standards/weather/Weather.stat_file.rb +159 -78
  120. metadata +59 -6
@@ -4,6 +4,8 @@
4
4
  "template": "DOE Ref Pre-1980",
5
5
  "equipment_type": "Open Cooling Tower",
6
6
  "fan_type": "Centrifugal",
7
+ "start_date": "9/9/1919",
8
+ "end_date": "2999-09-09T00:00:00+00:00",
7
9
  "minimum_performance": 20.0,
8
10
  "notes": "From 90.1-2004 Table 6.8.1G"
9
11
  },
@@ -11,6 +13,8 @@
11
13
  "template": "DOE Ref Pre-1980",
12
14
  "equipment_type": "Open Cooling Tower",
13
15
  "fan_type": "Propeller or Axial",
16
+ "start_date": "9/9/1919",
17
+ "end_date": "2999-09-09T00:00:00+00:00",
14
18
  "minimum_performance": 38.2,
15
19
  "notes": "From 90.1-2004 Table 6.8.1G"
16
20
  },
@@ -18,6 +22,8 @@
18
22
  "template": "DOE Ref Pre-1980",
19
23
  "equipment_type": "Closed Cooling Tower",
20
24
  "fan_type": "Centrifugal",
25
+ "start_date": "9/9/1919",
26
+ "end_date": "2999-09-09T00:00:00+00:00",
21
27
  "minimum_performance": 20.0,
22
28
  "notes": "From 90.1-2004 Table 6.8.1G"
23
29
  },
@@ -25,6 +31,8 @@
25
31
  "template": "DOE Ref Pre-1980",
26
32
  "equipment_type": "Closed Cooling Tower",
27
33
  "fan_type": "Propeller or Axial",
34
+ "start_date": "9/9/1919",
35
+ "end_date": "2999-09-09T00:00:00+00:00",
28
36
  "minimum_performance": 38.2,
29
37
  "notes": "From 90.1-2004 Table 6.8.1G"
30
38
  },
@@ -32,6 +40,8 @@
32
40
  "template": "DOE Ref 1980-2004",
33
41
  "equipment_type": "Open Cooling Tower",
34
42
  "fan_type": "Centrifugal",
43
+ "start_date": "9/9/1919",
44
+ "end_date": "2999-09-09T00:00:00+00:00",
35
45
  "minimum_performance": 20.0,
36
46
  "notes": "From 90.1-2004 Table 6.8.1G"
37
47
  },
@@ -39,6 +49,8 @@
39
49
  "template": "DOE Ref 1980-2004",
40
50
  "equipment_type": "Open Cooling Tower",
41
51
  "fan_type": "Propeller or Axial",
52
+ "start_date": "9/9/1919",
53
+ "end_date": "2999-09-09T00:00:00+00:00",
42
54
  "minimum_performance": 38.2,
43
55
  "notes": "From 90.1-2004 Table 6.8.1G"
44
56
  },
@@ -46,6 +58,8 @@
46
58
  "template": "DOE Ref 1980-2004",
47
59
  "equipment_type": "Closed Cooling Tower",
48
60
  "fan_type": "Centrifugal",
61
+ "start_date": "9/9/1919",
62
+ "end_date": "2999-09-09T00:00:00+00:00",
49
63
  "minimum_performance": 20.0,
50
64
  "notes": "From 90.1-2004 Table 6.8.1G"
51
65
  },
@@ -53,6 +67,8 @@
53
67
  "template": "DOE Ref 1980-2004",
54
68
  "equipment_type": "Closed Cooling Tower",
55
69
  "fan_type": "Propeller or Axial",
70
+ "start_date": "9/9/1919",
71
+ "end_date": "2999-09-09T00:00:00+00:00",
56
72
  "minimum_performance": 38.2,
57
73
  "notes": "From 90.1-2004 Table 6.8.1G"
58
74
  },
@@ -60,6 +76,8 @@
60
76
  "template": "90.1-2004",
61
77
  "equipment_type": "Open Cooling Tower",
62
78
  "fan_type": "Centrifugal",
79
+ "start_date": "9/9/1919",
80
+ "end_date": "2999-09-09T00:00:00+00:00",
63
81
  "minimum_performance": 20.0,
64
82
  "notes": "From 90.1-2004 Table 6.8.1G"
65
83
  },
@@ -67,6 +85,8 @@
67
85
  "template": "90.1-2004",
68
86
  "equipment_type": "Open Cooling Tower",
69
87
  "fan_type": "Propeller or Axial",
88
+ "start_date": "9/9/1919",
89
+ "end_date": "2999-09-09T00:00:00+00:00",
70
90
  "minimum_performance": 38.2,
71
91
  "notes": "From 90.1-2004 Table 6.8.1G"
72
92
  },
@@ -74,6 +94,8 @@
74
94
  "template": "90.1-2004",
75
95
  "equipment_type": "Closed Cooling Tower",
76
96
  "fan_type": "Centrifugal",
97
+ "start_date": "9/9/1919",
98
+ "end_date": "2999-09-09T00:00:00+00:00",
77
99
  "minimum_performance": 20.0,
78
100
  "notes": "From 90.1-2004 Table 6.8.1G"
79
101
  },
@@ -81,6 +103,8 @@
81
103
  "template": "90.1-2004",
82
104
  "equipment_type": "Closed Cooling Tower",
83
105
  "fan_type": "Propeller or Axial",
106
+ "start_date": "9/9/1919",
107
+ "end_date": "2999-09-09T00:00:00+00:00",
84
108
  "minimum_performance": 38.2,
85
109
  "notes": "From 90.1-2004 Table 6.8.1G"
86
110
  },
@@ -88,6 +112,8 @@
88
112
  "template": "90.1-2007",
89
113
  "equipment_type": "Open Cooling Tower",
90
114
  "fan_type": "Centrifugal",
115
+ "start_date": "9/9/1919",
116
+ "end_date": "2999-09-09T00:00:00+00:00",
91
117
  "minimum_performance": 20.0,
92
118
  "notes": "From 90.1-2007 Table 6.8.1G"
93
119
  },
@@ -95,6 +121,8 @@
95
121
  "template": "90.1-2007",
96
122
  "equipment_type": "Open Cooling Tower",
97
123
  "fan_type": "Propeller or Axial",
124
+ "start_date": "9/9/1919",
125
+ "end_date": "2999-09-09T00:00:00+00:00",
98
126
  "minimum_performance": 38.2,
99
127
  "notes": "From 90.1-2007 Table 6.8.1G"
100
128
  },
@@ -102,6 +130,8 @@
102
130
  "template": "90.1-2007",
103
131
  "equipment_type": "Closed Cooling Tower",
104
132
  "fan_type": "Centrifugal",
133
+ "start_date": "9/9/1919",
134
+ "end_date": "2999-09-09T00:00:00+00:00",
105
135
  "minimum_performance": 20.0,
106
136
  "notes": "From 90.1-2007 Table 6.8.1G"
107
137
  },
@@ -109,6 +139,8 @@
109
139
  "template": "90.1-2007",
110
140
  "equipment_type": "Closed Cooling Tower",
111
141
  "fan_type": "Propeller or Axial",
142
+ "start_date": "9/9/1919",
143
+ "end_date": "2999-09-09T00:00:00+00:00",
112
144
  "minimum_performance": 38.2,
113
145
  "notes": "From 90.1-2007 Table 6.8.1G"
114
146
  },
@@ -116,6 +148,8 @@
116
148
  "template": "90.1-2010",
117
149
  "equipment_type": "Open Cooling Tower",
118
150
  "fan_type": "Centrifugal",
151
+ "start_date": "9/9/1919",
152
+ "end_date": "2999-09-09T00:00:00+00:00",
119
153
  "minimum_performance": 20.0,
120
154
  "notes": "From 90.1-2010 Table 6.8.1 G"
121
155
  },
@@ -123,6 +157,8 @@
123
157
  "template": "90.1-2010",
124
158
  "equipment_type": "Open Cooling Tower",
125
159
  "fan_type": "Propeller or Axial",
160
+ "start_date": "9/9/1919",
161
+ "end_date": "2999-09-09T00:00:00+00:00",
126
162
  "minimum_performance": 38.2,
127
163
  "notes": "From 90.1-2010 Table 6.8.1 G"
128
164
  },
@@ -130,6 +166,8 @@
130
166
  "template": "90.1-2010",
131
167
  "equipment_type": "Closed Cooling Tower",
132
168
  "fan_type": "Centrifugal",
169
+ "start_date": "9/9/1919",
170
+ "end_date": "2999-09-09T00:00:00+00:00",
133
171
  "minimum_performance": 7.0,
134
172
  "notes": "From 90.1-2010 Table 6.8.1 G"
135
173
  },
@@ -137,6 +175,8 @@
137
175
  "template": "90.1-2010",
138
176
  "equipment_type": "Closed Cooling Tower",
139
177
  "fan_type": "Propeller or Axial",
178
+ "start_date": "9/9/1919",
179
+ "end_date": "2999-09-09T00:00:00+00:00",
140
180
  "minimum_performance": 14.0,
141
181
  "notes": "From 90.1-2010 Table 6.8.1 G"
142
182
  },
@@ -144,6 +184,8 @@
144
184
  "template": "90.1-2013",
145
185
  "equipment_type": "Open Cooling Tower",
146
186
  "fan_type": "Centrifugal",
187
+ "start_date": "9/9/1919",
188
+ "end_date": "2999-09-09T00:00:00+00:00",
147
189
  "minimum_performance": 20.0,
148
190
  "notes": "From 90.1-2013 Table 6.8.1-7"
149
191
  },
@@ -151,6 +193,8 @@
151
193
  "template": "90.1-2013",
152
194
  "equipment_type": "Open Cooling Tower",
153
195
  "fan_type": "Propeller or Axial",
196
+ "start_date": "9/9/1919",
197
+ "end_date": "2999-09-09T00:00:00+00:00",
154
198
  "minimum_performance": 40.2,
155
199
  "notes": "From 90.1-2013 Table 6.8.1-7"
156
200
  },
@@ -158,6 +202,8 @@
158
202
  "template": "90.1-2013",
159
203
  "equipment_type": "Closed Cooling Tower",
160
204
  "fan_type": "Centrifugal",
205
+ "start_date": "9/9/1919",
206
+ "end_date": "2999-09-09T00:00:00+00:00",
161
207
  "minimum_performance": 7.0,
162
208
  "notes": "From 90.1-2013 Table 6.8.1-7"
163
209
  },
@@ -165,6 +211,8 @@
165
211
  "template": "90.1-2013",
166
212
  "equipment_type": "Closed Cooling Tower",
167
213
  "fan_type": "Propeller or Axial",
214
+ "start_date": "9/9/1919",
215
+ "end_date": "2999-09-09T00:00:00+00:00",
168
216
  "minimum_performance": 14.0,
169
217
  "notes": "From 90.1-2013 Table 6.8.1-7"
170
218
  }
@@ -1619,6 +1619,276 @@
1619
1619
  "maximum_capacity": 9999.0,
1620
1620
  "nominal_full_load_efficiency": 0.954,
1621
1621
  "notes": null
1622
+ },
1623
+ {
1624
+ "template": "NECB 2011",
1625
+ "number_of_poles": 4.0,
1626
+ "type": "Enclosed",
1627
+ "synchronous_speed": 1800.0,
1628
+ "minimum_capacity": 0.0,
1629
+ "maximum_capacity": 0.08333,
1630
+ "nominal_full_load_efficiency": 0.29,
1631
+ "notes": "NECB does not specify a motor effieciency for pumps.. the prototypes will use the same as the 90.1 2013 for consistancy."
1632
+ },
1633
+ {
1634
+ "template": "NECB 2011",
1635
+ "number_of_poles": 4.0,
1636
+ "type": "Enclosed",
1637
+ "synchronous_speed": 1800.0,
1638
+ "minimum_capacity": 0.08334,
1639
+ "maximum_capacity": 0.999,
1640
+ "nominal_full_load_efficiency": 0.7,
1641
+ "notes": null
1642
+ },
1643
+ {
1644
+ "template": "NECB 2011",
1645
+ "number_of_poles": 4.0,
1646
+ "type": "Enclosed",
1647
+ "synchronous_speed": 1800.0,
1648
+ "minimum_capacity": 1.0,
1649
+ "maximum_capacity": 1.499,
1650
+ "nominal_full_load_efficiency": 0.855,
1651
+ "notes": null
1652
+ },
1653
+ {
1654
+ "template": "NECB 2011",
1655
+ "number_of_poles": 4.0,
1656
+ "type": "Enclosed",
1657
+ "synchronous_speed": 1800.0,
1658
+ "minimum_capacity": 1.5,
1659
+ "maximum_capacity": 1.999,
1660
+ "nominal_full_load_efficiency": 0.865,
1661
+ "notes": null
1662
+ },
1663
+ {
1664
+ "template": "NECB 2011",
1665
+ "number_of_poles": 4.0,
1666
+ "type": "Enclosed",
1667
+ "synchronous_speed": 1800.0,
1668
+ "minimum_capacity": 2.0,
1669
+ "maximum_capacity": 2.999,
1670
+ "nominal_full_load_efficiency": 0.865,
1671
+ "notes": null
1672
+ },
1673
+ {
1674
+ "template": "NECB 2011",
1675
+ "number_of_poles": 4.0,
1676
+ "type": "Enclosed",
1677
+ "synchronous_speed": 1800.0,
1678
+ "minimum_capacity": 3.0,
1679
+ "maximum_capacity": 4.999,
1680
+ "nominal_full_load_efficiency": 0.895,
1681
+ "notes": null
1682
+ },
1683
+ {
1684
+ "template": "NECB 2011",
1685
+ "number_of_poles": 4.0,
1686
+ "type": "Enclosed",
1687
+ "synchronous_speed": 1800.0,
1688
+ "minimum_capacity": 5.0,
1689
+ "maximum_capacity": 7.499,
1690
+ "nominal_full_load_efficiency": 0.895,
1691
+ "notes": null
1692
+ },
1693
+ {
1694
+ "template": "NECB 2011",
1695
+ "number_of_poles": 4.0,
1696
+ "type": "Enclosed",
1697
+ "synchronous_speed": 1800.0,
1698
+ "minimum_capacity": 7.5,
1699
+ "maximum_capacity": 9.999,
1700
+ "nominal_full_load_efficiency": 0.917,
1701
+ "notes": null
1702
+ },
1703
+ {
1704
+ "template": "NECB 2011",
1705
+ "number_of_poles": 4.0,
1706
+ "type": "Enclosed",
1707
+ "synchronous_speed": 1800.0,
1708
+ "minimum_capacity": 10.0,
1709
+ "maximum_capacity": 14.999,
1710
+ "nominal_full_load_efficiency": 0.917,
1711
+ "notes": null
1712
+ },
1713
+ {
1714
+ "template": "NECB 2011",
1715
+ "number_of_poles": 4.0,
1716
+ "type": "Enclosed",
1717
+ "synchronous_speed": 1800.0,
1718
+ "minimum_capacity": 15.0,
1719
+ "maximum_capacity": 19.999,
1720
+ "nominal_full_load_efficiency": 0.924,
1721
+ "notes": null
1722
+ },
1723
+ {
1724
+ "template": "NECB 2011",
1725
+ "number_of_poles": 4.0,
1726
+ "type": "Enclosed",
1727
+ "synchronous_speed": 1800.0,
1728
+ "minimum_capacity": 20.0,
1729
+ "maximum_capacity": 24.999,
1730
+ "nominal_full_load_efficiency": 0.93,
1731
+ "notes": null
1732
+ },
1733
+ {
1734
+ "template": "NECB 2011",
1735
+ "number_of_poles": 4.0,
1736
+ "type": "Enclosed",
1737
+ "synchronous_speed": 1800.0,
1738
+ "minimum_capacity": 25.0,
1739
+ "maximum_capacity": 29.999,
1740
+ "nominal_full_load_efficiency": 0.936,
1741
+ "notes": null
1742
+ },
1743
+ {
1744
+ "template": "NECB 2011",
1745
+ "number_of_poles": 4.0,
1746
+ "type": "Enclosed",
1747
+ "synchronous_speed": 1800.0,
1748
+ "minimum_capacity": 30.0,
1749
+ "maximum_capacity": 39.999,
1750
+ "nominal_full_load_efficiency": 0.936,
1751
+ "notes": null
1752
+ },
1753
+ {
1754
+ "template": "NECB 2011",
1755
+ "number_of_poles": 4.0,
1756
+ "type": "Enclosed",
1757
+ "synchronous_speed": 1800.0,
1758
+ "minimum_capacity": 40.0,
1759
+ "maximum_capacity": 49.999,
1760
+ "nominal_full_load_efficiency": 0.941,
1761
+ "notes": null
1762
+ },
1763
+ {
1764
+ "template": "NECB 2011",
1765
+ "number_of_poles": 4.0,
1766
+ "type": "Enclosed",
1767
+ "synchronous_speed": 1800.0,
1768
+ "minimum_capacity": 50.0,
1769
+ "maximum_capacity": 59.999,
1770
+ "nominal_full_load_efficiency": 0.945,
1771
+ "notes": null
1772
+ },
1773
+ {
1774
+ "template": "NECB 2011",
1775
+ "number_of_poles": 4.0,
1776
+ "type": "Enclosed",
1777
+ "synchronous_speed": 1800.0,
1778
+ "minimum_capacity": 60.0,
1779
+ "maximum_capacity": 74.999,
1780
+ "nominal_full_load_efficiency": 0.95,
1781
+ "notes": null
1782
+ },
1783
+ {
1784
+ "template": "NECB 2011",
1785
+ "number_of_poles": 4.0,
1786
+ "type": "Enclosed",
1787
+ "synchronous_speed": 1800.0,
1788
+ "minimum_capacity": 75.0,
1789
+ "maximum_capacity": 99.999,
1790
+ "nominal_full_load_efficiency": 0.954,
1791
+ "notes": null
1792
+ },
1793
+ {
1794
+ "template": "NECB 2011",
1795
+ "number_of_poles": 4.0,
1796
+ "type": "Enclosed",
1797
+ "synchronous_speed": 1800.0,
1798
+ "minimum_capacity": 100.0,
1799
+ "maximum_capacity": 124.999,
1800
+ "nominal_full_load_efficiency": 0.954,
1801
+ "notes": null
1802
+ },
1803
+ {
1804
+ "template": "NECB 2011",
1805
+ "number_of_poles": 4.0,
1806
+ "type": "Enclosed",
1807
+ "synchronous_speed": 1800.0,
1808
+ "minimum_capacity": 125.0,
1809
+ "maximum_capacity": 149.999,
1810
+ "nominal_full_load_efficiency": 0.954,
1811
+ "notes": null
1812
+ },
1813
+ {
1814
+ "template": "NECB 2011",
1815
+ "number_of_poles": 4.0,
1816
+ "type": "Enclosed",
1817
+ "synchronous_speed": 1800.0,
1818
+ "minimum_capacity": 150.0,
1819
+ "maximum_capacity": 199.999,
1820
+ "nominal_full_load_efficiency": 0.958,
1821
+ "notes": null
1822
+ },
1823
+ {
1824
+ "template": "NECB 2011",
1825
+ "number_of_poles": 4.0,
1826
+ "type": "Enclosed",
1827
+ "synchronous_speed": 1800.0,
1828
+ "minimum_capacity": 200.0,
1829
+ "maximum_capacity": 249.999,
1830
+ "nominal_full_load_efficiency": 0.962,
1831
+ "notes": null
1832
+ },
1833
+ {
1834
+ "template": "NECB 2011",
1835
+ "number_of_poles": 4.0,
1836
+ "type": "Enclosed",
1837
+ "synchronous_speed": 1800.0,
1838
+ "minimum_capacity": 250.0,
1839
+ "maximum_capacity": 299.999,
1840
+ "nominal_full_load_efficiency": 0.95,
1841
+ "notes": null
1842
+ },
1843
+ {
1844
+ "template": "NECB 2011",
1845
+ "number_of_poles": 4.0,
1846
+ "type": "Enclosed",
1847
+ "synchronous_speed": 1800.0,
1848
+ "minimum_capacity": 300.0,
1849
+ "maximum_capacity": 349.999,
1850
+ "nominal_full_load_efficiency": 0.954,
1851
+ "notes": null
1852
+ },
1853
+ {
1854
+ "template": "NECB 2011",
1855
+ "number_of_poles": 4.0,
1856
+ "type": "Enclosed",
1857
+ "synchronous_speed": 1800.0,
1858
+ "minimum_capacity": 350.0,
1859
+ "maximum_capacity": 399.999,
1860
+ "nominal_full_load_efficiency": 0.954,
1861
+ "notes": null
1862
+ },
1863
+ {
1864
+ "template": "NECB 2011",
1865
+ "number_of_poles": 4.0,
1866
+ "type": "Enclosed",
1867
+ "synchronous_speed": 1800.0,
1868
+ "minimum_capacity": 400.0,
1869
+ "maximum_capacity": 449.999,
1870
+ "nominal_full_load_efficiency": 0.954,
1871
+ "notes": null
1872
+ },
1873
+ {
1874
+ "template": "NECB 2011",
1875
+ "number_of_poles": 4.0,
1876
+ "type": "Enclosed",
1877
+ "synchronous_speed": 1800.0,
1878
+ "minimum_capacity": 450.0,
1879
+ "maximum_capacity": 499.999,
1880
+ "nominal_full_load_efficiency": 0.954,
1881
+ "notes": null
1882
+ },
1883
+ {
1884
+ "template": "NECB 2011",
1885
+ "number_of_poles": 4.0,
1886
+ "type": "Enclosed",
1887
+ "synchronous_speed": 1800.0,
1888
+ "minimum_capacity": 500.0,
1889
+ "maximum_capacity": 9999.0,
1890
+ "nominal_full_load_efficiency": 0.954,
1891
+ "notes": null
1622
1892
  }
1623
1893
  ]
1624
1894
  }