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
@@ -6,9 +6,13 @@
6
6
  "subcategory": "Single Package",
7
7
  "minimum_capacity": 0.0,
8
8
  "maximum_capacity": 65000.0,
9
+ "start_date": "9/9/1919",
10
+ "end_date": "2999-09-09T00:00:00+00:00",
9
11
  "minimum_heating_seasonal_performance_factor": null,
10
12
  "minimum_coefficient_of_performance_heating": null,
11
13
  "minimum_energy_efficiency_ratio": 8.9,
14
+ "pthp_cop_coefficient_1": null,
15
+ "pthp_cop_coefficient_2": null,
12
16
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
13
17
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
14
18
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -22,9 +26,13 @@
22
26
  "subcategory": "Split System",
23
27
  "minimum_capacity": 0.0,
24
28
  "maximum_capacity": 65000.0,
29
+ "start_date": "9/9/1919",
30
+ "end_date": "2999-09-09T00:00:00+00:00",
25
31
  "minimum_heating_seasonal_performance_factor": null,
26
32
  "minimum_coefficient_of_performance_heating": null,
27
33
  "minimum_energy_efficiency_ratio": 8.9,
34
+ "pthp_cop_coefficient_1": null,
35
+ "pthp_cop_coefficient_2": null,
28
36
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
29
37
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
30
38
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -38,9 +46,13 @@
38
46
  "subcategory": "Single Package",
39
47
  "minimum_capacity": 65001.0,
40
48
  "maximum_capacity": 238840.0,
49
+ "start_date": "9/9/1919",
50
+ "end_date": "2999-09-09T00:00:00+00:00",
41
51
  "minimum_heating_seasonal_performance_factor": null,
42
52
  "minimum_coefficient_of_performance_heating": null,
43
53
  "minimum_energy_efficiency_ratio": 9.5,
54
+ "pthp_cop_coefficient_1": null,
55
+ "pthp_cop_coefficient_2": null,
44
56
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
45
57
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
46
58
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -54,9 +66,13 @@
54
66
  "subcategory": "Split System",
55
67
  "minimum_capacity": 65001.0,
56
68
  "maximum_capacity": 238840.0,
69
+ "start_date": "9/9/1919",
70
+ "end_date": "2999-09-09T00:00:00+00:00",
57
71
  "minimum_heating_seasonal_performance_factor": null,
58
72
  "minimum_coefficient_of_performance_heating": null,
59
73
  "minimum_energy_efficiency_ratio": 9.5,
74
+ "pthp_cop_coefficient_1": null,
75
+ "pthp_cop_coefficient_2": null,
60
76
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
61
77
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
62
78
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -70,9 +86,13 @@
70
86
  "subcategory": "Single Package",
71
87
  "minimum_capacity": 238841.0,
72
88
  "maximum_capacity": 9999999.0,
89
+ "start_date": "9/9/1919",
90
+ "end_date": "2999-09-09T00:00:00+00:00",
73
91
  "minimum_heating_seasonal_performance_factor": null,
74
92
  "minimum_coefficient_of_performance_heating": null,
75
93
  "minimum_energy_efficiency_ratio": 9.2,
94
+ "pthp_cop_coefficient_1": null,
95
+ "pthp_cop_coefficient_2": null,
76
96
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
77
97
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
78
98
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -86,9 +106,13 @@
86
106
  "subcategory": "Split System",
87
107
  "minimum_capacity": 238841.0,
88
108
  "maximum_capacity": 9999999.0,
109
+ "start_date": "9/9/1919",
110
+ "end_date": "2999-09-09T00:00:00+00:00",
89
111
  "minimum_heating_seasonal_performance_factor": null,
90
112
  "minimum_coefficient_of_performance_heating": null,
91
113
  "minimum_energy_efficiency_ratio": 9.2,
114
+ "pthp_cop_coefficient_1": null,
115
+ "pthp_cop_coefficient_2": null,
92
116
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
93
117
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
94
118
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -102,9 +126,13 @@
102
126
  "subcategory": "Split System",
103
127
  "minimum_capacity": 0.0,
104
128
  "maximum_capacity": 64999.0,
129
+ "start_date": "9/9/1919",
130
+ "end_date": "2999-09-09T00:00:00+00:00",
105
131
  "minimum_heating_seasonal_performance_factor": 6.8,
106
132
  "minimum_coefficient_of_performance_heating": null,
107
133
  "minimum_energy_efficiency_ratio": null,
134
+ "pthp_cop_coefficient_1": null,
135
+ "pthp_cop_coefficient_2": null,
108
136
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
109
137
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
110
138
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -118,9 +146,13 @@
118
146
  "subcategory": "Single Package",
119
147
  "minimum_capacity": 0.0,
120
148
  "maximum_capacity": 64999.0,
149
+ "start_date": "9/9/1919",
150
+ "end_date": "2999-09-09T00:00:00+00:00",
121
151
  "minimum_heating_seasonal_performance_factor": 6.6,
122
152
  "minimum_coefficient_of_performance_heating": null,
123
153
  "minimum_energy_efficiency_ratio": null,
154
+ "pthp_cop_coefficient_1": null,
155
+ "pthp_cop_coefficient_2": null,
124
156
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
125
157
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
126
158
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -134,9 +166,13 @@
134
166
  "subcategory": "Split System",
135
167
  "minimum_capacity": 0.0,
136
168
  "maximum_capacity": 29999.0,
169
+ "start_date": "9/9/1919",
170
+ "end_date": "2999-09-09T00:00:00+00:00",
137
171
  "minimum_heating_seasonal_performance_factor": 6.8,
138
172
  "minimum_coefficient_of_performance_heating": null,
139
173
  "minimum_energy_efficiency_ratio": null,
174
+ "pthp_cop_coefficient_1": null,
175
+ "pthp_cop_coefficient_2": null,
140
176
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
141
177
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
142
178
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -150,9 +186,13 @@
150
186
  "subcategory": "Single Package",
151
187
  "minimum_capacity": 0.0,
152
188
  "maximum_capacity": 29999.0,
189
+ "start_date": "9/9/1919",
190
+ "end_date": "2999-09-09T00:00:00+00:00",
153
191
  "minimum_heating_seasonal_performance_factor": 6.6,
154
192
  "minimum_coefficient_of_performance_heating": null,
155
193
  "minimum_energy_efficiency_ratio": null,
194
+ "pthp_cop_coefficient_1": null,
195
+ "pthp_cop_coefficient_2": null,
156
196
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
157
197
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
158
198
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -166,9 +206,13 @@
166
206
  "subcategory": "Split System",
167
207
  "minimum_capacity": 0.0,
168
208
  "maximum_capacity": 64999.0,
209
+ "start_date": "9/9/1919",
210
+ "end_date": "2999-09-09T00:00:00+00:00",
169
211
  "minimum_heating_seasonal_performance_factor": 6.8,
170
212
  "minimum_coefficient_of_performance_heating": null,
171
213
  "minimum_energy_efficiency_ratio": null,
214
+ "pthp_cop_coefficient_1": null,
215
+ "pthp_cop_coefficient_2": null,
172
216
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
173
217
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
174
218
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -182,9 +226,13 @@
182
226
  "subcategory": "Single Package",
183
227
  "minimum_capacity": 65000.0,
184
228
  "maximum_capacity": 134999.0,
229
+ "start_date": "9/9/1919",
230
+ "end_date": "2999-09-09T00:00:00+00:00",
185
231
  "minimum_heating_seasonal_performance_factor": null,
186
232
  "minimum_coefficient_of_performance_heating": 3.2,
187
233
  "minimum_energy_efficiency_ratio": null,
234
+ "pthp_cop_coefficient_1": null,
235
+ "pthp_cop_coefficient_2": null,
188
236
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
189
237
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
190
238
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -198,9 +246,13 @@
198
246
  "subcategory": "Single Package",
199
247
  "minimum_capacity": 135000.0,
200
248
  "maximum_capacity": 9999999.0,
249
+ "start_date": "9/9/1919",
250
+ "end_date": "2999-09-09T00:00:00+00:00",
201
251
  "minimum_heating_seasonal_performance_factor": null,
202
252
  "minimum_coefficient_of_performance_heating": 3.1,
203
253
  "minimum_energy_efficiency_ratio": null,
254
+ "pthp_cop_coefficient_1": null,
255
+ "pthp_cop_coefficient_2": null,
204
256
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
205
257
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
206
258
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -208,15 +260,39 @@
208
260
  "heat_plf_fplr": "DXHEAT-NECB2011-REF-PLFFPLR",
209
261
  "notes": "From 90.1-2004 since no DOE Reference Buildings had heat pumps"
210
262
  },
263
+ {
264
+ "template": "DOE Ref Pre-1980",
265
+ "cooling_type": "AirCooled",
266
+ "subcategory": "PTHP",
267
+ "minimum_capacity": 0.0,
268
+ "maximum_capacity": 9999999.0,
269
+ "start_date": "9/9/1919",
270
+ "end_date": "2999-09-09T00:00:00+00:00",
271
+ "minimum_heating_seasonal_performance_factor": null,
272
+ "minimum_coefficient_of_performance_heating": null,
273
+ "minimum_energy_efficiency_ratio": null,
274
+ "pthp_cop_coefficient_1": 2.9,
275
+ "pthp_cop_coefficient_2": 0.026,
276
+ "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
277
+ "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
278
+ "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
279
+ "heat_eir_fflow": "DXHEAT-NECB2011-REF-EIRFFLOW",
280
+ "heat_plf_fplr": "DXHEAT-NECB2011-REF-PLFFPLR",
281
+ "notes": "From 90.1-1989 Table 10-4A"
282
+ },
211
283
  {
212
284
  "template": "DOE Ref 1980-2004",
213
285
  "cooling_type": "AirCooled",
214
286
  "subcategory": "Split System",
215
287
  "minimum_capacity": 0.0,
216
288
  "maximum_capacity": 64999.0,
289
+ "start_date": "9/9/1919",
290
+ "end_date": "2999-09-09T00:00:00+00:00",
217
291
  "minimum_heating_seasonal_performance_factor": 6.8,
218
292
  "minimum_coefficient_of_performance_heating": null,
219
293
  "minimum_energy_efficiency_ratio": null,
294
+ "pthp_cop_coefficient_1": null,
295
+ "pthp_cop_coefficient_2": null,
220
296
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
221
297
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
222
298
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -230,9 +306,13 @@
230
306
  "subcategory": "Single Package",
231
307
  "minimum_capacity": 0.0,
232
308
  "maximum_capacity": 64999.0,
309
+ "start_date": "9/9/1919",
310
+ "end_date": "2999-09-09T00:00:00+00:00",
233
311
  "minimum_heating_seasonal_performance_factor": 6.6,
234
312
  "minimum_coefficient_of_performance_heating": null,
235
313
  "minimum_energy_efficiency_ratio": null,
314
+ "pthp_cop_coefficient_1": null,
315
+ "pthp_cop_coefficient_2": null,
236
316
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
237
317
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
238
318
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -246,9 +326,13 @@
246
326
  "subcategory": "Split System",
247
327
  "minimum_capacity": 0.0,
248
328
  "maximum_capacity": 29999.0,
329
+ "start_date": "9/9/1919",
330
+ "end_date": "2999-09-09T00:00:00+00:00",
249
331
  "minimum_heating_seasonal_performance_factor": 6.8,
250
332
  "minimum_coefficient_of_performance_heating": null,
251
333
  "minimum_energy_efficiency_ratio": null,
334
+ "pthp_cop_coefficient_1": null,
335
+ "pthp_cop_coefficient_2": null,
252
336
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
253
337
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
254
338
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -262,9 +346,13 @@
262
346
  "subcategory": "Single Package",
263
347
  "minimum_capacity": 0.0,
264
348
  "maximum_capacity": 29999.0,
349
+ "start_date": "9/9/1919",
350
+ "end_date": "2999-09-09T00:00:00+00:00",
265
351
  "minimum_heating_seasonal_performance_factor": 6.6,
266
352
  "minimum_coefficient_of_performance_heating": null,
267
353
  "minimum_energy_efficiency_ratio": null,
354
+ "pthp_cop_coefficient_1": null,
355
+ "pthp_cop_coefficient_2": null,
268
356
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
269
357
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
270
358
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -278,9 +366,13 @@
278
366
  "subcategory": "Split System",
279
367
  "minimum_capacity": 0.0,
280
368
  "maximum_capacity": 64999.0,
369
+ "start_date": "9/9/1919",
370
+ "end_date": "2999-09-09T00:00:00+00:00",
281
371
  "minimum_heating_seasonal_performance_factor": 6.8,
282
372
  "minimum_coefficient_of_performance_heating": null,
283
373
  "minimum_energy_efficiency_ratio": null,
374
+ "pthp_cop_coefficient_1": null,
375
+ "pthp_cop_coefficient_2": null,
284
376
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
285
377
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
286
378
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -294,9 +386,13 @@
294
386
  "subcategory": "Single Package",
295
387
  "minimum_capacity": 65000.0,
296
388
  "maximum_capacity": 134999.0,
389
+ "start_date": "9/9/1919",
390
+ "end_date": "2999-09-09T00:00:00+00:00",
297
391
  "minimum_heating_seasonal_performance_factor": null,
298
392
  "minimum_coefficient_of_performance_heating": 3.2,
299
393
  "minimum_energy_efficiency_ratio": null,
394
+ "pthp_cop_coefficient_1": null,
395
+ "pthp_cop_coefficient_2": null,
300
396
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
301
397
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
302
398
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -310,9 +406,13 @@
310
406
  "subcategory": "Single Package",
311
407
  "minimum_capacity": 135000.0,
312
408
  "maximum_capacity": 9999999.0,
409
+ "start_date": "9/9/1919",
410
+ "end_date": "2999-09-09T00:00:00+00:00",
313
411
  "minimum_heating_seasonal_performance_factor": null,
314
412
  "minimum_coefficient_of_performance_heating": 3.1,
315
413
  "minimum_energy_efficiency_ratio": null,
414
+ "pthp_cop_coefficient_1": null,
415
+ "pthp_cop_coefficient_2": null,
316
416
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
317
417
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
318
418
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -320,15 +420,39 @@
320
420
  "heat_plf_fplr": "DXHEAT-NECB2011-REF-PLFFPLR",
321
421
  "notes": "From 90.1-2004 since no DOE Reference Buildings had heat pumps"
322
422
  },
423
+ {
424
+ "template": "DOE Ref 1980-2004",
425
+ "cooling_type": "AirCooled",
426
+ "subcategory": "PTHP",
427
+ "minimum_capacity": 0.0,
428
+ "maximum_capacity": 9999999.0,
429
+ "start_date": "9/9/1919",
430
+ "end_date": "2999-09-09T00:00:00+00:00",
431
+ "minimum_heating_seasonal_performance_factor": null,
432
+ "minimum_coefficient_of_performance_heating": null,
433
+ "minimum_energy_efficiency_ratio": null,
434
+ "pthp_cop_coefficient_1": 2.9,
435
+ "pthp_cop_coefficient_2": 0.026,
436
+ "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
437
+ "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
438
+ "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
439
+ "heat_eir_fflow": "DXHEAT-NECB2011-REF-EIRFFLOW",
440
+ "heat_plf_fplr": "DXHEAT-NECB2011-REF-PLFFPLR",
441
+ "notes": "From 90.1-1989 Table 10-4A"
442
+ },
323
443
  {
324
444
  "template": "90.1-2004",
325
445
  "cooling_type": "AirCooled",
326
446
  "subcategory": "Split System",
327
447
  "minimum_capacity": 0.0,
328
448
  "maximum_capacity": 64999.0,
449
+ "start_date": "9/9/1919",
450
+ "end_date": "2999-09-09T00:00:00+00:00",
329
451
  "minimum_heating_seasonal_performance_factor": 6.8,
330
452
  "minimum_coefficient_of_performance_heating": null,
331
453
  "minimum_energy_efficiency_ratio": null,
454
+ "pthp_cop_coefficient_1": null,
455
+ "pthp_cop_coefficient_2": null,
332
456
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
333
457
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
334
458
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -342,9 +466,13 @@
342
466
  "subcategory": "Single Package",
343
467
  "minimum_capacity": 0.0,
344
468
  "maximum_capacity": 64999.0,
469
+ "start_date": "9/9/1919",
470
+ "end_date": "2999-09-09T00:00:00+00:00",
345
471
  "minimum_heating_seasonal_performance_factor": 6.6,
346
472
  "minimum_coefficient_of_performance_heating": null,
347
473
  "minimum_energy_efficiency_ratio": null,
474
+ "pthp_cop_coefficient_1": null,
475
+ "pthp_cop_coefficient_2": null,
348
476
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
349
477
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
350
478
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -358,9 +486,13 @@
358
486
  "subcategory": "Split System",
359
487
  "minimum_capacity": 0.0,
360
488
  "maximum_capacity": 29999.0,
489
+ "start_date": "9/9/1919",
490
+ "end_date": "2999-09-09T00:00:00+00:00",
361
491
  "minimum_heating_seasonal_performance_factor": 6.8,
362
492
  "minimum_coefficient_of_performance_heating": null,
363
493
  "minimum_energy_efficiency_ratio": null,
494
+ "pthp_cop_coefficient_1": null,
495
+ "pthp_cop_coefficient_2": null,
364
496
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
365
497
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
366
498
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -374,9 +506,13 @@
374
506
  "subcategory": "Single Package",
375
507
  "minimum_capacity": 0.0,
376
508
  "maximum_capacity": 29999.0,
509
+ "start_date": "9/9/1919",
510
+ "end_date": "2999-09-09T00:00:00+00:00",
377
511
  "minimum_heating_seasonal_performance_factor": 6.6,
378
512
  "minimum_coefficient_of_performance_heating": null,
379
513
  "minimum_energy_efficiency_ratio": null,
514
+ "pthp_cop_coefficient_1": null,
515
+ "pthp_cop_coefficient_2": null,
380
516
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
381
517
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
382
518
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -390,9 +526,13 @@
390
526
  "subcategory": "Split System",
391
527
  "minimum_capacity": 0.0,
392
528
  "maximum_capacity": 64999.0,
529
+ "start_date": "9/9/1919",
530
+ "end_date": "2999-09-09T00:00:00+00:00",
393
531
  "minimum_heating_seasonal_performance_factor": 6.8,
394
532
  "minimum_coefficient_of_performance_heating": null,
395
533
  "minimum_energy_efficiency_ratio": null,
534
+ "pthp_cop_coefficient_1": null,
535
+ "pthp_cop_coefficient_2": null,
396
536
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
397
537
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
398
538
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -406,9 +546,13 @@
406
546
  "subcategory": "Single Package",
407
547
  "minimum_capacity": 65000.0,
408
548
  "maximum_capacity": 134999.0,
549
+ "start_date": "9/9/1919",
550
+ "end_date": "2999-09-09T00:00:00+00:00",
409
551
  "minimum_heating_seasonal_performance_factor": null,
410
552
  "minimum_coefficient_of_performance_heating": 3.2,
411
553
  "minimum_energy_efficiency_ratio": null,
554
+ "pthp_cop_coefficient_1": null,
555
+ "pthp_cop_coefficient_2": null,
412
556
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
413
557
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
414
558
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -422,9 +566,13 @@
422
566
  "subcategory": "Single Package",
423
567
  "minimum_capacity": 135000.0,
424
568
  "maximum_capacity": 9999999.0,
569
+ "start_date": "9/9/1919",
570
+ "end_date": "2999-09-09T00:00:00+00:00",
425
571
  "minimum_heating_seasonal_performance_factor": null,
426
572
  "minimum_coefficient_of_performance_heating": 3.1,
427
573
  "minimum_energy_efficiency_ratio": null,
574
+ "pthp_cop_coefficient_1": null,
575
+ "pthp_cop_coefficient_2": null,
428
576
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
429
577
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
430
578
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -432,15 +580,39 @@
432
580
  "heat_plf_fplr": "DXHEAT-NECB2011-REF-PLFFPLR",
433
581
  "notes": "From 90.1-2004 Table 6.8.1B, Before 1/23/2006"
434
582
  },
583
+ {
584
+ "template": "90.1-2004",
585
+ "cooling_type": "AirCooled",
586
+ "subcategory": "PTHP",
587
+ "minimum_capacity": 0.0,
588
+ "maximum_capacity": 9999999.0,
589
+ "start_date": "9/9/1919",
590
+ "end_date": "2999-09-09T00:00:00+00:00",
591
+ "minimum_heating_seasonal_performance_factor": null,
592
+ "minimum_coefficient_of_performance_heating": null,
593
+ "minimum_energy_efficiency_ratio": null,
594
+ "pthp_cop_coefficient_1": 3.2,
595
+ "pthp_cop_coefficient_2": 0.026,
596
+ "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
597
+ "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
598
+ "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
599
+ "heat_eir_fflow": "DXHEAT-NECB2011-REF-EIRFFLOW",
600
+ "heat_plf_fplr": "DXHEAT-NECB2011-REF-PLFFPLR",
601
+ "notes": "From 90.1-2004 Table 6.8.1D"
602
+ },
435
603
  {
436
604
  "template": "90.1-2007",
437
605
  "cooling_type": "AirCooled",
438
606
  "subcategory": "Split System",
439
607
  "minimum_capacity": 0.0,
440
608
  "maximum_capacity": 64999.0,
609
+ "start_date": "9/9/1919",
610
+ "end_date": "2999-09-09T00:00:00+00:00",
441
611
  "minimum_heating_seasonal_performance_factor": 7.7,
442
612
  "minimum_coefficient_of_performance_heating": null,
443
613
  "minimum_energy_efficiency_ratio": null,
614
+ "pthp_cop_coefficient_1": null,
615
+ "pthp_cop_coefficient_2": null,
444
616
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
445
617
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
446
618
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -454,9 +626,13 @@
454
626
  "subcategory": "Single Package",
455
627
  "minimum_capacity": 0.0,
456
628
  "maximum_capacity": 64999.0,
629
+ "start_date": "9/9/1919",
630
+ "end_date": "2999-09-09T00:00:00+00:00",
457
631
  "minimum_heating_seasonal_performance_factor": 7.7,
458
632
  "minimum_coefficient_of_performance_heating": null,
459
633
  "minimum_energy_efficiency_ratio": null,
634
+ "pthp_cop_coefficient_1": null,
635
+ "pthp_cop_coefficient_2": null,
460
636
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
461
637
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
462
638
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -470,9 +646,13 @@
470
646
  "subcategory": "Split System",
471
647
  "minimum_capacity": 0.0,
472
648
  "maximum_capacity": 29999.0,
649
+ "start_date": "9/9/1919",
650
+ "end_date": "2999-09-09T00:00:00+00:00",
473
651
  "minimum_heating_seasonal_performance_factor": 7.1,
474
652
  "minimum_coefficient_of_performance_heating": null,
475
653
  "minimum_energy_efficiency_ratio": null,
654
+ "pthp_cop_coefficient_1": null,
655
+ "pthp_cop_coefficient_2": null,
476
656
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
477
657
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
478
658
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -486,9 +666,13 @@
486
666
  "subcategory": "Single Package",
487
667
  "minimum_capacity": 0.0,
488
668
  "maximum_capacity": 29999.0,
669
+ "start_date": "9/9/1919",
670
+ "end_date": "2999-09-09T00:00:00+00:00",
489
671
  "minimum_heating_seasonal_performance_factor": 7.0,
490
672
  "minimum_coefficient_of_performance_heating": null,
491
673
  "minimum_energy_efficiency_ratio": null,
674
+ "pthp_cop_coefficient_1": null,
675
+ "pthp_cop_coefficient_2": null,
492
676
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
493
677
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
494
678
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -502,9 +686,13 @@
502
686
  "subcategory": "Single Package",
503
687
  "minimum_capacity": 65000.0,
504
688
  "maximum_capacity": 134999.0,
689
+ "start_date": "9/9/1919",
690
+ "end_date": "2999-09-09T00:00:00+00:00",
505
691
  "minimum_heating_seasonal_performance_factor": null,
506
692
  "minimum_coefficient_of_performance_heating": 3.2,
507
693
  "minimum_energy_efficiency_ratio": null,
694
+ "pthp_cop_coefficient_1": null,
695
+ "pthp_cop_coefficient_2": null,
508
696
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
509
697
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
510
698
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -518,9 +706,13 @@
518
706
  "subcategory": "Single Package",
519
707
  "minimum_capacity": 135000.0,
520
708
  "maximum_capacity": 9999999.0,
709
+ "start_date": "9/9/1919",
710
+ "end_date": "2999-09-09T00:00:00+00:00",
521
711
  "minimum_heating_seasonal_performance_factor": null,
522
712
  "minimum_coefficient_of_performance_heating": 3.1,
523
713
  "minimum_energy_efficiency_ratio": null,
714
+ "pthp_cop_coefficient_1": null,
715
+ "pthp_cop_coefficient_2": null,
524
716
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
525
717
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
526
718
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -528,15 +720,39 @@
528
720
  "heat_plf_fplr": "DXHEAT-NECB2011-REF-PLFFPLR",
529
721
  "notes": "From 90.1-2007 Table 6.8.1B, Before 1/1/2010"
530
722
  },
723
+ {
724
+ "template": "90.1-2007",
725
+ "cooling_type": "AirCooled",
726
+ "subcategory": "PTHP",
727
+ "minimum_capacity": 0.0,
728
+ "maximum_capacity": 9999999.0,
729
+ "start_date": "9/9/1919",
730
+ "end_date": "2999-09-09T00:00:00+00:00",
731
+ "minimum_heating_seasonal_performance_factor": null,
732
+ "minimum_coefficient_of_performance_heating": null,
733
+ "minimum_energy_efficiency_ratio": null,
734
+ "pthp_cop_coefficient_1": 3.2,
735
+ "pthp_cop_coefficient_2": 0.026,
736
+ "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
737
+ "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
738
+ "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
739
+ "heat_eir_fflow": "DXHEAT-NECB2011-REF-EIRFFLOW",
740
+ "heat_plf_fplr": "DXHEAT-NECB2011-REF-PLFFPLR",
741
+ "notes": "From 90.1-2007 Table 6.8.1D"
742
+ },
531
743
  {
532
744
  "template": "90.1-2010",
533
745
  "cooling_type": "AirCooled",
534
746
  "subcategory": "Split System",
535
747
  "minimum_capacity": 0.0,
536
748
  "maximum_capacity": 64999.0,
749
+ "start_date": "9/9/1919",
750
+ "end_date": "2999-09-09T00:00:00+00:00",
537
751
  "minimum_heating_seasonal_performance_factor": 7.7,
538
752
  "minimum_coefficient_of_performance_heating": null,
539
753
  "minimum_energy_efficiency_ratio": null,
754
+ "pthp_cop_coefficient_1": null,
755
+ "pthp_cop_coefficient_2": null,
540
756
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
541
757
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
542
758
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -550,9 +766,13 @@
550
766
  "subcategory": "Single Package",
551
767
  "minimum_capacity": 0.0,
552
768
  "maximum_capacity": 64999.0,
769
+ "start_date": "9/9/1919",
770
+ "end_date": "2999-09-09T00:00:00+00:00",
553
771
  "minimum_heating_seasonal_performance_factor": 7.7,
554
772
  "minimum_coefficient_of_performance_heating": null,
555
773
  "minimum_energy_efficiency_ratio": null,
774
+ "pthp_cop_coefficient_1": null,
775
+ "pthp_cop_coefficient_2": null,
556
776
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
557
777
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
558
778
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -566,9 +786,13 @@
566
786
  "subcategory": "Split System",
567
787
  "minimum_capacity": 0.0,
568
788
  "maximum_capacity": 29999.0,
789
+ "start_date": "9/9/1919",
790
+ "end_date": "2999-09-09T00:00:00+00:00",
569
791
  "minimum_heating_seasonal_performance_factor": 7.4,
570
792
  "minimum_coefficient_of_performance_heating": null,
571
793
  "minimum_energy_efficiency_ratio": null,
794
+ "pthp_cop_coefficient_1": null,
795
+ "pthp_cop_coefficient_2": null,
572
796
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
573
797
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
574
798
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -582,9 +806,13 @@
582
806
  "subcategory": "Single Package",
583
807
  "minimum_capacity": 0.0,
584
808
  "maximum_capacity": 29999.0,
809
+ "start_date": "9/9/1919",
810
+ "end_date": "2999-09-09T00:00:00+00:00",
585
811
  "minimum_heating_seasonal_performance_factor": 7.4,
586
812
  "minimum_coefficient_of_performance_heating": null,
587
813
  "minimum_energy_efficiency_ratio": null,
814
+ "pthp_cop_coefficient_1": null,
815
+ "pthp_cop_coefficient_2": null,
588
816
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
589
817
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
590
818
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -598,9 +826,13 @@
598
826
  "subcategory": "Single Package",
599
827
  "minimum_capacity": 65000.0,
600
828
  "maximum_capacity": 134999.0,
829
+ "start_date": "9/9/1919",
830
+ "end_date": "2999-09-09T00:00:00+00:00",
601
831
  "minimum_heating_seasonal_performance_factor": null,
602
832
  "minimum_coefficient_of_performance_heating": 3.3,
603
833
  "minimum_energy_efficiency_ratio": null,
834
+ "pthp_cop_coefficient_1": null,
835
+ "pthp_cop_coefficient_2": null,
604
836
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
605
837
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
606
838
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -614,9 +846,13 @@
614
846
  "subcategory": "Single Package",
615
847
  "minimum_capacity": 135000.0,
616
848
  "maximum_capacity": 9999999.0,
849
+ "start_date": "9/9/1919",
850
+ "end_date": "2999-09-09T00:00:00+00:00",
617
851
  "minimum_heating_seasonal_performance_factor": null,
618
852
  "minimum_coefficient_of_performance_heating": 3.2,
619
853
  "minimum_energy_efficiency_ratio": null,
854
+ "pthp_cop_coefficient_1": null,
855
+ "pthp_cop_coefficient_2": null,
620
856
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
621
857
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
622
858
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -624,15 +860,39 @@
624
860
  "heat_plf_fplr": "DXHEAT-NECB2011-REF-PLFFPLR",
625
861
  "notes": "From 90.1-2010 Table 6.8.1B"
626
862
  },
863
+ {
864
+ "template": "90.1-2010",
865
+ "cooling_type": "AirCooled",
866
+ "subcategory": "PTHP",
867
+ "minimum_capacity": 0.0,
868
+ "maximum_capacity": 9999999.0,
869
+ "start_date": "9/9/1919",
870
+ "end_date": "2999-09-09T00:00:00+00:00",
871
+ "minimum_heating_seasonal_performance_factor": null,
872
+ "minimum_coefficient_of_performance_heating": null,
873
+ "minimum_energy_efficiency_ratio": null,
874
+ "pthp_cop_coefficient_1": 3.2,
875
+ "pthp_cop_coefficient_2": 0.026,
876
+ "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
877
+ "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
878
+ "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
879
+ "heat_eir_fflow": "DXHEAT-NECB2011-REF-EIRFFLOW",
880
+ "heat_plf_fplr": "DXHEAT-NECB2011-REF-PLFFPLR",
881
+ "notes": "From 90.1-2010 Table 6.8.1D before 10/08/2012"
882
+ },
627
883
  {
628
884
  "template": "90.1-2013",
629
885
  "cooling_type": "AirCooled",
630
886
  "subcategory": "Split System",
631
887
  "minimum_capacity": 0.0,
632
888
  "maximum_capacity": 64999.0,
889
+ "start_date": "9/9/1919",
890
+ "end_date": "2999-09-09T00:00:00+00:00",
633
891
  "minimum_heating_seasonal_performance_factor": 7.7,
634
892
  "minimum_coefficient_of_performance_heating": null,
635
893
  "minimum_energy_efficiency_ratio": null,
894
+ "pthp_cop_coefficient_1": null,
895
+ "pthp_cop_coefficient_2": null,
636
896
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
637
897
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
638
898
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -646,9 +906,13 @@
646
906
  "subcategory": "Single Package",
647
907
  "minimum_capacity": 0.0,
648
908
  "maximum_capacity": 64999.0,
909
+ "start_date": "9/9/1919",
910
+ "end_date": "2999-09-09T00:00:00+00:00",
649
911
  "minimum_heating_seasonal_performance_factor": 7.7,
650
912
  "minimum_coefficient_of_performance_heating": null,
651
913
  "minimum_energy_efficiency_ratio": null,
914
+ "pthp_cop_coefficient_1": null,
915
+ "pthp_cop_coefficient_2": null,
652
916
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
653
917
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
654
918
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -662,9 +926,13 @@
662
926
  "subcategory": "Split System",
663
927
  "minimum_capacity": 0.0,
664
928
  "maximum_capacity": 29999.0,
929
+ "start_date": "9/9/1919",
930
+ "end_date": "2999-09-09T00:00:00+00:00",
665
931
  "minimum_heating_seasonal_performance_factor": 7.4,
666
932
  "minimum_coefficient_of_performance_heating": null,
667
933
  "minimum_energy_efficiency_ratio": null,
934
+ "pthp_cop_coefficient_1": null,
935
+ "pthp_cop_coefficient_2": null,
668
936
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
669
937
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
670
938
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -678,9 +946,13 @@
678
946
  "subcategory": "Single Package",
679
947
  "minimum_capacity": 0.0,
680
948
  "maximum_capacity": 29999.0,
949
+ "start_date": "9/9/1919",
950
+ "end_date": "2999-09-09T00:00:00+00:00",
681
951
  "minimum_heating_seasonal_performance_factor": 7.4,
682
952
  "minimum_coefficient_of_performance_heating": null,
683
953
  "minimum_energy_efficiency_ratio": null,
954
+ "pthp_cop_coefficient_1": null,
955
+ "pthp_cop_coefficient_2": null,
684
956
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
685
957
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
686
958
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -694,9 +966,13 @@
694
966
  "subcategory": "Split System",
695
967
  "minimum_capacity": 0.0,
696
968
  "maximum_capacity": 64999.0,
969
+ "start_date": "9/9/1919",
970
+ "end_date": "2999-09-09T00:00:00+00:00",
697
971
  "minimum_heating_seasonal_performance_factor": 6.8,
698
972
  "minimum_coefficient_of_performance_heating": null,
699
973
  "minimum_energy_efficiency_ratio": null,
974
+ "pthp_cop_coefficient_1": null,
975
+ "pthp_cop_coefficient_2": null,
700
976
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
701
977
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
702
978
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -710,9 +986,13 @@
710
986
  "subcategory": "Single Package",
711
987
  "minimum_capacity": 65000.0,
712
988
  "maximum_capacity": 134999.0,
989
+ "start_date": "9/9/1919",
990
+ "end_date": "2999-09-09T00:00:00+00:00",
713
991
  "minimum_heating_seasonal_performance_factor": null,
714
992
  "minimum_coefficient_of_performance_heating": 3.3,
715
993
  "minimum_energy_efficiency_ratio": null,
994
+ "pthp_cop_coefficient_1": null,
995
+ "pthp_cop_coefficient_2": null,
716
996
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
717
997
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
718
998
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -726,9 +1006,13 @@
726
1006
  "subcategory": "Single Package",
727
1007
  "minimum_capacity": 135000.0,
728
1008
  "maximum_capacity": 9999999.0,
1009
+ "start_date": "9/9/1919",
1010
+ "end_date": "2999-09-09T00:00:00+00:00",
729
1011
  "minimum_heating_seasonal_performance_factor": null,
730
1012
  "minimum_coefficient_of_performance_heating": 3.2,
731
1013
  "minimum_energy_efficiency_ratio": null,
1014
+ "pthp_cop_coefficient_1": null,
1015
+ "pthp_cop_coefficient_2": null,
732
1016
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
733
1017
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
734
1018
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -736,15 +1020,39 @@
736
1020
  "heat_plf_fplr": "DXHEAT-NECB2011-REF-PLFFPLR",
737
1021
  "notes": "From 90.1-2013 Table 6.8.1-6"
738
1022
  },
1023
+ {
1024
+ "template": "90.1-2013",
1025
+ "cooling_type": "AirCooled",
1026
+ "subcategory": "PTHP",
1027
+ "minimum_capacity": 0.0,
1028
+ "maximum_capacity": 9999999.0,
1029
+ "start_date": "9/9/1919",
1030
+ "end_date": "2999-09-09T00:00:00+00:00",
1031
+ "minimum_heating_seasonal_performance_factor": null,
1032
+ "minimum_coefficient_of_performance_heating": null,
1033
+ "minimum_energy_efficiency_ratio": null,
1034
+ "pthp_cop_coefficient_1": 3.7,
1035
+ "pthp_cop_coefficient_2": 0.052,
1036
+ "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
1037
+ "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
1038
+ "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
1039
+ "heat_eir_fflow": "DXHEAT-NECB2011-REF-EIRFFLOW",
1040
+ "heat_plf_fplr": "DXHEAT-NECB2011-REF-PLFFPLR",
1041
+ "notes": "From 90.1-2013 Table 6.8.1-4"
1042
+ },
739
1043
  {
740
1044
  "template": "OEESC 2014",
741
1045
  "cooling_type": "AirCooled",
742
1046
  "subcategory": "Split System",
743
1047
  "minimum_capacity": 0.0,
744
1048
  "maximum_capacity": 64999.0,
1049
+ "start_date": "9/9/1919",
1050
+ "end_date": "2999-09-09T00:00:00+00:00",
745
1051
  "minimum_heating_seasonal_performance_factor": 8.2,
746
1052
  "minimum_coefficient_of_performance_heating": null,
747
1053
  "minimum_energy_efficiency_ratio": null,
1054
+ "pthp_cop_coefficient_1": null,
1055
+ "pthp_cop_coefficient_2": null,
748
1056
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
749
1057
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
750
1058
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -758,9 +1066,13 @@
758
1066
  "subcategory": "Single Package",
759
1067
  "minimum_capacity": 0.0,
760
1068
  "maximum_capacity": 64999.0,
1069
+ "start_date": "9/9/1919",
1070
+ "end_date": "2999-09-09T00:00:00+00:00",
761
1071
  "minimum_heating_seasonal_performance_factor": 8.0,
762
1072
  "minimum_coefficient_of_performance_heating": null,
763
1073
  "minimum_energy_efficiency_ratio": null,
1074
+ "pthp_cop_coefficient_1": null,
1075
+ "pthp_cop_coefficient_2": null,
764
1076
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
765
1077
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
766
1078
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -774,9 +1086,13 @@
774
1086
  "subcategory": "Split System",
775
1087
  "minimum_capacity": 0.0,
776
1088
  "maximum_capacity": 29999.0,
1089
+ "start_date": "9/9/1919",
1090
+ "end_date": "2999-09-09T00:00:00+00:00",
777
1091
  "minimum_heating_seasonal_performance_factor": 7.4,
778
1092
  "minimum_coefficient_of_performance_heating": null,
779
1093
  "minimum_energy_efficiency_ratio": null,
1094
+ "pthp_cop_coefficient_1": null,
1095
+ "pthp_cop_coefficient_2": null,
780
1096
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
781
1097
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
782
1098
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -790,9 +1106,13 @@
790
1106
  "subcategory": "Single Package",
791
1107
  "minimum_capacity": 0.0,
792
1108
  "maximum_capacity": 29999.0,
1109
+ "start_date": "9/9/1919",
1110
+ "end_date": "2999-09-09T00:00:00+00:00",
793
1111
  "minimum_heating_seasonal_performance_factor": 7.4,
794
1112
  "minimum_coefficient_of_performance_heating": null,
795
1113
  "minimum_energy_efficiency_ratio": null,
1114
+ "pthp_cop_coefficient_1": null,
1115
+ "pthp_cop_coefficient_2": null,
796
1116
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
797
1117
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
798
1118
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -806,9 +1126,13 @@
806
1126
  "subcategory": "Split System",
807
1127
  "minimum_capacity": 0.0,
808
1128
  "maximum_capacity": 64999.0,
1129
+ "start_date": "9/9/1919",
1130
+ "end_date": "2999-09-09T00:00:00+00:00",
809
1131
  "minimum_heating_seasonal_performance_factor": 6.8,
810
1132
  "minimum_coefficient_of_performance_heating": null,
811
1133
  "minimum_energy_efficiency_ratio": null,
1134
+ "pthp_cop_coefficient_1": null,
1135
+ "pthp_cop_coefficient_2": null,
812
1136
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
813
1137
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
814
1138
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -822,9 +1146,13 @@
822
1146
  "subcategory": "Single Package",
823
1147
  "minimum_capacity": 65000.0,
824
1148
  "maximum_capacity": 134999.0,
1149
+ "start_date": "9/9/1919",
1150
+ "end_date": "2999-09-09T00:00:00+00:00",
825
1151
  "minimum_heating_seasonal_performance_factor": null,
826
1152
  "minimum_coefficient_of_performance_heating": 3.3,
827
1153
  "minimum_energy_efficiency_ratio": null,
1154
+ "pthp_cop_coefficient_1": null,
1155
+ "pthp_cop_coefficient_2": null,
828
1156
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
829
1157
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
830
1158
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
@@ -838,15 +1166,39 @@
838
1166
  "subcategory": "Single Package",
839
1167
  "minimum_capacity": 135000.0,
840
1168
  "maximum_capacity": 9999999.0,
1169
+ "start_date": "9/9/1919",
1170
+ "end_date": "2999-09-09T00:00:00+00:00",
841
1171
  "minimum_heating_seasonal_performance_factor": null,
842
1172
  "minimum_coefficient_of_performance_heating": 3.2,
843
1173
  "minimum_energy_efficiency_ratio": null,
1174
+ "pthp_cop_coefficient_1": null,
1175
+ "pthp_cop_coefficient_2": null,
844
1176
  "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
845
1177
  "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
846
1178
  "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
847
1179
  "heat_eir_fflow": "DXHEAT-NECB2011-REF-EIRFFLOW",
848
1180
  "heat_plf_fplr": "DXHEAT-NECB2011-REF-PLFFPLR",
849
1181
  "notes": "From OEESC2014 Table 503.2.3(2) Before 1/1/2016"
1182
+ },
1183
+ {
1184
+ "template": "OEESC 2014",
1185
+ "cooling_type": "AirCooled",
1186
+ "subcategory": "PTHP",
1187
+ "minimum_capacity": 0.0,
1188
+ "maximum_capacity": 9999999.0,
1189
+ "start_date": "9/9/1919",
1190
+ "end_date": "2999-09-09T00:00:00+00:00",
1191
+ "minimum_heating_seasonal_performance_factor": null,
1192
+ "minimum_coefficient_of_performance_heating": null,
1193
+ "minimum_energy_efficiency_ratio": null,
1194
+ "pthp_cop_coefficient_1": 3.2,
1195
+ "pthp_cop_coefficient_2": 0.026,
1196
+ "heat_cap_ft": "DXHEAT-NECB2011-REF-CAPFT",
1197
+ "heat_cap_fflow": "DXHEAT-NECB2011-REF-CAPFFLOW",
1198
+ "heat_eir_ft": "DXHEAT-NECB2011-REF-EIRFT",
1199
+ "heat_eir_fflow": "DXHEAT-NECB2011-REF-EIRFFLOW",
1200
+ "heat_plf_fplr": "DXHEAT-NECB2011-REF-PLFFPLR",
1201
+ "notes": "From OEESC2014 Table 503.2.3(3)"
850
1202
  }
851
1203
  ]
852
1204
  }