openstudio-standards 0.7.1 → 0.8.0.rc2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (363) hide show
  1. checksums.yaml +4 -4
  2. data/data/geometry/ASHRAE90120162019LargeHotel.json +58 -13
  3. data/data/geometry/ASHRAELargeHotel.json +58 -13
  4. data/data/standards/OpenStudio_Standards-ashrae_90_1-ALL-comstock(space_types).xlsx +0 -0
  5. data/data/standards/export_OpenStudio_libraries.rb +2 -2
  6. data/data/standards/manage_OpenStudio_Standards.rb +6 -6
  7. data/data/standards/openstudio_standards_duplicates_log.csv +7961 -1
  8. data/data/standards/test_performance_expected_dd_results.csv +2016 -2004
  9. data/lib/openstudio-standards/btap/fileio.rb +171 -5
  10. data/lib/openstudio-standards/constructions/create.rb +38 -4
  11. data/lib/openstudio-standards/constructions/modify.rb +10 -3
  12. data/lib/openstudio-standards/create_typical/create_typical.rb +42 -28
  13. data/lib/openstudio-standards/create_typical/space_type_information.rb +160 -0
  14. data/lib/openstudio-standards/create_typical/space_type_ratios.rb +22 -21
  15. data/lib/openstudio-standards/exterior_lighting/create.rb +454 -0
  16. data/lib/openstudio-standards/exterior_lighting/data/entryways.csv +52 -0
  17. data/lib/openstudio-standards/exterior_lighting/data/parking.csv +54 -0
  18. data/lib/openstudio-standards/exterior_lighting/data/typical_exterior_lighting.json +37 -0
  19. data/lib/openstudio-standards/exterior_lighting/information.rb +202 -0
  20. data/lib/openstudio-standards/geometry/information.rb +49 -2
  21. data/lib/openstudio-standards/hvac/components/create.rb +169 -0
  22. data/lib/openstudio-standards/hvac/components/modify.rb +42 -0
  23. data/lib/openstudio-standards/hvac/exhaust/create_exhaust_fan.rb +108 -0
  24. data/lib/openstudio-standards/hvac/exhaust/data/convert_data.rb +86 -0
  25. data/lib/openstudio-standards/hvac/exhaust/data/typical_exhaust.csv +18 -0
  26. data/lib/openstudio-standards/hvac/exhaust/data/typical_exhaust.json +89 -0
  27. data/lib/openstudio-standards/infiltration/nist_infiltration.rb +25 -13
  28. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.LargeHotel.rb +0 -64
  29. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.LargeOffice.rb +0 -25
  30. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.MediumOffice.rb +0 -25
  31. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.Warehouse.rb +1 -11
  32. data/lib/openstudio-standards/prototypes/common/objects/Prototype.AirConditionerVariableRefrigerantFlow.rb +5 -1
  33. data/lib/openstudio-standards/prototypes/common/objects/Prototype.CentralAirSourceHeatPump.rb +1 -1
  34. data/lib/openstudio-standards/prototypes/common/objects/Prototype.Fan.rb +0 -7
  35. data/lib/openstudio-standards/prototypes/common/objects/Prototype.HeatExchangerAirToAirSensibleAndLatent.rb +36 -18
  36. data/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.hvac.rb +1 -1
  37. data/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.rb +121 -239
  38. data/lib/openstudio-standards/prototypes/common/objects/Prototype.hvac_systems.rb +179 -151
  39. data/lib/openstudio-standards/prototypes/common/objects/Prototype.refrigeration.rb +0 -466
  40. data/lib/openstudio-standards/prototypes/common/objects/Prototype.utilities.rb +18 -2
  41. data/lib/openstudio-standards/refrigeration/create_case.rb +125 -0
  42. data/lib/openstudio-standards/refrigeration/create_compressor.rb +78 -0
  43. data/lib/openstudio-standards/refrigeration/create_compressor_rack.rb +48 -0
  44. data/lib/openstudio-standards/refrigeration/create_refrigeration_system.rb +74 -0
  45. data/lib/openstudio-standards/refrigeration/create_typical_refrigeration.rb +161 -0
  46. data/lib/openstudio-standards/refrigeration/create_walkin.rb +116 -0
  47. data/lib/openstudio-standards/refrigeration/data/refrigerated_cases.csv +31 -0
  48. data/lib/openstudio-standards/refrigeration/data/refrigerated_walkins.csv +76 -0
  49. data/lib/openstudio-standards/refrigeration/data/refrigeration_compressors.csv +13 -0
  50. data/lib/openstudio-standards/refrigeration/data/typical_refrigerated_cases.csv +17 -0
  51. data/lib/openstudio-standards/refrigeration/data/typical_refrigerated_walkins.csv +53 -0
  52. data/lib/openstudio-standards/refrigeration/information.rb +130 -0
  53. data/lib/openstudio-standards/schedules/parametric.rb +1 -1
  54. data/lib/openstudio-standards/service_water_heating/create_typical.rb +299 -0
  55. data/lib/openstudio-standards/service_water_heating/create_water_heating_loop.rb +16 -14
  56. data/lib/openstudio-standards/service_water_heating/data/convert_data.rb +119 -0
  57. data/lib/openstudio-standards/service_water_heating/data/typical_water_use_equipment.csv +54 -0
  58. data/lib/openstudio-standards/service_water_heating/data/typical_water_use_equipment.json +810 -0
  59. data/lib/openstudio-standards/service_water_heating/information.rb +69 -0
  60. data/lib/openstudio-standards/sql_file/fenestration.rb +1 -1
  61. data/lib/openstudio-standards/standards/Standards.AirConditionerVariableRefrigerantFlow.rb +154 -0
  62. data/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb +35 -12
  63. data/lib/openstudio-standards/standards/Standards.CoilCoolingDXMultiSpeed.rb +110 -61
  64. data/lib/openstudio-standards/standards/Standards.CoilCoolingDXSingleSpeed.rb +128 -29
  65. data/lib/openstudio-standards/standards/Standards.CoilCoolingDXTwoSpeed.rb +103 -38
  66. data/lib/openstudio-standards/standards/Standards.CoilCoolingWaterToAirHeatPumpEquationFit.rb +1 -1
  67. data/lib/openstudio-standards/standards/Standards.CoilDX.rb +106 -5
  68. data/lib/openstudio-standards/standards/Standards.CoilHeatingGasMultiStage.rb +8 -8
  69. data/lib/openstudio-standards/standards/Standards.CoolingTower.rb +44 -17
  70. data/lib/openstudio-standards/standards/Standards.Fan.rb +32 -21
  71. data/lib/openstudio-standards/standards/Standards.FluidCooler.rb +45 -18
  72. data/lib/openstudio-standards/standards/Standards.HeatExchangerSensLat.rb +14 -9
  73. data/lib/openstudio-standards/standards/Standards.Model.rb +294 -76
  74. data/lib/openstudio-standards/standards/Standards.Motor.rb +66 -0
  75. data/lib/openstudio-standards/standards/Standards.PlanarSurface.rb +2 -1
  76. data/lib/openstudio-standards/standards/Standards.Pump.rb +34 -20
  77. data/lib/openstudio-standards/standards/Standards.ServiceWaterHeating.rb +0 -353
  78. data/lib/openstudio-standards/standards/Standards.Space.rb +3 -107
  79. data/lib/openstudio-standards/standards/Standards.SpaceType.rb +2 -57
  80. data/lib/openstudio-standards/standards/Standards.Surface.rb +11 -3
  81. data/lib/openstudio-standards/standards/Standards.ThermalZone.rb +1 -120
  82. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.computer_room_acs.json +142 -0
  83. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.economizers.json +1006 -596
  84. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.energy_recovery.json +724 -0
  85. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.ext_ltg.json +1258 -163
  86. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.motors.json +1070 -140
  87. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.spc_typ.json +33 -3374
  88. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.unitary_acs.json +1400 -340
  89. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.vrfs.json +769 -0
  90. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/comstock_ashrae_90_1_2007/data/comstock_ashrae_90_1_2007.spc_typ.json +2 -5338
  91. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.computer_room_acs.json +142 -0
  92. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.economizers.json +1006 -596
  93. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.energy_recovery.json +724 -0
  94. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.ext_ltg.json +1258 -163
  95. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.motors.json +1070 -140
  96. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.spc_typ.json +15 -3343
  97. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.unitary_acs.json +1840 -372
  98. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.vrfs.json +769 -0
  99. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/ashrae_90_1_2010.AirLoopHVAC.rb +20 -10
  100. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/ashrae_90_1_2010.Space.rb +0 -9
  101. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/comstock_ashrae_90_1_2010/data/comstock_ashrae_90_1_2010.spc_typ.json +0 -5382
  102. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.computer_room_acs.json +142 -0
  103. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.economizers.json +1006 -628
  104. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.energy_recovery.json +718 -712
  105. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.ext_ltg.json +1438 -163
  106. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.motors.json +2552 -182
  107. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.spc_typ.json +14 -3368
  108. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.unitary_acs.json +2348 -352
  109. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.vrfs.json +769 -0
  110. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.AirLoopHVAC.rb +47 -61
  111. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.Model.rb +6 -0
  112. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.Motor.rb +11 -0
  113. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.Space.rb +0 -9
  114. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/comstock_ashrae_90_1_2013/data/comstock_ashrae_90_1_2013.spc_typ.json +2 -5522
  115. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.computer_room_acs.json +142 -0
  116. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.economizers.json +1006 -628
  117. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.energy_recovery.json +1358 -1346
  118. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.ext_ltg.json +1438 -163
  119. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.motors.json +1359 -189
  120. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.spc_typ.json +19 -3451
  121. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.unitary_acs.json +2176 -616
  122. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.vrfs.json +616 -0
  123. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.AirLoopHVAC.rb +47 -61
  124. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Model.rb +9 -0
  125. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Motor.rb +11 -0
  126. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Space.rb +0 -9
  127. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/comstock_ashrae_90_1_2016/data/comstock_ashrae_90_1_2016.spc_typ.json +8 -6055
  128. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.computer_room_acs.json +142 -0
  129. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.economizers.json +1006 -628
  130. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.energy_recovery.json +1188 -1424
  131. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.ext_ltg.json +1498 -163
  132. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.motors.json +1769 -189
  133. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.spc_typ.json +15 -3422
  134. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.unitary_acs.json +1807 -408
  135. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.vrfs.json +1024 -0
  136. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.AirLoopHVAC.rb +70 -87
  137. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Model.rb +9 -0
  138. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Motor.rb +11 -0
  139. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Space.rb +0 -9
  140. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/comstock_ashrae_90_1_2019/data/comstock_ashrae_90_1_2019.spc_typ.json +8 -6080
  141. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.computer_room_acs.json +142 -0
  142. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.economizers.json +1006 -628
  143. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.energy_recovery.json +2806 -3296
  144. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.ext_ltg.json +1558 -163
  145. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.motors.json +1759 -189
  146. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.spc_typ.json +16 -3448
  147. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.unitary_acs.json +2758 -422
  148. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.vrfs.json +684 -0
  149. data/lib/openstudio-standards/standards/ashrae_90_1/data/ashrae_90_1.schedules.json +14 -3318
  150. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/comstock_doe_ref_1980_2004/data/comstock_doe_ref_1980_2004.spc_typ.json +2 -4786
  151. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/data/doe_ref_1980_2004.chillers.json +1 -1
  152. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/data/doe_ref_1980_2004.economizers.json +953 -207
  153. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/data/doe_ref_1980_2004.energy_recovery.json +724 -0
  154. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/data/doe_ref_1980_2004.ext_ltg.json +5 -5
  155. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/data/doe_ref_1980_2004.spc_typ.json +11 -2858
  156. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/doe_ref_1980_2004.AirConditionerVariableRefrigerantFlow.rb +13 -0
  157. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/doe_ref_1980_2004.Model.rb +0 -18
  158. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/comstock_doe_ref_pre_1980/data/comstock_doe_ref_pre_1980.spc_typ.json +1 -4739
  159. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/data/doe_ref_pre_1980.chillers.json +0 -51
  160. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/data/doe_ref_pre_1980.economizers.json +953 -207
  161. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/data/doe_ref_pre_1980.energy_recovery.json +724 -0
  162. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/data/doe_ref_pre_1980.ext_ltg.json +5 -5
  163. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/data/doe_ref_pre_1980.spc_typ.json +9 -2830
  164. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/doe_ref_pre_1980.AirConditionerVariableRefrigerantFlow.rb +13 -0
  165. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/doe_ref_pre_1980.Model.rb +0 -18
  166. data/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/data/nrel_zne_ready_2017.economizers.json +1006 -564
  167. data/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/data/nrel_zne_ready_2017.energy_recovery.json +1264 -0
  168. data/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/data/nrel_zne_ready_2017.ext_ltg.json +5 -5
  169. data/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/data/nrel_zne_ready_2017.spc_typ.json +0 -1079
  170. data/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/nrel_zne_ready_2017.AirLoopHVAC.rb +132 -288
  171. data/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/nrel_zne_ready_2017.HeatExchangerSensLat.rb +44 -20
  172. data/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/nrel_zne_ready_2017.Model.rb +11 -0
  173. data/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/nrel_zne_ready_2017.Space.rb +0 -8
  174. data/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/data/ze_aedg_multifamily.economizers.json +1006 -564
  175. data/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/data/ze_aedg_multifamily.energy_recovery.json +1264 -0
  176. data/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/data/ze_aedg_multifamily.ext_ltg.json +5 -5
  177. data/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/data/ze_aedg_multifamily.spc_typ.json +0 -1079
  178. data/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/ze_aedg_multifamily.AirLoopHVAC.rb +137 -288
  179. data/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/ze_aedg_multifamily.HeatExchangerSensLat.rb +44 -20
  180. data/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/ze_aedg_multifamily.Model.rb +11 -0
  181. data/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/ze_aedg_multifamily.Space.rb +0 -9
  182. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.AirLoopHVAC.rb +12 -10
  183. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilCoolingDXSingleSpeed.rb +8 -6
  184. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilCoolingDXTwoSpeed.rb +8 -6
  185. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilDX.rb +9 -3
  186. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Fan.rb +6 -40
  187. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Model.rb +30 -337
  188. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Space.rb +4 -5
  189. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.SpaceType.rb +1 -2
  190. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.rb +56 -3
  191. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/ashrae_90_1_prm_2019.Model.rb +80 -0
  192. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/ashrae_90_1_prm_2019.rb +0 -10
  193. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/ashrae_90_1_prm_2019_WaterHeaterMixed.rb +35 -0
  194. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.economizers.json +550 -0
  195. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.energy_recovery.json +724 -0
  196. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.ext_ltg.json +1216 -0
  197. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.heat_pumps.json +5 -5
  198. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.motors.json +225 -245
  199. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.unitary_acs.json +174 -78
  200. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.water_heaters.json +354 -317
  201. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_enums.rb +19 -3
  202. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_json/userdata_airloop_hvac.json +185 -0
  203. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_json/userdata_airloop_hvac_doas.json +127 -0
  204. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_json/userdata_building.json +121 -0
  205. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_json/userdata_design_specification_outdoor_air.json +49 -0
  206. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_json/userdata_electric_equipment.json +113 -0
  207. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_json/userdata_exterior_lights.json +120 -0
  208. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_json/userdata_space.json +388 -0
  209. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_json/userdata_spacetype.json +367 -0
  210. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_json/userdata_thermal_zone.json +56 -0
  211. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_json/userdata_wateruse_connections.json +37 -0
  212. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_json/userdata_wateruse_equipment.json +69 -0
  213. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_json/userdata_wateruse_equipment_definition.json +37 -0
  214. data/lib/openstudio-standards/standards/cbes/cbes_pre_1978/data/cbes_pre_1978.ext_ltg.json +5 -5
  215. data/lib/openstudio-standards/standards/cbes/cbes_t24_1978/data/cbes_t24_1978.ext_ltg.json +5 -5
  216. data/lib/openstudio-standards/standards/cbes/cbes_t24_1992/data/cbes_t24_1992.ext_ltg.json +5 -5
  217. data/lib/openstudio-standards/standards/cbes/cbes_t24_2001/data/cbes_t24_2001.ext_ltg.json +5 -5
  218. data/lib/openstudio-standards/standards/cbes/cbes_t24_2005/data/cbes_t24_2005.ext_ltg.json +5 -5
  219. data/lib/openstudio-standards/standards/cbes/cbes_t24_2008/data/cbes_t24_2008.ext_ltg.json +5 -5
  220. data/lib/openstudio-standards/standards/deer/deer_1985/comstock_deer_1985/data/comstock_deer_1985.ext_ltg.json +5 -5
  221. data/lib/openstudio-standards/standards/deer/deer_1985/data/deer_1985.ext_ltg.json +5 -5
  222. data/lib/openstudio-standards/standards/deer/deer_1996/comstock_deer_1996/data/comstock_deer_1996.ext_ltg.json +5 -5
  223. data/lib/openstudio-standards/standards/deer/deer_1996/data/deer_1996.ext_ltg.json +5 -5
  224. data/lib/openstudio-standards/standards/deer/deer_2003/comstock_deer_2003/data/comstock_deer_2003.ext_ltg.json +5 -5
  225. data/lib/openstudio-standards/standards/deer/deer_2003/data/deer_2003.ext_ltg.json +5 -5
  226. data/lib/openstudio-standards/standards/deer/deer_2007/comstock_deer_2007/data/comstock_deer_2007.ext_ltg.json +5 -5
  227. data/lib/openstudio-standards/standards/deer/deer_2007/data/deer_2007.ext_ltg.json +5 -5
  228. data/lib/openstudio-standards/standards/deer/deer_2011/comstock_deer_2011/data/comstock_deer_2011.ext_ltg.json +5 -5
  229. data/lib/openstudio-standards/standards/deer/deer_2011/data/deer_2011.ext_ltg.json +5 -5
  230. data/lib/openstudio-standards/standards/deer/deer_2014/comstock_deer_2014/data/comstock_deer_2014.ext_ltg.json +5 -5
  231. data/lib/openstudio-standards/standards/deer/deer_2014/data/deer_2014.ext_ltg.json +5 -5
  232. data/lib/openstudio-standards/standards/deer/deer_2015/comstock_deer_2015/data/comstock_deer_2015.ext_ltg.json +5 -5
  233. data/lib/openstudio-standards/standards/deer/deer_2015/data/deer_2015.ext_ltg.json +5 -5
  234. data/lib/openstudio-standards/standards/deer/deer_2017/comstock_deer_2017/data/comstock_deer_2017.ext_ltg.json +5 -5
  235. data/lib/openstudio-standards/standards/deer/deer_2017/data/deer_2017.ext_ltg.json +5 -5
  236. data/lib/openstudio-standards/standards/deer/deer_2020/comstock_deer_2020/data/comstock_deer_2020.ext_ltg.json +5 -5
  237. data/lib/openstudio-standards/standards/deer/deer_2020/data/deer_2020.ext_ltg.json +5 -5
  238. data/lib/openstudio-standards/standards/deer/deer_2025/comstock_deer_2025/data/comstock_deer_2025.ext_ltg.json +5 -5
  239. data/lib/openstudio-standards/standards/deer/deer_2025/data/deer_2025.ext_ltg.json +5 -5
  240. data/lib/openstudio-standards/standards/deer/deer_2030/comstock_deer_2030/data/comstock_deer_2030.ext_ltg.json +5 -5
  241. data/lib/openstudio-standards/standards/deer/deer_2030/data/deer_2030.ext_ltg.json +5 -5
  242. data/lib/openstudio-standards/standards/deer/deer_2035/comstock_deer_2035/data/comstock_deer_2035.ext_ltg.json +5 -5
  243. data/lib/openstudio-standards/standards/deer/deer_2035/data/deer_2035.ext_ltg.json +5 -5
  244. data/lib/openstudio-standards/standards/deer/deer_2040/comstock_deer_2040/data/comstock_deer_2040.ext_ltg.json +5 -5
  245. data/lib/openstudio-standards/standards/deer/deer_2040/data/deer_2040.ext_ltg.json +5 -5
  246. data/lib/openstudio-standards/standards/deer/deer_2045/comstock_deer_2045/data/comstock_deer_2045.ext_ltg.json +5 -5
  247. data/lib/openstudio-standards/standards/deer/deer_2045/data/deer_2045.ext_ltg.json +5 -5
  248. data/lib/openstudio-standards/standards/deer/deer_2050/comstock_deer_2050/data/comstock_deer_2050.ext_ltg.json +5 -5
  249. data/lib/openstudio-standards/standards/deer/deer_2050/data/deer_2050.ext_ltg.json +5 -5
  250. data/lib/openstudio-standards/standards/deer/deer_2055/comstock_deer_2055/data/comstock_deer_2055.ext_ltg.json +5 -5
  251. data/lib/openstudio-standards/standards/deer/deer_2055/data/deer_2055.ext_ltg.json +5 -5
  252. data/lib/openstudio-standards/standards/deer/deer_2060/comstock_deer_2060/data/comstock_deer_2060.ext_ltg.json +5 -5
  253. data/lib/openstudio-standards/standards/deer/deer_2060/data/deer_2060.ext_ltg.json +5 -5
  254. data/lib/openstudio-standards/standards/deer/deer_2065/comstock_deer_2065/data/comstock_deer_2065.ext_ltg.json +5 -5
  255. data/lib/openstudio-standards/standards/deer/deer_2065/data/deer_2065.ext_ltg.json +5 -5
  256. data/lib/openstudio-standards/standards/deer/deer_2070/comstock_deer_2070/data/comstock_deer_2070.ext_ltg.json +5 -5
  257. data/lib/openstudio-standards/standards/deer/deer_2070/data/deer_2070.ext_ltg.json +5 -5
  258. data/lib/openstudio-standards/standards/deer/deer_2075/comstock_deer_2075/data/comstock_deer_2075.ext_ltg.json +5 -5
  259. data/lib/openstudio-standards/standards/deer/deer_2075/data/deer_2075.ext_ltg.json +5 -5
  260. data/lib/openstudio-standards/standards/deer/deer_pre_1975/comstock_deer_pre_1975/data/comstock_deer_pre_1975.ext_ltg.json +5 -5
  261. data/lib/openstudio-standards/standards/deer/deer_pre_1975/data/deer_pre_1975.ext_ltg.json +5 -5
  262. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/btap_pre1980.rb +10 -1
  263. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/data/unitary_acs.json +20 -20
  264. data/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb +379 -27
  265. data/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +1 -4
  266. data/lib/openstudio-standards/standards/necb/NECB2011/beps_compliance_path.rb +0 -1
  267. data/lib/openstudio-standards/standards/necb/NECB2011/data/fuel_type_sets.json +1 -1
  268. data/lib/openstudio-standards/standards/necb/NECB2011/data/unitary_acs.json +20 -20
  269. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb +34 -22
  270. data/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb +76 -23
  271. data/lib/openstudio-standards/standards/necb/NECB2011/necb_shw_calculation.xlsx +0 -0
  272. data/lib/openstudio-standards/standards/necb/NECB2011/service_water_heating.rb +4 -5
  273. data/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb +6 -2
  274. data/lib/openstudio-standards/standards/necb/NECB2015/data/unitary_acs.json +26 -24
  275. data/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb +2 -1
  276. data/lib/openstudio-standards/standards/necb/NECB2020/data/unitary_acs.json +38 -32
  277. data/lib/openstudio-standards/standards/necb/common/btap_data.rb +215 -18
  278. data/lib/openstudio-standards/standards/necb/common/btap_datapoint.rb +190 -15
  279. data/lib/openstudio-standards/standards/necb/common/national_carbon_price_sched_feb_2025.json +60 -0
  280. data/lib/openstudio-standards/standards/necb/common/utility_pricing_2025-02-20.csv +92 -0
  281. data/lib/openstudio-standards/utilities/ruleset_check.rb +204 -0
  282. data/lib/openstudio-standards/version.rb +1 -1
  283. data/lib/openstudio-standards/weather/information.rb +1 -1
  284. data/lib/openstudio-standards.rb +32 -12
  285. metadata +78 -80
  286. data/lib/openstudio-standards/prototypes/ashrae_90_1/doe_ref_1980_2004/doe_ref_1980_2004.refrigeration.rb +0 -13
  287. data/lib/openstudio-standards/prototypes/ashrae_90_1/doe_ref_pre_1980/doe_ref_pre_1980.refrigeration.rb +0 -13
  288. data/lib/openstudio-standards/prototypes/cbes/cbes.refrigeration.rb +0 -13
  289. data/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.exterior_lights.rb +0 -432
  290. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/ashrae_90_1_2004.Space.rb +0 -11
  291. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/comstock_ashrae_90_1_2004/data/comstock_ashrae_90_1_2004.ext_ltg.json +0 -169
  292. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/comstock_ashrae_90_1_2004/data/comstock_ashrae_90_1_2004.ref_cases.json +0 -1456
  293. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/comstock_ashrae_90_1_2004/data/comstock_ashrae_90_1_2004.ref_lnup.json +0 -562
  294. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/comstock_ashrae_90_1_2004/data/comstock_ashrae_90_1_2004.spc_typ.json +0 -20804
  295. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/ashrae_90_1_2007.Space.rb +0 -11
  296. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/comstock_ashrae_90_1_2007/data/comstock_ashrae_90_1_2007.ext_ltg.json +0 -169
  297. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/comstock_ashrae_90_1_2007/data/comstock_ashrae_90_1_2007.ref_cases.json +0 -1456
  298. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/comstock_ashrae_90_1_2007/data/comstock_ashrae_90_1_2007.ref_lnup.json +0 -562
  299. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/comstock_ashrae_90_1_2010/data/comstock_ashrae_90_1_2010.ext_ltg.json +0 -169
  300. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/comstock_ashrae_90_1_2010/data/comstock_ashrae_90_1_2010.ref_cases.json +0 -1456
  301. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/comstock_ashrae_90_1_2010/data/comstock_ashrae_90_1_2010.ref_lnup.json +0 -562
  302. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/comstock_ashrae_90_1_2013/data/comstock_ashrae_90_1_2013.ext_ltg.json +0 -169
  303. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/comstock_ashrae_90_1_2013/data/comstock_ashrae_90_1_2013.ref_cases.json +0 -1456
  304. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/comstock_ashrae_90_1_2013/data/comstock_ashrae_90_1_2013.ref_lnup.json +0 -562
  305. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/comstock_ashrae_90_1_2016/data/comstock_ashrae_90_1_2016.ext_ltg.json +0 -169
  306. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/comstock_ashrae_90_1_2016/data/comstock_ashrae_90_1_2016.ref_cases.json +0 -763
  307. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/comstock_ashrae_90_1_2016/data/comstock_ashrae_90_1_2016.ref_lnup.json +0 -562
  308. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/comstock_ashrae_90_1_2019/data/comstock_ashrae_90_1_2019.ext_ltg.json +0 -169
  309. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/comstock_ashrae_90_1_2019/data/comstock_ashrae_90_1_2019.ref_cases.json +0 -763
  310. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/comstock_ashrae_90_1_2019/data/comstock_ashrae_90_1_2019.ref_lnup.json +0 -562
  311. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/comstock_doe_ref_1980_2004/data/comstock_doe_ref_1980_2004.ext_ltg.json +0 -169
  312. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/comstock_doe_ref_1980_2004/data/comstock_doe_ref_1980_2004.ref_cases.json +0 -1456
  313. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/comstock_doe_ref_1980_2004/data/comstock_doe_ref_1980_2004.ref_lnup.json +0 -562
  314. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/comstock_doe_ref_pre_1980/data/comstock_doe_ref_pre_1980.ext_ltg.json +0 -169
  315. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/comstock_doe_ref_pre_1980/data/comstock_doe_ref_pre_1980.ref_cases.json +0 -1456
  316. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/comstock_doe_ref_pre_1980/data/comstock_doe_ref_pre_1980.ref_lnup.json +0 -562
  317. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.prm_economizers.json +0 -213
  318. data/lib/openstudio-standards/standards/cbes/cbes.Space.rb +0 -11
  319. data/lib/openstudio-standards/standards/cbes/cbes_t24_2005/cbes_t24_2005.Space.rb +0 -11
  320. data/lib/openstudio-standards/standards/cbes/cbes_t24_2008/cbes_t24_2008.Space.rb +0 -11
  321. data/lib/openstudio-standards/standards/deer/deer.Space.rb +0 -20
  322. data/lib/openstudio-standards/standards/deer/deer_1985/data/deer_1985.ref_cases.json +0 -1456
  323. data/lib/openstudio-standards/standards/deer/deer_1985/data/deer_1985.ref_lnup.json +0 -562
  324. data/lib/openstudio-standards/standards/deer/deer_1996/data/deer_1996.ref_cases.json +0 -1456
  325. data/lib/openstudio-standards/standards/deer/deer_1996/data/deer_1996.ref_lnup.json +0 -562
  326. data/lib/openstudio-standards/standards/deer/deer_2003/data/deer_2003.ref_cases.json +0 -1456
  327. data/lib/openstudio-standards/standards/deer/deer_2003/data/deer_2003.ref_lnup.json +0 -562
  328. data/lib/openstudio-standards/standards/deer/deer_2007/data/deer_2007.ref_cases.json +0 -1456
  329. data/lib/openstudio-standards/standards/deer/deer_2007/data/deer_2007.ref_lnup.json +0 -562
  330. data/lib/openstudio-standards/standards/deer/deer_2011/data/deer_2011.ref_cases.json +0 -1456
  331. data/lib/openstudio-standards/standards/deer/deer_2011/data/deer_2011.ref_lnup.json +0 -562
  332. data/lib/openstudio-standards/standards/deer/deer_2014/data/deer_2014.ref_cases.json +0 -1456
  333. data/lib/openstudio-standards/standards/deer/deer_2014/data/deer_2014.ref_lnup.json +0 -562
  334. data/lib/openstudio-standards/standards/deer/deer_2015/data/deer_2015.ref_cases.json +0 -1456
  335. data/lib/openstudio-standards/standards/deer/deer_2015/data/deer_2015.ref_lnup.json +0 -562
  336. data/lib/openstudio-standards/standards/deer/deer_2017/data/deer_2017.ref_cases.json +0 -1456
  337. data/lib/openstudio-standards/standards/deer/deer_2017/data/deer_2017.ref_lnup.json +0 -562
  338. data/lib/openstudio-standards/standards/deer/deer_2020/data/deer_2020.ref_cases.json +0 -1456
  339. data/lib/openstudio-standards/standards/deer/deer_2020/data/deer_2020.ref_lnup.json +0 -562
  340. data/lib/openstudio-standards/standards/deer/deer_2025/data/deer_2025.ref_cases.json +0 -1456
  341. data/lib/openstudio-standards/standards/deer/deer_2025/data/deer_2025.ref_lnup.json +0 -562
  342. data/lib/openstudio-standards/standards/deer/deer_2030/data/deer_2030.ref_cases.json +0 -1456
  343. data/lib/openstudio-standards/standards/deer/deer_2030/data/deer_2030.ref_lnup.json +0 -562
  344. data/lib/openstudio-standards/standards/deer/deer_2035/data/deer_2035.ref_cases.json +0 -1456
  345. data/lib/openstudio-standards/standards/deer/deer_2035/data/deer_2035.ref_lnup.json +0 -562
  346. data/lib/openstudio-standards/standards/deer/deer_2040/data/deer_2040.ref_cases.json +0 -1456
  347. data/lib/openstudio-standards/standards/deer/deer_2040/data/deer_2040.ref_lnup.json +0 -562
  348. data/lib/openstudio-standards/standards/deer/deer_2045/data/deer_2045.ref_cases.json +0 -1456
  349. data/lib/openstudio-standards/standards/deer/deer_2045/data/deer_2045.ref_lnup.json +0 -562
  350. data/lib/openstudio-standards/standards/deer/deer_2050/data/deer_2050.ref_cases.json +0 -1456
  351. data/lib/openstudio-standards/standards/deer/deer_2050/data/deer_2050.ref_lnup.json +0 -562
  352. data/lib/openstudio-standards/standards/deer/deer_2055/data/deer_2055.ref_cases.json +0 -1456
  353. data/lib/openstudio-standards/standards/deer/deer_2055/data/deer_2055.ref_lnup.json +0 -562
  354. data/lib/openstudio-standards/standards/deer/deer_2060/data/deer_2060.ref_cases.json +0 -1456
  355. data/lib/openstudio-standards/standards/deer/deer_2060/data/deer_2060.ref_lnup.json +0 -562
  356. data/lib/openstudio-standards/standards/deer/deer_2065/data/deer_2065.ref_cases.json +0 -1456
  357. data/lib/openstudio-standards/standards/deer/deer_2065/data/deer_2065.ref_lnup.json +0 -562
  358. data/lib/openstudio-standards/standards/deer/deer_2070/data/deer_2070.ref_cases.json +0 -1456
  359. data/lib/openstudio-standards/standards/deer/deer_2070/data/deer_2070.ref_lnup.json +0 -562
  360. data/lib/openstudio-standards/standards/deer/deer_2075/data/deer_2075.ref_cases.json +0 -1456
  361. data/lib/openstudio-standards/standards/deer/deer_2075/data/deer_2075.ref_lnup.json +0 -562
  362. data/lib/openstudio-standards/standards/deer/deer_pre_1975/data/deer_pre_1975.ref_cases.json +0 -1456
  363. data/lib/openstudio-standards/standards/deer/deer_pre_1975/data/deer_pre_1975.ref_lnup.json +0 -562
@@ -669,45 +669,6 @@
669
669
  0.0
670
670
  ]
671
671
  },
672
- {
673
- "name": "ApartmentHighRise INF_APT_SCH",
674
- "category": "Unknown",
675
- "units": null,
676
- "day_types": "Default|WntrDsn|SmrDsn",
677
- "start_date": "2014-01-01T00:00:00+00:00",
678
- "end_date": "2014-12-31T00:00:00+00:00",
679
- "type": "Constant",
680
- "notes": "From DOE Prototype Buildings",
681
- "values": [
682
- 1.0
683
- ]
684
- },
685
- {
686
- "name": "ApartmentHighRise INF_COR_SCH",
687
- "category": "Unknown",
688
- "units": null,
689
- "day_types": "Default|WntrDsn|SmrDsn",
690
- "start_date": "2014-01-01T00:00:00+00:00",
691
- "end_date": "2014-12-31T00:00:00+00:00",
692
- "type": "Constant",
693
- "notes": "From DOE Prototype Buildings",
694
- "values": [
695
- 1.0
696
- ]
697
- },
698
- {
699
- "name": "ApartmentHighRise INF_OFF_SCH",
700
- "category": "Unknown",
701
- "units": null,
702
- "day_types": "Default|WntrDsn|SmrDsn",
703
- "start_date": "2014-01-01T00:00:00+00:00",
704
- "end_date": "2014-12-31T00:00:00+00:00",
705
- "type": "Constant",
706
- "notes": "From DOE Prototype Buildings",
707
- "values": [
708
- 1.0
709
- ]
710
- },
711
672
  {
712
673
  "name": "ApartmentHighRise LTG_APT_SCH",
713
674
  "category": "Unknown",
@@ -2538,45 +2499,6 @@
2538
2499
  0.0
2539
2500
  ]
2540
2501
  },
2541
- {
2542
- "name": "ApartmentMidRise INF_APT_SCH",
2543
- "category": "Unknown",
2544
- "units": null,
2545
- "day_types": "Default|WntrDsn|SmrDsn",
2546
- "start_date": "2014-01-01T00:00:00+00:00",
2547
- "end_date": "2014-12-31T00:00:00+00:00",
2548
- "type": "Constant",
2549
- "notes": "From DOE Prototype Buildings",
2550
- "values": [
2551
- 1.0
2552
- ]
2553
- },
2554
- {
2555
- "name": "ApartmentMidRise INF_COR_SCH",
2556
- "category": "Unknown",
2557
- "units": null,
2558
- "day_types": "Default|WntrDsn|SmrDsn",
2559
- "start_date": "2014-01-01T00:00:00+00:00",
2560
- "end_date": "2014-12-31T00:00:00+00:00",
2561
- "type": "Constant",
2562
- "notes": "From DOE Prototype Buildings",
2563
- "values": [
2564
- 1.0
2565
- ]
2566
- },
2567
- {
2568
- "name": "ApartmentMidRise INF_OFF_SCH",
2569
- "category": "Unknown",
2570
- "units": null,
2571
- "day_types": "Default|WntrDsn|SmrDsn",
2572
- "start_date": "2014-01-01T00:00:00+00:00",
2573
- "end_date": "2014-12-31T00:00:00+00:00",
2574
- "type": "Constant",
2575
- "notes": "From DOE Prototype Buildings",
2576
- "values": [
2577
- 1.0
2578
- ]
2579
- },
2580
2502
  {
2581
2503
  "name": "ApartmentMidRise LTG_APT_SCH",
2582
2504
  "category": "Unknown",
@@ -7765,114 +7687,6 @@
7765
7687
  0.0
7766
7688
  ]
7767
7689
  },
7768
- {
7769
- "name": "College INFIL_SCH_PNNL",
7770
- "category": "Infiltration",
7771
- "units": "FRACTION",
7772
- "day_types": "Default|Sun|Hol",
7773
- "start_date": "2019-01-01T00:00:00+00:00",
7774
- "end_date": "2019-12-31T00:00:00+00:00",
7775
- "type": "Hourly",
7776
- "notes": null,
7777
- "values": [
7778
- 1.0,
7779
- 1.0,
7780
- 1.0,
7781
- 1.0,
7782
- 1.0,
7783
- 1.0,
7784
- 1.0,
7785
- 1.0,
7786
- 1.0,
7787
- 1.0,
7788
- 1.0,
7789
- 1.0,
7790
- 1.0,
7791
- 1.0,
7792
- 1.0,
7793
- 1.0,
7794
- 1.0,
7795
- 1.0,
7796
- 1.0,
7797
- 1.0,
7798
- 1.0,
7799
- 1.0,
7800
- 1.0,
7801
- 1.0
7802
- ]
7803
- },
7804
- {
7805
- "name": "College INFIL_SCH_PNNL",
7806
- "category": "Infiltration",
7807
- "units": "FRACTION",
7808
- "day_types": "Sat|WntrDsn",
7809
- "start_date": "2019-01-01T00:00:00+00:00",
7810
- "end_date": "2019-12-31T00:00:00+00:00",
7811
- "type": "Hourly",
7812
- "notes": null,
7813
- "values": [
7814
- 1.0,
7815
- 1.0,
7816
- 1.0,
7817
- 1.0,
7818
- 1.0,
7819
- 1.0,
7820
- 1.0,
7821
- 1.0,
7822
- 1.0,
7823
- 1.0,
7824
- 1.0,
7825
- 1.0,
7826
- 1.0,
7827
- 1.0,
7828
- 1.0,
7829
- 1.0,
7830
- 1.0,
7831
- 1.0,
7832
- 1.0,
7833
- 1.0,
7834
- 1.0,
7835
- 1.0,
7836
- 1.0,
7837
- 1.0
7838
- ]
7839
- },
7840
- {
7841
- "name": "College INFIL_SCH_PNNL",
7842
- "category": "Infiltration",
7843
- "units": "FRACTION",
7844
- "day_types": "Wkdy|SmrDsn",
7845
- "start_date": "2019-01-01T00:00:00+00:00",
7846
- "end_date": "2019-12-31T00:00:00+00:00",
7847
- "type": "Hourly",
7848
- "notes": null,
7849
- "values": [
7850
- 1.0,
7851
- 1.0,
7852
- 1.0,
7853
- 1.0,
7854
- 1.0,
7855
- 1.0,
7856
- 0.25,
7857
- 0.25,
7858
- 0.25,
7859
- 0.25,
7860
- 0.25,
7861
- 0.25,
7862
- 0.25,
7863
- 0.25,
7864
- 0.25,
7865
- 0.25,
7866
- 0.25,
7867
- 0.25,
7868
- 0.25,
7869
- 0.25,
7870
- 0.25,
7871
- 1.0,
7872
- 1.0,
7873
- 1.0
7874
- ]
7875
- },
7876
7690
  {
7877
7691
  "name": "College MinOA_MotorizedDamper_Sched",
7878
7692
  "category": "OutdoorAir",
@@ -9887,176 +9701,6 @@
9887
9701
  0.0
9888
9702
  ]
9889
9703
  },
9890
- {
9891
- "name": "Courthouse_INFIL_QUARTER_ON_SCH",
9892
- "category": "Infiltration",
9893
- "units": "MULTIPLIER",
9894
- "day_types": "Default|SmrDsn",
9895
- "start_date": "2018-01-01T00:00:00+00:00",
9896
- "end_date": "2018-12-31T00:00:00+00:00",
9897
- "type": "Hourly",
9898
- "notes": "Used Medium Office Infil Quarter On",
9899
- "values": [
9900
- 1.0,
9901
- 1.0,
9902
- 1.0,
9903
- 1.0,
9904
- 1.0,
9905
- 1.0,
9906
- 0.25,
9907
- 0.25,
9908
- 0.25,
9909
- 0.25,
9910
- 0.25,
9911
- 0.25,
9912
- 0.25,
9913
- 0.25,
9914
- 0.25,
9915
- 0.25,
9916
- 0.25,
9917
- 0.25,
9918
- 0.25,
9919
- 0.25,
9920
- 0.25,
9921
- 0.25,
9922
- 1.0,
9923
- 1.0
9924
- ]
9925
- },
9926
- {
9927
- "name": "Courthouse_INFIL_QUARTER_ON_SCH",
9928
- "category": "Infiltration",
9929
- "units": "MULTIPLIER",
9930
- "day_types": "Sun",
9931
- "start_date": "2018-01-01T00:00:00+00:00",
9932
- "end_date": "2018-12-31T00:00:00+00:00",
9933
- "type": "Constant",
9934
- "notes": "Used Medium Office Infil Quarter On",
9935
- "values": [
9936
- 1.0
9937
- ]
9938
- },
9939
- {
9940
- "name": "Courthouse_INFIL_QUARTER_ON_SCH",
9941
- "category": "Infiltration",
9942
- "units": "MULTIPLIER",
9943
- "day_types": "WntrDsn|Sat",
9944
- "start_date": "2018-01-01T00:00:00+00:00",
9945
- "end_date": "2018-12-31T00:00:00+00:00",
9946
- "type": "Hourly",
9947
- "notes": "Used Medium Office Infil Quarter On",
9948
- "values": [
9949
- 1.0,
9950
- 1.0,
9951
- 1.0,
9952
- 1.0,
9953
- 1.0,
9954
- 1.0,
9955
- 0.25,
9956
- 0.25,
9957
- 0.25,
9958
- 0.25,
9959
- 0.25,
9960
- 0.25,
9961
- 0.25,
9962
- 0.25,
9963
- 0.25,
9964
- 0.25,
9965
- 0.25,
9966
- 0.25,
9967
- 1.0,
9968
- 1.0,
9969
- 1.0,
9970
- 1.0,
9971
- 1.0,
9972
- 1.0
9973
- ]
9974
- },
9975
- {
9976
- "name": "Courthouse_INFIL_SCH",
9977
- "category": "Infiltration",
9978
- "units": "MULTIPLIER",
9979
- "day_types": "Default",
9980
- "start_date": "2018-01-01T00:00:00+00:00",
9981
- "end_date": "2018-12-31T00:00:00+00:00",
9982
- "type": "Constant",
9983
- "notes": "Used OfficeMedium INFIL_SCH_PNNL",
9984
- "values": [
9985
- 1.0
9986
- ]
9987
- },
9988
- {
9989
- "name": "Courthouse_INFIL_SCH",
9990
- "category": "Infiltration",
9991
- "units": "MULTIPLIER",
9992
- "day_types": "SmrDsn|Wkdy",
9993
- "start_date": "2018-01-01T00:00:00+00:00",
9994
- "end_date": "2018-12-31T00:00:00+00:00",
9995
- "type": "Hourly",
9996
- "notes": "Used OfficeMedium INFIL_SCH_PNNL",
9997
- "values": [
9998
- 1.0,
9999
- 1.0,
10000
- 1.0,
10001
- 1.0,
10002
- 1.0,
10003
- 1.0,
10004
- 0.25,
10005
- 0.25,
10006
- 0.25,
10007
- 0.25,
10008
- 0.25,
10009
- 0.25,
10010
- 0.25,
10011
- 0.25,
10012
- 0.25,
10013
- 0.25,
10014
- 0.25,
10015
- 0.25,
10016
- 0.25,
10017
- 0.25,
10018
- 0.25,
10019
- 0.25,
10020
- 1.0,
10021
- 1.0
10022
- ]
10023
- },
10024
- {
10025
- "name": "Courthouse_INFIL_SCH",
10026
- "category": "Infiltration",
10027
- "units": "MULTIPLIER",
10028
- "day_types": "WntrDsn|Sat",
10029
- "start_date": "2018-01-01T00:00:00+00:00",
10030
- "end_date": "2018-12-31T00:00:00+00:00",
10031
- "type": "Hourly",
10032
- "notes": "Used OfficeMedium INFIL_SCH_PNNL",
10033
- "values": [
10034
- 1.0,
10035
- 1.0,
10036
- 1.0,
10037
- 1.0,
10038
- 1.0,
10039
- 1.0,
10040
- 0.25,
10041
- 0.25,
10042
- 0.25,
10043
- 0.25,
10044
- 0.25,
10045
- 0.25,
10046
- 0.25,
10047
- 0.25,
10048
- 0.25,
10049
- 0.25,
10050
- 0.25,
10051
- 0.25,
10052
- 1.0,
10053
- 1.0,
10054
- 1.0,
10055
- 1.0,
10056
- 1.0,
10057
- 1.0
10058
- ]
10059
- },
10060
9704
  {
10061
9705
  "name": "Courthouse_MinOA_MotorizedDamper_Sched",
10062
9706
  "category": "OA Air",
@@ -245449,42 +245093,6 @@
245449
245093
  19.0
245450
245094
  ]
245451
245095
  },
245452
- {
245453
- "name": "FullServiceRestaurant Infil Half On",
245454
- "category": "Infiltration",
245455
- "units": null,
245456
- "day_types": "Default|WntrDsn|SmrDsn|Sun|Sat",
245457
- "start_date": "2014-01-01T00:00:00+00:00",
245458
- "end_date": "2014-12-31T00:00:00+00:00",
245459
- "type": "Hourly",
245460
- "notes": "From DOE Reference Buildings ",
245461
- "values": [
245462
- 1.0,
245463
- 1.0,
245464
- 1.0,
245465
- 1.0,
245466
- 1.0,
245467
- 0.5,
245468
- 0.5,
245469
- 0.5,
245470
- 0.5,
245471
- 0.5,
245472
- 0.5,
245473
- 0.5,
245474
- 0.5,
245475
- 0.5,
245476
- 0.5,
245477
- 0.5,
245478
- 0.5,
245479
- 0.5,
245480
- 0.5,
245481
- 0.5,
245482
- 0.5,
245483
- 0.5,
245484
- 0.5,
245485
- 0.5
245486
- ]
245487
- },
245488
245096
  {
245489
245097
  "name": "FullServiceRestaurant Work Eff",
245490
245098
  "category": "Unknown",
@@ -249845,45 +249453,6 @@
249845
249453
  1.0
249846
249454
  ]
249847
249455
  },
249848
- {
249849
- "name": "Hospital INFIL_SCH_PNNL",
249850
- "category": "Infiltration",
249851
- "units": null,
249852
- "day_types": "Default|WntrDsn|SmrDsn|Sat|Wkdy",
249853
- "start_date": "2014-01-01T00:00:00+00:00",
249854
- "end_date": "2014-12-31T00:00:00+00:00",
249855
- "type": "Constant",
249856
- "notes": "From DOE Prototype Buildings",
249857
- "values": [
249858
- 0.25
249859
- ]
249860
- },
249861
- {
249862
- "name": "Hospital Infil Quarter On",
249863
- "category": "Infiltration",
249864
- "units": null,
249865
- "day_types": "Default|Sun|Sat",
249866
- "start_date": "2014-01-01T00:00:00+00:00",
249867
- "end_date": "2014-12-31T00:00:00+00:00",
249868
- "type": "Constant",
249869
- "notes": "From DOE Reference Buildings ",
249870
- "values": [
249871
- 0.25
249872
- ]
249873
- },
249874
- {
249875
- "name": "Hospital Infil Quarter On",
249876
- "category": "Infiltration",
249877
- "units": null,
249878
- "day_types": "WntrDsn|SmrDsn",
249879
- "start_date": "2014-01-01T00:00:00+00:00",
249880
- "end_date": "2014-12-31T00:00:00+00:00",
249881
- "type": "Constant",
249882
- "notes": "From DOE Reference Buildings ",
249883
- "values": [
249884
- 1.0
249885
- ]
249886
- },
249887
249456
  {
249888
249457
  "name": "Hospital Kitchen ClgSetp",
249889
249458
  "category": "Thermostat Setpoint",
@@ -256837,45 +256406,6 @@
256837
256406
  50.0
256838
256407
  ]
256839
256408
  },
256840
- {
256841
- "name": "HotelLarge INFIL_HALF_ON_SCH",
256842
- "category": "Infiltration",
256843
- "units": null,
256844
- "day_types": "Default|WntrDsn|SmrDsn",
256845
- "start_date": "2014-01-01T00:00:00+00:00",
256846
- "end_date": "2014-12-31T00:00:00+00:00",
256847
- "type": "Constant",
256848
- "notes": "From DOE Prototype Buildings",
256849
- "values": [
256850
- 0.5
256851
- ]
256852
- },
256853
- {
256854
- "name": "HotelLarge INFIL_QUARTER_ON_SCH",
256855
- "category": "Infiltration",
256856
- "units": null,
256857
- "day_types": "Default|WntrDsn|SmrDsn",
256858
- "start_date": "2014-01-01T00:00:00+00:00",
256859
- "end_date": "2014-12-31T00:00:00+00:00",
256860
- "type": "Constant",
256861
- "notes": "From DOE Prototype Buildings",
256862
- "values": [
256863
- 0.25
256864
- ]
256865
- },
256866
- {
256867
- "name": "HotelLarge INFIL_SCH",
256868
- "category": "Infiltration",
256869
- "units": null,
256870
- "day_types": "Default|WntrDsn|SmrDsn",
256871
- "start_date": "2014-01-01T00:00:00+00:00",
256872
- "end_date": "2014-12-31T00:00:00+00:00",
256873
- "type": "Constant",
256874
- "notes": "From DOE Prototype Buildings",
256875
- "values": [
256876
- 1.0
256877
- ]
256878
- },
256879
256409
  {
256880
256410
  "name": "HotelLarge Kitchen Exhaust Fan Balanced Exhaust Fraction Schedule",
256881
256411
  "category": "Equipment",
@@ -260530,45 +260060,6 @@
260530
260060
  21.111
260531
260061
  ]
260532
260062
  },
260533
- {
260534
- "name": "HotelSmall CommonArea_Infil_Sch",
260535
- "category": "Infiltration",
260536
- "units": null,
260537
- "day_types": "Default",
260538
- "start_date": "2014-01-01T00:00:00+00:00",
260539
- "end_date": "2014-12-31T00:00:00+00:00",
260540
- "type": "Constant",
260541
- "notes": "From DOE Prototype Buildings",
260542
- "values": [
260543
- 0.25
260544
- ]
260545
- },
260546
- {
260547
- "name": "HotelSmall CommonArea_Infil_Sch",
260548
- "category": "Infiltration",
260549
- "units": null,
260550
- "day_types": "SmrDsn",
260551
- "start_date": "2014-01-01T00:00:00+00:00",
260552
- "end_date": "2014-12-31T00:00:00+00:00",
260553
- "type": "Constant",
260554
- "notes": "From DOE Prototype Buildings",
260555
- "values": [
260556
- 1.0
260557
- ]
260558
- },
260559
- {
260560
- "name": "HotelSmall CommonArea_Infil_Sch",
260561
- "category": "Infiltration",
260562
- "units": null,
260563
- "day_types": "WntrDsn",
260564
- "start_date": "2014-01-01T00:00:00+00:00",
260565
- "end_date": "2014-12-31T00:00:00+00:00",
260566
- "type": "Constant",
260567
- "notes": "From DOE Prototype Buildings",
260568
- "values": [
260569
- 0.0
260570
- ]
260571
- },
260572
260063
  {
260573
260064
  "name": "HotelSmall ELEV_LIGHT_FAN_SCH_24_7",
260574
260065
  "category": "Lighting",
@@ -261121,45 +260612,6 @@
261121
260612
  0.0
261122
260613
  ]
261123
260614
  },
261124
- {
261125
- "name": "HotelSmall GuestRoom_Infil_Sch",
261126
- "category": "Infiltration",
261127
- "units": null,
261128
- "day_types": "Default",
261129
- "start_date": "2014-01-01T00:00:00+00:00",
261130
- "end_date": "2014-12-31T00:00:00+00:00",
261131
- "type": "Constant",
261132
- "notes": "From DOE Prototype Buildings",
261133
- "values": [
261134
- 0.25
261135
- ]
261136
- },
261137
- {
261138
- "name": "HotelSmall GuestRoom_Infil_Sch",
261139
- "category": "Infiltration",
261140
- "units": null,
261141
- "day_types": "SmrDsn",
261142
- "start_date": "2014-01-01T00:00:00+00:00",
261143
- "end_date": "2014-12-31T00:00:00+00:00",
261144
- "type": "Constant",
261145
- "notes": "From DOE Prototype Buildings",
261146
- "values": [
261147
- 1.0
261148
- ]
261149
- },
261150
- {
261151
- "name": "HotelSmall GuestRoom_Infil_Sch",
261152
- "category": "Infiltration",
261153
- "units": null,
261154
- "day_types": "WntrDsn",
261155
- "start_date": "2014-01-01T00:00:00+00:00",
261156
- "end_date": "2014-12-31T00:00:00+00:00",
261157
- "type": "Constant",
261158
- "notes": "From DOE Prototype Buildings",
261159
- "values": [
261160
- 0.0
261161
- ]
261162
- },
261163
260615
  {
261164
260616
  "name": "HotelSmall GuestRoom_Occ_Sch",
261165
260617
  "category": "Occupancy",
@@ -263116,91 +262568,6 @@
263116
262568
  1.0
263117
262569
  ]
263118
262570
  },
263119
- {
263120
- "name": "Lab_INFIL_SCH_PNNL",
263121
- "category": "Infiltration",
263122
- "units": null,
263123
- "day_types": "Default",
263124
- "start_date": "2019-01-01T00:00:00+00:00",
263125
- "end_date": "2019-12-31T00:00:00+00:00",
263126
- "type": "Constant",
263127
- "notes": null,
263128
- "values": [
263129
- 1.0
263130
- ]
263131
- },
263132
- {
263133
- "name": "Lab_INFIL_SCH_PNNL",
263134
- "category": "Infiltration",
263135
- "units": null,
263136
- "day_types": "SmrDsn|Wkdy",
263137
- "start_date": "2019-01-01T00:00:00+00:00",
263138
- "end_date": "2019-12-31T00:00:00+00:00",
263139
- "type": "Hourly",
263140
- "notes": null,
263141
- "values": [
263142
- 1.0,
263143
- 1.0,
263144
- 1.0,
263145
- 1.0,
263146
- 1.0,
263147
- 1.0,
263148
- 0.25,
263149
- 0.25,
263150
- 0.25,
263151
- 0.25,
263152
- 0.25,
263153
- 0.25,
263154
- 0.25,
263155
- 0.25,
263156
- 0.25,
263157
- 0.25,
263158
- 0.25,
263159
- 0.25,
263160
- 0.25,
263161
- 0.25,
263162
- 0.25,
263163
- 0.25,
263164
- 1.0,
263165
- 1.0
263166
- ]
263167
- },
263168
- {
263169
- "name": "Lab_INFIL_SCH_PNNL",
263170
- "category": "Infiltration",
263171
- "units": null,
263172
- "day_types": "WntrDsn|Sat",
263173
- "start_date": "2019-01-01T00:00:00+00:00",
263174
- "end_date": "2019-12-31T00:00:00+00:00",
263175
- "type": "Hourly",
263176
- "notes": null,
263177
- "values": [
263178
- 1.0,
263179
- 1.0,
263180
- 1.0,
263181
- 1.0,
263182
- 1.0,
263183
- 1.0,
263184
- 0.25,
263185
- 0.25,
263186
- 0.25,
263187
- 0.25,
263188
- 0.25,
263189
- 0.25,
263190
- 0.25,
263191
- 0.25,
263192
- 0.25,
263193
- 0.25,
263194
- 0.25,
263195
- 0.25,
263196
- 1.0,
263197
- 1.0,
263198
- 1.0,
263199
- 1.0,
263200
- 1.0,
263201
- 1.0
263202
- ]
263203
- },
263204
262571
  {
263205
262572
  "name": "Lab_LIGHT_CORRIDOR_SCH",
263206
262573
  "category": "Lighting",
@@ -264063,91 +263430,6 @@
264063
263430
  21.0
264064
263431
  ]
264065
263432
  },
264066
- {
264067
- "name": "Large Office Infil Quarter On",
264068
- "category": "Infiltration",
264069
- "units": null,
264070
- "day_types": "Default|SmrDsn",
264071
- "start_date": "2014-01-01T00:00:00+00:00",
264072
- "end_date": "2014-12-31T00:00:00+00:00",
264073
- "type": "Hourly",
264074
- "notes": "From DOE Reference Buildings ",
264075
- "values": [
264076
- 1.0,
264077
- 1.0,
264078
- 1.0,
264079
- 1.0,
264080
- 1.0,
264081
- 1.0,
264082
- 0.25,
264083
- 0.25,
264084
- 0.25,
264085
- 0.25,
264086
- 0.25,
264087
- 0.25,
264088
- 0.25,
264089
- 0.25,
264090
- 0.25,
264091
- 0.25,
264092
- 0.25,
264093
- 0.25,
264094
- 0.25,
264095
- 0.25,
264096
- 0.25,
264097
- 0.25,
264098
- 1.0,
264099
- 1.0
264100
- ]
264101
- },
264102
- {
264103
- "name": "Large Office Infil Quarter On",
264104
- "category": "Infiltration",
264105
- "units": null,
264106
- "day_types": "Sun",
264107
- "start_date": "2014-01-01T00:00:00+00:00",
264108
- "end_date": "2014-12-31T00:00:00+00:00",
264109
- "type": "Constant",
264110
- "notes": "From DOE Reference Buildings ",
264111
- "values": [
264112
- 1.0
264113
- ]
264114
- },
264115
- {
264116
- "name": "Large Office Infil Quarter On",
264117
- "category": "Infiltration",
264118
- "units": null,
264119
- "day_types": "WntrDsn|Sat",
264120
- "start_date": "2014-01-01T00:00:00+00:00",
264121
- "end_date": "2014-12-31T00:00:00+00:00",
264122
- "type": "Hourly",
264123
- "notes": "From DOE Reference Buildings ",
264124
- "values": [
264125
- 1.0,
264126
- 1.0,
264127
- 1.0,
264128
- 1.0,
264129
- 1.0,
264130
- 1.0,
264131
- 0.25,
264132
- 0.25,
264133
- 0.25,
264134
- 0.25,
264135
- 0.25,
264136
- 0.25,
264137
- 0.25,
264138
- 0.25,
264139
- 0.25,
264140
- 0.25,
264141
- 0.25,
264142
- 0.25,
264143
- 1.0,
264144
- 1.0,
264145
- 1.0,
264146
- 1.0,
264147
- 1.0,
264148
- 1.0
264149
- ]
264150
- },
264151
263433
  {
264152
263434
  "name": "Large Office Work Eff",
264153
263435
  "category": "Unknown",
@@ -265856,19 +265138,6 @@
265856
265138
  21.0
265857
265139
  ]
265858
265140
  },
265859
- {
265860
- "name": "LargeHotel Infil Quarter On",
265861
- "category": "Infiltration",
265862
- "units": null,
265863
- "day_types": "Default|WntrDsn|SmrDsn",
265864
- "start_date": "2014-01-01T00:00:00+00:00",
265865
- "end_date": "2014-12-31T00:00:00+00:00",
265866
- "type": "Constant",
265867
- "notes": "From DOE Reference Buildings ",
265868
- "values": [
265869
- 0.25
265870
- ]
265871
- },
265872
265141
  {
265873
265142
  "name": "LargeHotel Kitchen ClgSetp",
265874
265143
  "category": "Thermostat Setpoint",
@@ -268586,91 +267855,6 @@
268586
267855
  21.0
268587
267856
  ]
268588
267857
  },
268589
- {
268590
- "name": "Medium Office Infil Quarter On",
268591
- "category": "Infiltration",
268592
- "units": null,
268593
- "day_types": "Default|SmrDsn",
268594
- "start_date": "2014-01-01T00:00:00+00:00",
268595
- "end_date": "2014-12-31T00:00:00+00:00",
268596
- "type": "Hourly",
268597
- "notes": "From DOE Reference Buildings ",
268598
- "values": [
268599
- 1.0,
268600
- 1.0,
268601
- 1.0,
268602
- 1.0,
268603
- 1.0,
268604
- 1.0,
268605
- 0.25,
268606
- 0.25,
268607
- 0.25,
268608
- 0.25,
268609
- 0.25,
268610
- 0.25,
268611
- 0.25,
268612
- 0.25,
268613
- 0.25,
268614
- 0.25,
268615
- 0.25,
268616
- 0.25,
268617
- 0.25,
268618
- 0.25,
268619
- 0.25,
268620
- 0.25,
268621
- 1.0,
268622
- 1.0
268623
- ]
268624
- },
268625
- {
268626
- "name": "Medium Office Infil Quarter On",
268627
- "category": "Infiltration",
268628
- "units": null,
268629
- "day_types": "Sun",
268630
- "start_date": "2014-01-01T00:00:00+00:00",
268631
- "end_date": "2014-12-31T00:00:00+00:00",
268632
- "type": "Constant",
268633
- "notes": "From DOE Reference Buildings ",
268634
- "values": [
268635
- 1.0
268636
- ]
268637
- },
268638
- {
268639
- "name": "Medium Office Infil Quarter On",
268640
- "category": "Infiltration",
268641
- "units": null,
268642
- "day_types": "WntrDsn|Sat",
268643
- "start_date": "2014-01-01T00:00:00+00:00",
268644
- "end_date": "2014-12-31T00:00:00+00:00",
268645
- "type": "Hourly",
268646
- "notes": "From DOE Reference Buildings ",
268647
- "values": [
268648
- 1.0,
268649
- 1.0,
268650
- 1.0,
268651
- 1.0,
268652
- 1.0,
268653
- 1.0,
268654
- 0.25,
268655
- 0.25,
268656
- 0.25,
268657
- 0.25,
268658
- 0.25,
268659
- 0.25,
268660
- 0.25,
268661
- 0.25,
268662
- 0.25,
268663
- 0.25,
268664
- 0.25,
268665
- 0.25,
268666
- 1.0,
268667
- 1.0,
268668
- 1.0,
268669
- 1.0,
268670
- 1.0,
268671
- 1.0
268672
- ]
268673
- },
268674
267858
  {
268675
267859
  "name": "Medium Office Work Eff",
268676
267860
  "category": "Unknown",
@@ -269252,68 +268436,6 @@
269252
268436
  1.0
269253
268437
  ]
269254
268438
  },
269255
- {
269256
- "name": "MidriseApartment Infil",
269257
- "category": "Infiltration",
269258
- "units": null,
269259
- "day_types": "Default|WntrDsn|SmrDsn",
269260
- "start_date": "2014-01-01T00:00:00+00:00",
269261
- "end_date": "2014-12-31T00:00:00+00:00",
269262
- "type": "Constant",
269263
- "notes": "From DOE Reference Buildings ",
269264
- "values": [
269265
- 1.0
269266
- ]
269267
- },
269268
- {
269269
- "name": "MidriseApartment OFFICE Infil",
269270
- "category": "Infiltration",
269271
- "units": null,
269272
- "day_types": "Default",
269273
- "start_date": "2014-01-01T00:00:00+00:00",
269274
- "end_date": "2014-12-31T00:00:00+00:00",
269275
- "type": "Hourly",
269276
- "notes": "From DOE Reference Buildings ",
269277
- "values": [
269278
- 1.0,
269279
- 1.0,
269280
- 1.0,
269281
- 1.0,
269282
- 1.0,
269283
- 1.0,
269284
- 1.0,
269285
- 1.0,
269286
- 0.25,
269287
- 0.25,
269288
- 0.25,
269289
- 0.25,
269290
- 0.25,
269291
- 0.25,
269292
- 0.25,
269293
- 0.25,
269294
- 0.25,
269295
- 1.0,
269296
- 1.0,
269297
- 1.0,
269298
- 1.0,
269299
- 1.0,
269300
- 1.0,
269301
- 1.0
269302
- ]
269303
- },
269304
- {
269305
- "name": "MidriseApartment OFFICE Infil",
269306
- "category": "Infiltration",
269307
- "units": null,
269308
- "day_types": "WntrDsn|SmrDsn|Wknd",
269309
- "start_date": "2014-01-01T00:00:00+00:00",
269310
- "end_date": "2014-12-31T00:00:00+00:00",
269311
- "type": "Constant",
269312
- "notes": "From DOE Reference Buildings ",
269313
- "values": [
269314
- 1.0
269315
- ]
269316
- },
269317
268439
  {
269318
268440
  "name": "MidriseApartment Office ClgSetp",
269319
268441
  "category": "Thermostat Setpoint",
@@ -278468,91 +277590,6 @@
278468
277590
  20.0
278469
277591
  ]
278470
277592
  },
278471
- {
278472
- "name": "Office Infil Quarter On",
278473
- "category": "Infiltration",
278474
- "units": null,
278475
- "day_types": "Default|SmrDsn",
278476
- "start_date": "2014-01-01T00:00:00+00:00",
278477
- "end_date": "2014-12-31T00:00:00+00:00",
278478
- "type": "Hourly",
278479
- "notes": "From DOE Reference Buildings ",
278480
- "values": [
278481
- 1.0,
278482
- 1.0,
278483
- 1.0,
278484
- 1.0,
278485
- 1.0,
278486
- 1.0,
278487
- 0.25,
278488
- 0.25,
278489
- 0.25,
278490
- 0.25,
278491
- 0.25,
278492
- 0.25,
278493
- 0.25,
278494
- 0.25,
278495
- 0.25,
278496
- 0.25,
278497
- 0.25,
278498
- 0.25,
278499
- 0.25,
278500
- 0.25,
278501
- 0.25,
278502
- 0.25,
278503
- 1.0,
278504
- 1.0
278505
- ]
278506
- },
278507
- {
278508
- "name": "Office Infil Quarter On",
278509
- "category": "Infiltration",
278510
- "units": null,
278511
- "day_types": "Sun",
278512
- "start_date": "2014-01-01T00:00:00+00:00",
278513
- "end_date": "2014-12-31T00:00:00+00:00",
278514
- "type": "Constant",
278515
- "notes": "From DOE Reference Buildings ",
278516
- "values": [
278517
- 1.0
278518
- ]
278519
- },
278520
- {
278521
- "name": "Office Infil Quarter On",
278522
- "category": "Infiltration",
278523
- "units": null,
278524
- "day_types": "WntrDsn|Sat",
278525
- "start_date": "2014-01-01T00:00:00+00:00",
278526
- "end_date": "2014-12-31T00:00:00+00:00",
278527
- "type": "Hourly",
278528
- "notes": "From DOE Reference Buildings ",
278529
- "values": [
278530
- 1.0,
278531
- 1.0,
278532
- 1.0,
278533
- 1.0,
278534
- 1.0,
278535
- 1.0,
278536
- 0.25,
278537
- 0.25,
278538
- 0.25,
278539
- 0.25,
278540
- 0.25,
278541
- 0.25,
278542
- 0.25,
278543
- 0.25,
278544
- 0.25,
278545
- 0.25,
278546
- 0.25,
278547
- 0.25,
278548
- 1.0,
278549
- 1.0,
278550
- 1.0,
278551
- 1.0,
278552
- 1.0,
278553
- 1.0
278554
- ]
278555
- },
278556
277593
  {
278557
277594
  "name": "Office Misc Occ",
278558
277595
  "category": "Occupancy",
@@ -282500,261 +281537,6 @@
282500
281537
  0.0
282501
281538
  ]
282502
281539
  },
282503
- {
282504
- "name": "OfficeLarge INFIL_HALF_ON_SCH",
282505
- "category": "Infiltration",
282506
- "units": null,
282507
- "day_types": "Default",
282508
- "start_date": "2014-01-01T00:00:00+00:00",
282509
- "end_date": "2014-12-31T00:00:00+00:00",
282510
- "type": "Constant",
282511
- "notes": "From DOE Prototype Buildings",
282512
- "values": [
282513
- 1.0
282514
- ]
282515
- },
282516
- {
282517
- "name": "OfficeLarge INFIL_HALF_ON_SCH",
282518
- "category": "Infiltration",
282519
- "units": null,
282520
- "day_types": "SmrDsn|Wkdy",
282521
- "start_date": "2014-01-01T00:00:00+00:00",
282522
- "end_date": "2014-12-31T00:00:00+00:00",
282523
- "type": "Hourly",
282524
- "notes": "From DOE Prototype Buildings",
282525
- "values": [
282526
- 1.0,
282527
- 1.0,
282528
- 1.0,
282529
- 1.0,
282530
- 1.0,
282531
- 1.0,
282532
- 0.5,
282533
- 0.5,
282534
- 0.5,
282535
- 0.5,
282536
- 0.5,
282537
- 0.5,
282538
- 0.5,
282539
- 0.5,
282540
- 0.5,
282541
- 0.5,
282542
- 0.5,
282543
- 0.5,
282544
- 0.5,
282545
- 0.5,
282546
- 0.5,
282547
- 0.5,
282548
- 1.0,
282549
- 1.0
282550
- ]
282551
- },
282552
- {
282553
- "name": "OfficeLarge INFIL_HALF_ON_SCH",
282554
- "category": "Infiltration",
282555
- "units": null,
282556
- "day_types": "WntrDsn|Sat",
282557
- "start_date": "2014-01-01T00:00:00+00:00",
282558
- "end_date": "2014-12-31T00:00:00+00:00",
282559
- "type": "Hourly",
282560
- "notes": "From DOE Prototype Buildings",
282561
- "values": [
282562
- 1.0,
282563
- 1.0,
282564
- 1.0,
282565
- 1.0,
282566
- 1.0,
282567
- 1.0,
282568
- 0.5,
282569
- 0.5,
282570
- 0.5,
282571
- 0.5,
282572
- 0.5,
282573
- 0.5,
282574
- 0.5,
282575
- 0.5,
282576
- 0.5,
282577
- 0.5,
282578
- 0.5,
282579
- 0.5,
282580
- 1.0,
282581
- 1.0,
282582
- 1.0,
282583
- 1.0,
282584
- 1.0,
282585
- 1.0
282586
- ]
282587
- },
282588
- {
282589
- "name": "OfficeLarge INFIL_SCH",
282590
- "category": "Infiltration",
282591
- "units": null,
282592
- "day_types": "Default",
282593
- "start_date": "2014-01-01T00:00:00+00:00",
282594
- "end_date": "2014-12-31T00:00:00+00:00",
282595
- "type": "Constant",
282596
- "notes": "From DOE Prototype Buildings",
282597
- "values": [
282598
- 1.0
282599
- ]
282600
- },
282601
- {
282602
- "name": "OfficeLarge INFIL_SCH",
282603
- "category": "Infiltration",
282604
- "units": null,
282605
- "day_types": "SmrDsn|Wkdy",
282606
- "start_date": "2014-01-01T00:00:00+00:00",
282607
- "end_date": "2014-12-31T00:00:00+00:00",
282608
- "type": "Hourly",
282609
- "notes": "From DOE Prototype Buildings",
282610
- "values": [
282611
- 1.0,
282612
- 1.0,
282613
- 1.0,
282614
- 1.0,
282615
- 1.0,
282616
- 1.0,
282617
- 0.0,
282618
- 0.0,
282619
- 0.0,
282620
- 0.0,
282621
- 0.0,
282622
- 0.0,
282623
- 0.0,
282624
- 0.0,
282625
- 0.0,
282626
- 0.0,
282627
- 0.0,
282628
- 0.0,
282629
- 0.0,
282630
- 0.0,
282631
- 0.0,
282632
- 0.0,
282633
- 1.0,
282634
- 1.0
282635
- ]
282636
- },
282637
- {
282638
- "name": "OfficeLarge INFIL_SCH",
282639
- "category": "Infiltration",
282640
- "units": null,
282641
- "day_types": "WntrDsn|Sat",
282642
- "start_date": "2014-01-01T00:00:00+00:00",
282643
- "end_date": "2014-12-31T00:00:00+00:00",
282644
- "type": "Hourly",
282645
- "notes": "From DOE Prototype Buildings",
282646
- "values": [
282647
- 1.0,
282648
- 1.0,
282649
- 1.0,
282650
- 1.0,
282651
- 1.0,
282652
- 1.0,
282653
- 0.0,
282654
- 0.0,
282655
- 0.0,
282656
- 0.0,
282657
- 0.0,
282658
- 0.0,
282659
- 0.0,
282660
- 0.0,
282661
- 0.0,
282662
- 0.0,
282663
- 0.0,
282664
- 0.0,
282665
- 1.0,
282666
- 1.0,
282667
- 1.0,
282668
- 1.0,
282669
- 1.0,
282670
- 1.0
282671
- ]
282672
- },
282673
- {
282674
- "name": "OfficeLarge INFIL_SCH_PNNL",
282675
- "category": "Infiltration",
282676
- "units": null,
282677
- "day_types": "Default",
282678
- "start_date": "2014-01-01T00:00:00+00:00",
282679
- "end_date": "2014-12-31T00:00:00+00:00",
282680
- "type": "Constant",
282681
- "notes": "From DOE Prototype Buildings",
282682
- "values": [
282683
- 1.0
282684
- ]
282685
- },
282686
- {
282687
- "name": "OfficeLarge INFIL_SCH_PNNL",
282688
- "category": "Infiltration",
282689
- "units": null,
282690
- "day_types": "SmrDsn|Wkdy",
282691
- "start_date": "2014-01-01T00:00:00+00:00",
282692
- "end_date": "2014-12-31T00:00:00+00:00",
282693
- "type": "Hourly",
282694
- "notes": "From DOE Prototype Buildings",
282695
- "values": [
282696
- 1.0,
282697
- 1.0,
282698
- 1.0,
282699
- 1.0,
282700
- 1.0,
282701
- 1.0,
282702
- 0.25,
282703
- 0.25,
282704
- 0.25,
282705
- 0.25,
282706
- 0.25,
282707
- 0.25,
282708
- 0.25,
282709
- 0.25,
282710
- 0.25,
282711
- 0.25,
282712
- 0.25,
282713
- 0.25,
282714
- 0.25,
282715
- 0.25,
282716
- 0.25,
282717
- 0.25,
282718
- 1.0,
282719
- 1.0
282720
- ]
282721
- },
282722
- {
282723
- "name": "OfficeLarge INFIL_SCH_PNNL",
282724
- "category": "Infiltration",
282725
- "units": null,
282726
- "day_types": "WntrDsn|Sat",
282727
- "start_date": "2014-01-01T00:00:00+00:00",
282728
- "end_date": "2014-12-31T00:00:00+00:00",
282729
- "type": "Hourly",
282730
- "notes": "From DOE Prototype Buildings",
282731
- "values": [
282732
- 1.0,
282733
- 1.0,
282734
- 1.0,
282735
- 1.0,
282736
- 1.0,
282737
- 1.0,
282738
- 0.25,
282739
- 0.25,
282740
- 0.25,
282741
- 0.25,
282742
- 0.25,
282743
- 0.25,
282744
- 0.25,
282745
- 0.25,
282746
- 0.25,
282747
- 0.25,
282748
- 0.25,
282749
- 0.25,
282750
- 1.0,
282751
- 1.0,
282752
- 1.0,
282753
- 1.0,
282754
- 1.0,
282755
- 1.0
282756
- ]
282757
- },
282758
281540
  {
282759
281541
  "name": "OfficeLarge MinOA_MotorizedDamper_Sched",
282760
281542
  "category": "OA Air",
@@ -286790,8 +285572,8 @@
286790
285572
  ]
286791
285573
  },
286792
285574
  {
286793
- "name": "OfficeMedium INFIL_SCH_PNNL",
286794
- "category": "Infiltration",
285575
+ "name": "OfficeMedium MinOA_MotorizedDamper_Sched",
285576
+ "category": "OA Air",
286795
285577
  "units": null,
286796
285578
  "day_types": "Default",
286797
285579
  "start_date": "2014-01-01T00:00:00+00:00",
@@ -286799,12 +285581,12 @@
286799
285581
  "type": "Constant",
286800
285582
  "notes": "From DOE Prototype Buildings",
286801
285583
  "values": [
286802
- 1.0
285584
+ 0.0
286803
285585
  ]
286804
285586
  },
286805
285587
  {
286806
- "name": "OfficeMedium INFIL_SCH_PNNL",
286807
- "category": "Infiltration",
285588
+ "name": "OfficeMedium MinOA_MotorizedDamper_Sched",
285589
+ "category": "OA Air",
286808
285590
  "units": null,
286809
285591
  "day_types": "SmrDsn|Wkdy",
286810
285592
  "start_date": "2014-01-01T00:00:00+00:00",
@@ -286812,78 +285594,29 @@
286812
285594
  "type": "Hourly",
286813
285595
  "notes": "From DOE Prototype Buildings",
286814
285596
  "values": [
285597
+ 0.0,
285598
+ 0.0,
285599
+ 0.0,
285600
+ 0.0,
285601
+ 0.0,
285602
+ 0.0,
285603
+ 0.0,
286815
285604
  1.0,
286816
285605
  1.0,
286817
285606
  1.0,
286818
285607
  1.0,
286819
- 1.0,
286820
- 1.0,
286821
- 0.25,
286822
- 0.25,
286823
- 0.25,
286824
- 0.25,
286825
- 0.25,
286826
- 0.25,
286827
- 0.25,
286828
- 0.25,
286829
- 0.25,
286830
- 0.25,
286831
- 0.25,
286832
- 0.25,
286833
- 0.25,
286834
- 0.25,
286835
- 0.25,
286836
- 0.25,
286837
- 1.0,
286838
- 1.0
286839
- ]
286840
- },
286841
- {
286842
- "name": "OfficeMedium INFIL_SCH_PNNL",
286843
- "category": "Infiltration",
286844
- "units": null,
286845
- "day_types": "WntrDsn|Sat",
286846
- "start_date": "2014-01-01T00:00:00+00:00",
286847
- "end_date": "2014-12-31T00:00:00+00:00",
286848
- "type": "Hourly",
286849
- "notes": "From DOE Prototype Buildings",
286850
- "values": [
286851
285608
  1.0,
286852
285609
  1.0,
286853
285610
  1.0,
286854
285611
  1.0,
286855
285612
  1.0,
286856
285613
  1.0,
286857
- 0.25,
286858
- 0.25,
286859
- 0.25,
286860
- 0.25,
286861
- 0.25,
286862
- 0.25,
286863
- 0.25,
286864
- 0.25,
286865
- 0.25,
286866
- 0.25,
286867
- 0.25,
286868
- 0.25,
286869
285614
  1.0,
286870
285615
  1.0,
286871
285616
  1.0,
286872
285617
  1.0,
286873
285618
  1.0,
286874
- 1.0
286875
- ]
286876
- },
286877
- {
286878
- "name": "OfficeMedium MinOA_MotorizedDamper_Sched",
286879
- "category": "OA Air",
286880
- "units": null,
286881
- "day_types": "Default",
286882
- "start_date": "2014-01-01T00:00:00+00:00",
286883
- "end_date": "2014-12-31T00:00:00+00:00",
286884
- "type": "Constant",
286885
- "notes": "From DOE Prototype Buildings",
286886
- "values": [
285619
+ 0.0,
286887
285620
  0.0
286888
285621
  ]
286889
285622
  },
@@ -286891,43 +285624,7 @@
286891
285624
  "name": "OfficeMedium MinOA_MotorizedDamper_Sched",
286892
285625
  "category": "OA Air",
286893
285626
  "units": null,
286894
- "day_types": "SmrDsn|Wkdy",
286895
- "start_date": "2014-01-01T00:00:00+00:00",
286896
- "end_date": "2014-12-31T00:00:00+00:00",
286897
- "type": "Hourly",
286898
- "notes": "From DOE Prototype Buildings",
286899
- "values": [
286900
- 0.0,
286901
- 0.0,
286902
- 0.0,
286903
- 0.0,
286904
- 0.0,
286905
- 0.0,
286906
- 0.0,
286907
- 1.0,
286908
- 1.0,
286909
- 1.0,
286910
- 1.0,
286911
- 1.0,
286912
- 1.0,
286913
- 1.0,
286914
- 1.0,
286915
- 1.0,
286916
- 1.0,
286917
- 1.0,
286918
- 1.0,
286919
- 1.0,
286920
- 1.0,
286921
- 1.0,
286922
- 0.0,
286923
- 0.0
286924
- ]
286925
- },
286926
- {
286927
- "name": "OfficeMedium MinOA_MotorizedDamper_Sched",
286928
- "category": "OA Air",
286929
- "units": null,
286930
- "day_types": "WntrDsn|Sat",
285627
+ "day_types": "WntrDsn|Sat",
286931
285628
  "start_date": "2014-01-01T00:00:00+00:00",
286932
285629
  "end_date": "2014-12-31T00:00:00+00:00",
286933
285630
  "type": "Hourly",
@@ -290260,91 +288957,6 @@
290260
288957
  0.0
290261
288958
  ]
290262
288959
  },
290263
- {
290264
- "name": "OfficeSmall INFIL_QUARTER_ON_SCH",
290265
- "category": "Infiltration",
290266
- "units": null,
290267
- "day_types": "Default",
290268
- "start_date": "2014-01-01T00:00:00+00:00",
290269
- "end_date": "2014-12-31T00:00:00+00:00",
290270
- "type": "Constant",
290271
- "notes": "From DOE Prototype Buildings",
290272
- "values": [
290273
- 1.0
290274
- ]
290275
- },
290276
- {
290277
- "name": "OfficeSmall INFIL_QUARTER_ON_SCH",
290278
- "category": "Infiltration",
290279
- "units": null,
290280
- "day_types": "SmrDsn|Wkdy",
290281
- "start_date": "2014-01-01T00:00:00+00:00",
290282
- "end_date": "2014-12-31T00:00:00+00:00",
290283
- "type": "Hourly",
290284
- "notes": "From DOE Prototype Buildings",
290285
- "values": [
290286
- 1.0,
290287
- 1.0,
290288
- 1.0,
290289
- 1.0,
290290
- 1.0,
290291
- 1.0,
290292
- 1.0,
290293
- 0.25,
290294
- 0.25,
290295
- 0.25,
290296
- 0.25,
290297
- 0.25,
290298
- 0.25,
290299
- 0.25,
290300
- 0.25,
290301
- 0.25,
290302
- 0.25,
290303
- 0.25,
290304
- 0.25,
290305
- 1.0,
290306
- 1.0,
290307
- 1.0,
290308
- 1.0,
290309
- 1.0
290310
- ]
290311
- },
290312
- {
290313
- "name": "OfficeSmall INFIL_QUARTER_ON_SCH",
290314
- "category": "Infiltration",
290315
- "units": null,
290316
- "day_types": "WntrDsn|Sat",
290317
- "start_date": "2014-01-01T00:00:00+00:00",
290318
- "end_date": "2014-12-31T00:00:00+00:00",
290319
- "type": "Hourly",
290320
- "notes": "From DOE Prototype Buildings",
290321
- "values": [
290322
- 1.0,
290323
- 1.0,
290324
- 1.0,
290325
- 1.0,
290326
- 1.0,
290327
- 1.0,
290328
- 1.0,
290329
- 0.25,
290330
- 0.25,
290331
- 0.25,
290332
- 0.25,
290333
- 0.25,
290334
- 0.25,
290335
- 0.25,
290336
- 0.25,
290337
- 0.25,
290338
- 0.25,
290339
- 0.25,
290340
- 1.0,
290341
- 1.0,
290342
- 1.0,
290343
- 1.0,
290344
- 1.0,
290345
- 1.0
290346
- ]
290347
- },
290348
288960
  {
290349
288961
  "name": "OfficeSmall MinOA_MotorizedDamper_Sched",
290350
288962
  "category": "OA Air",
@@ -295492,58 +294104,6 @@
295492
294104
  0.0
295493
294105
  ]
295494
294106
  },
295495
- {
295496
- "name": "OutPatientHealthCare INFIL_HALF_ON_SCH",
295497
- "category": "Infiltration",
295498
- "units": null,
295499
- "day_types": "Default|Sat|Wkdy",
295500
- "start_date": "2014-01-01T00:00:00+00:00",
295501
- "end_date": "2014-12-31T00:00:00+00:00",
295502
- "type": "Constant",
295503
- "notes": "From DOE Prototype Buildings",
295504
- "values": [
295505
- 0.5
295506
- ]
295507
- },
295508
- {
295509
- "name": "OutPatientHealthCare INFIL_HALF_ON_SCH",
295510
- "category": "Infiltration",
295511
- "units": null,
295512
- "day_types": "WntrDsn|SmrDsn",
295513
- "start_date": "2014-01-01T00:00:00+00:00",
295514
- "end_date": "2014-12-31T00:00:00+00:00",
295515
- "type": "Constant",
295516
- "notes": "From DOE Prototype Buildings",
295517
- "values": [
295518
- 1.0
295519
- ]
295520
- },
295521
- {
295522
- "name": "OutPatientHealthCare INFIL_SCH",
295523
- "category": "Infiltration",
295524
- "units": null,
295525
- "day_types": "Default|Sat|Wkdy",
295526
- "start_date": "2014-01-01T00:00:00+00:00",
295527
- "end_date": "2014-12-31T00:00:00+00:00",
295528
- "type": "Constant",
295529
- "notes": "From DOE Prototype Buildings",
295530
- "values": [
295531
- 0.25
295532
- ]
295533
- },
295534
- {
295535
- "name": "OutPatientHealthCare INFIL_SCH",
295536
- "category": "Infiltration",
295537
- "units": null,
295538
- "day_types": "WntrDsn|SmrDsn",
295539
- "start_date": "2014-01-01T00:00:00+00:00",
295540
- "end_date": "2014-12-31T00:00:00+00:00",
295541
- "type": "Constant",
295542
- "notes": "From DOE Prototype Buildings",
295543
- "values": [
295544
- 1.0
295545
- ]
295546
- },
295547
294107
  {
295548
294108
  "name": "OutPatientHealthCare MaxRelHumSetSch",
295549
294109
  "category": "Unknown",
@@ -296504,32 +295064,6 @@
296504
295064
  18.3
296505
295065
  ]
296506
295066
  },
296507
- {
296508
- "name": "Outpatient Infil",
296509
- "category": "Infiltration",
296510
- "units": null,
296511
- "day_types": "Default",
296512
- "start_date": "2014-01-01T00:00:00+00:00",
296513
- "end_date": "2014-12-31T00:00:00+00:00",
296514
- "type": "Constant",
296515
- "notes": "From DOE Reference Buildings ",
296516
- "values": [
296517
- 0.5
296518
- ]
296519
- },
296520
- {
296521
- "name": "Outpatient Infil",
296522
- "category": "Infiltration",
296523
- "units": null,
296524
- "day_types": "WntrDsn|SmrDsn",
296525
- "start_date": "2014-01-01T00:00:00+00:00",
296526
- "end_date": "2014-12-31T00:00:00+00:00",
296527
- "type": "Constant",
296528
- "notes": "From DOE Reference Buildings ",
296529
- "values": [
296530
- 1.0
296531
- ]
296532
- },
296533
295067
  {
296534
295068
  "name": "Outpatient OR ClgSetp",
296535
295069
  "category": "Thermostat Setpoint",
@@ -297921,42 +296455,6 @@
297921
296455
  21.0
297922
296456
  ]
297923
296457
  },
297924
- {
297925
- "name": "PrimarySchool Infil",
297926
- "category": "Infiltration",
297927
- "units": null,
297928
- "day_types": "Default|WntrDsn|SmrDsn",
297929
- "start_date": "2014-01-01T00:00:00+00:00",
297930
- "end_date": "2014-12-31T00:00:00+00:00",
297931
- "type": "Hourly",
297932
- "notes": "From DOE Reference Buildings ",
297933
- "values": [
297934
- 1.0,
297935
- 1.0,
297936
- 1.0,
297937
- 1.0,
297938
- 1.0,
297939
- 1.0,
297940
- 1.0,
297941
- 0.5,
297942
- 0.5,
297943
- 0.5,
297944
- 0.5,
297945
- 0.5,
297946
- 0.5,
297947
- 0.5,
297948
- 0.5,
297949
- 0.5,
297950
- 0.5,
297951
- 0.5,
297952
- 0.5,
297953
- 0.5,
297954
- 0.5,
297955
- 1.0,
297956
- 1.0,
297957
- 1.0
297958
- ]
297959
- },
297960
296458
  {
297961
296459
  "name": "PrimarySchool Kitchen Equip",
297962
296460
  "category": "Equipment",
@@ -299374,42 +297872,6 @@
299374
297872
  19.0
299375
297873
  ]
299376
297874
  },
299377
- {
299378
- "name": "QuickServiceRestaurant Infil Half On",
299379
- "category": "Infiltration",
299380
- "units": null,
299381
- "day_types": "Default|WntrDsn|SmrDsn|Sun|Sat",
299382
- "start_date": "2014-01-01T00:00:00+00:00",
299383
- "end_date": "2014-12-31T00:00:00+00:00",
299384
- "type": "Hourly",
299385
- "notes": "From DOE Reference Buildings ",
299386
- "values": [
299387
- 1.0,
299388
- 1.0,
299389
- 1.0,
299390
- 1.0,
299391
- 1.0,
299392
- 0.5,
299393
- 0.5,
299394
- 0.5,
299395
- 0.5,
299396
- 0.5,
299397
- 0.5,
299398
- 0.5,
299399
- 0.5,
299400
- 0.5,
299401
- 0.5,
299402
- 0.5,
299403
- 0.5,
299404
- 0.5,
299405
- 0.5,
299406
- 0.5,
299407
- 0.5,
299408
- 0.5,
299409
- 0.5,
299410
- 0.5
299411
- ]
299412
- },
299413
297875
  {
299414
297876
  "name": "QuickServiceRestaurant Kitchen Exhaust",
299415
297877
  "category": "Equipment",
@@ -301890,42 +300352,6 @@
301890
300352
  1.0
301891
300353
  ]
301892
300354
  },
301893
- {
301894
- "name": "RestaurantFastFood INFIL_SCH_PNNL",
301895
- "category": "Infiltration",
301896
- "units": null,
301897
- "day_types": "Default|WntrDsn|SmrDsn|Sat|Wkdy",
301898
- "start_date": "2014-01-01T00:00:00+00:00",
301899
- "end_date": "2014-12-31T00:00:00+00:00",
301900
- "type": "Hourly",
301901
- "notes": "From DOE Prototype Buildings",
301902
- "values": [
301903
- 0.25,
301904
- 1.0,
301905
- 1.0,
301906
- 1.0,
301907
- 1.0,
301908
- 0.25,
301909
- 0.25,
301910
- 0.25,
301911
- 0.25,
301912
- 0.25,
301913
- 0.25,
301914
- 0.25,
301915
- 0.25,
301916
- 0.25,
301917
- 0.25,
301918
- 0.25,
301919
- 0.25,
301920
- 0.25,
301921
- 0.25,
301922
- 0.25,
301923
- 0.25,
301924
- 0.25,
301925
- 0.25,
301926
- 0.25
301927
- ]
301928
- },
301929
300355
  {
301930
300356
  "name": "RestaurantFastFood Kitchen Exhaust Fan Balanced Exhaust Fraction Schedule_2004",
301931
300357
  "category": "Equipment",
@@ -305140,78 +303566,6 @@
305140
303566
  50.0
305141
303567
  ]
305142
303568
  },
305143
- {
305144
- "name": "RestaurantSitDown INFIL_HALF_ON_SCH",
305145
- "category": "Infiltration",
305146
- "units": null,
305147
- "day_types": "Default|WntrDsn|SmrDsn|Sat|Wkdy",
305148
- "start_date": "2014-01-01T00:00:00+00:00",
305149
- "end_date": "2014-12-31T00:00:00+00:00",
305150
- "type": "Hourly",
305151
- "notes": "From DOE Prototype Buildings",
305152
- "values": [
305153
- 1.0,
305154
- 1.0,
305155
- 1.0,
305156
- 1.0,
305157
- 1.0,
305158
- 0.5,
305159
- 0.5,
305160
- 0.5,
305161
- 0.5,
305162
- 0.5,
305163
- 0.5,
305164
- 0.5,
305165
- 0.5,
305166
- 0.5,
305167
- 0.5,
305168
- 0.5,
305169
- 0.5,
305170
- 0.5,
305171
- 0.5,
305172
- 0.5,
305173
- 0.5,
305174
- 0.5,
305175
- 0.5,
305176
- 0.5
305177
- ]
305178
- },
305179
- {
305180
- "name": "RestaurantSitDown INFIL_SCH_PNNL",
305181
- "category": "Infiltration",
305182
- "units": null,
305183
- "day_types": "Default|WntrDsn|SmrDsn|Sat|Wkdy",
305184
- "start_date": "2014-01-01T00:00:00+00:00",
305185
- "end_date": "2014-12-31T00:00:00+00:00",
305186
- "type": "Hourly",
305187
- "notes": "From DOE Prototype Buildings",
305188
- "values": [
305189
- 1.0,
305190
- 1.0,
305191
- 1.0,
305192
- 1.0,
305193
- 1.0,
305194
- 0.25,
305195
- 0.25,
305196
- 0.25,
305197
- 0.25,
305198
- 0.25,
305199
- 0.25,
305200
- 0.25,
305201
- 0.25,
305202
- 0.25,
305203
- 0.25,
305204
- 0.25,
305205
- 0.25,
305206
- 0.25,
305207
- 0.25,
305208
- 0.25,
305209
- 0.25,
305210
- 0.25,
305211
- 0.25,
305212
- 0.25
305213
- ]
305214
- },
305215
303569
  {
305216
303570
  "name": "RestaurantSitDown Kitchen Exhaust Fan Balanced Exhaust Fraction Schedule",
305217
303571
  "category": "Equipment",
@@ -307492,248 +305846,6 @@
307492
305846
  19.4
307493
305847
  ]
307494
305848
  },
307495
- {
307496
- "name": "Retail INFIL FRONT",
307497
- "category": "Infiltration",
307498
- "units": null,
307499
- "day_types": "Default|SmrDsn",
307500
- "start_date": "2014-01-01T00:00:00+00:00",
307501
- "end_date": "2014-12-31T00:00:00+00:00",
307502
- "type": "Hourly",
307503
- "notes": "From DOE Reference Buildings ",
307504
- "values": [
307505
- 0.25,
307506
- 0.25,
307507
- 0.25,
307508
- 0.25,
307509
- 0.25,
307510
- 0.25,
307511
- 1.0,
307512
- 1.0,
307513
- 1.0,
307514
- 1.0,
307515
- 1.0,
307516
- 1.0,
307517
- 1.0,
307518
- 1.0,
307519
- 1.0,
307520
- 1.0,
307521
- 1.0,
307522
- 1.0,
307523
- 1.0,
307524
- 1.0,
307525
- 1.0,
307526
- 0.25,
307527
- 0.25,
307528
- 0.25
307529
- ]
307530
- },
307531
- {
307532
- "name": "Retail INFIL FRONT",
307533
- "category": "Infiltration",
307534
- "units": null,
307535
- "day_types": "Sat",
307536
- "start_date": "2014-01-01T00:00:00+00:00",
307537
- "end_date": "2014-12-31T00:00:00+00:00",
307538
- "type": "Hourly",
307539
- "notes": "From DOE Reference Buildings ",
307540
- "values": [
307541
- 0.25,
307542
- 0.25,
307543
- 0.25,
307544
- 0.25,
307545
- 0.25,
307546
- 0.25,
307547
- 1.0,
307548
- 1.0,
307549
- 1.0,
307550
- 1.0,
307551
- 1.0,
307552
- 1.0,
307553
- 1.0,
307554
- 1.0,
307555
- 1.0,
307556
- 1.0,
307557
- 1.0,
307558
- 1.0,
307559
- 1.0,
307560
- 1.0,
307561
- 1.0,
307562
- 1.0,
307563
- 0.25,
307564
- 0.25
307565
- ]
307566
- },
307567
- {
307568
- "name": "Retail INFIL FRONT",
307569
- "category": "Infiltration",
307570
- "units": null,
307571
- "day_types": "Sun",
307572
- "start_date": "2014-01-01T00:00:00+00:00",
307573
- "end_date": "2014-12-31T00:00:00+00:00",
307574
- "type": "Hourly",
307575
- "notes": "From DOE Reference Buildings ",
307576
- "values": [
307577
- 0.25,
307578
- 0.25,
307579
- 0.25,
307580
- 0.25,
307581
- 0.25,
307582
- 0.25,
307583
- 0.25,
307584
- 0.25,
307585
- 1.0,
307586
- 1.0,
307587
- 1.0,
307588
- 1.0,
307589
- 1.0,
307590
- 1.0,
307591
- 1.0,
307592
- 1.0,
307593
- 1.0,
307594
- 0.25,
307595
- 0.25,
307596
- 0.25,
307597
- 0.25,
307598
- 0.25,
307599
- 0.25,
307600
- 0.25
307601
- ]
307602
- },
307603
- {
307604
- "name": "Retail INFIL FRONT",
307605
- "category": "Infiltration",
307606
- "units": null,
307607
- "day_types": "WntrDsn",
307608
- "start_date": "2014-01-01T00:00:00+00:00",
307609
- "end_date": "2014-12-31T00:00:00+00:00",
307610
- "type": "Constant",
307611
- "notes": "From DOE Reference Buildings ",
307612
- "values": [
307613
- 1.0
307614
- ]
307615
- },
307616
- {
307617
- "name": "Retail Infil Half On",
307618
- "category": "Infiltration",
307619
- "units": null,
307620
- "day_types": "Default|SmrDsn",
307621
- "start_date": "2014-01-01T00:00:00+00:00",
307622
- "end_date": "2014-12-31T00:00:00+00:00",
307623
- "type": "Hourly",
307624
- "notes": "From DOE Reference Buildings ",
307625
- "values": [
307626
- 1.0,
307627
- 1.0,
307628
- 1.0,
307629
- 1.0,
307630
- 1.0,
307631
- 1.0,
307632
- 0.5,
307633
- 0.5,
307634
- 0.5,
307635
- 0.5,
307636
- 0.5,
307637
- 0.5,
307638
- 0.5,
307639
- 0.5,
307640
- 0.5,
307641
- 0.5,
307642
- 0.5,
307643
- 0.5,
307644
- 0.5,
307645
- 0.5,
307646
- 0.5,
307647
- 1.0,
307648
- 1.0,
307649
- 1.0
307650
- ]
307651
- },
307652
- {
307653
- "name": "Retail Infil Half On",
307654
- "category": "Infiltration",
307655
- "units": null,
307656
- "day_types": "Sat",
307657
- "start_date": "2014-01-01T00:00:00+00:00",
307658
- "end_date": "2014-12-31T00:00:00+00:00",
307659
- "type": "Hourly",
307660
- "notes": "From DOE Reference Buildings ",
307661
- "values": [
307662
- 1.0,
307663
- 1.0,
307664
- 1.0,
307665
- 1.0,
307666
- 1.0,
307667
- 1.0,
307668
- 0.5,
307669
- 0.5,
307670
- 0.5,
307671
- 0.5,
307672
- 0.5,
307673
- 0.5,
307674
- 0.5,
307675
- 0.5,
307676
- 0.5,
307677
- 0.5,
307678
- 0.5,
307679
- 0.5,
307680
- 0.5,
307681
- 0.5,
307682
- 0.5,
307683
- 0.5,
307684
- 1.0,
307685
- 1.0
307686
- ]
307687
- },
307688
- {
307689
- "name": "Retail Infil Half On",
307690
- "category": "Infiltration",
307691
- "units": null,
307692
- "day_types": "Sun",
307693
- "start_date": "2014-01-01T00:00:00+00:00",
307694
- "end_date": "2014-12-31T00:00:00+00:00",
307695
- "type": "Hourly",
307696
- "notes": "From DOE Reference Buildings ",
307697
- "values": [
307698
- 1.0,
307699
- 1.0,
307700
- 1.0,
307701
- 1.0,
307702
- 1.0,
307703
- 1.0,
307704
- 1.0,
307705
- 1.0,
307706
- 0.5,
307707
- 0.5,
307708
- 0.5,
307709
- 0.5,
307710
- 0.5,
307711
- 0.5,
307712
- 0.5,
307713
- 0.5,
307714
- 0.5,
307715
- 1.0,
307716
- 1.0,
307717
- 1.0,
307718
- 1.0,
307719
- 1.0,
307720
- 1.0,
307721
- 1.0
307722
- ]
307723
- },
307724
- {
307725
- "name": "Retail Infil Half On",
307726
- "category": "Infiltration",
307727
- "units": null,
307728
- "day_types": "WntrDsn",
307729
- "start_date": "2014-01-01T00:00:00+00:00",
307730
- "end_date": "2014-12-31T00:00:00+00:00",
307731
- "type": "Constant",
307732
- "notes": "From DOE Reference Buildings ",
307733
- "values": [
307734
- 1.0
307735
- ]
307736
- },
307737
305849
  {
307738
305850
  "name": "Retail Work Eff",
307739
305851
  "category": "Unknown",
@@ -313982,356 +312094,6 @@
313982
312094
  0.0
313983
312095
  ]
313984
312096
  },
313985
- {
313986
- "name": "RetailStandalone INFIL_HALF_ON_SCH",
313987
- "category": "Infiltration",
313988
- "units": null,
313989
- "day_types": "Default",
313990
- "start_date": "2014-01-01T00:00:00+00:00",
313991
- "end_date": "2014-12-31T00:00:00+00:00",
313992
- "type": "Hourly",
313993
- "notes": "From DOE Prototype Buildings",
313994
- "values": [
313995
- 1.0,
313996
- 1.0,
313997
- 1.0,
313998
- 1.0,
313999
- 1.0,
314000
- 1.0,
314001
- 1.0,
314002
- 1.0,
314003
- 0.5,
314004
- 0.5,
314005
- 0.5,
314006
- 0.5,
314007
- 0.5,
314008
- 0.5,
314009
- 0.5,
314010
- 0.5,
314011
- 0.5,
314012
- 1.0,
314013
- 1.0,
314014
- 1.0,
314015
- 1.0,
314016
- 1.0,
314017
- 1.0,
314018
- 1.0
314019
- ]
314020
- },
314021
- {
314022
- "name": "RetailStandalone INFIL_HALF_ON_SCH",
314023
- "category": "Infiltration",
314024
- "units": null,
314025
- "day_types": "Sat",
314026
- "start_date": "2014-01-01T00:00:00+00:00",
314027
- "end_date": "2014-12-31T00:00:00+00:00",
314028
- "type": "Hourly",
314029
- "notes": "From DOE Prototype Buildings",
314030
- "values": [
314031
- 1.0,
314032
- 1.0,
314033
- 1.0,
314034
- 1.0,
314035
- 1.0,
314036
- 1.0,
314037
- 0.5,
314038
- 0.5,
314039
- 0.5,
314040
- 0.5,
314041
- 0.5,
314042
- 0.5,
314043
- 0.5,
314044
- 0.5,
314045
- 0.5,
314046
- 0.5,
314047
- 0.5,
314048
- 0.5,
314049
- 0.5,
314050
- 0.5,
314051
- 0.5,
314052
- 0.5,
314053
- 1.0,
314054
- 1.0
314055
- ]
314056
- },
314057
- {
314058
- "name": "RetailStandalone INFIL_HALF_ON_SCH",
314059
- "category": "Infiltration",
314060
- "units": null,
314061
- "day_types": "SmrDsn|Wkdy",
314062
- "start_date": "2014-01-01T00:00:00+00:00",
314063
- "end_date": "2014-12-31T00:00:00+00:00",
314064
- "type": "Hourly",
314065
- "notes": "From DOE Prototype Buildings",
314066
- "values": [
314067
- 1.0,
314068
- 1.0,
314069
- 1.0,
314070
- 1.0,
314071
- 1.0,
314072
- 1.0,
314073
- 0.5,
314074
- 0.5,
314075
- 0.5,
314076
- 0.5,
314077
- 0.5,
314078
- 0.5,
314079
- 0.5,
314080
- 0.5,
314081
- 0.5,
314082
- 0.5,
314083
- 0.5,
314084
- 0.5,
314085
- 0.5,
314086
- 0.5,
314087
- 0.5,
314088
- 1.0,
314089
- 1.0,
314090
- 1.0
314091
- ]
314092
- },
314093
- {
314094
- "name": "RetailStandalone INFIL_HALF_ON_SCH",
314095
- "category": "Infiltration",
314096
- "units": null,
314097
- "day_types": "WntrDsn",
314098
- "start_date": "2014-01-01T00:00:00+00:00",
314099
- "end_date": "2014-12-31T00:00:00+00:00",
314100
- "type": "Constant",
314101
- "notes": "From DOE Prototype Buildings",
314102
- "values": [
314103
- 1.0
314104
- ]
314105
- },
314106
- {
314107
- "name": "RetailStandalone INFIL_SCH",
314108
- "category": "Infiltration",
314109
- "units": null,
314110
- "day_types": "Default",
314111
- "start_date": "2014-01-01T00:00:00+00:00",
314112
- "end_date": "2014-12-31T00:00:00+00:00",
314113
- "type": "Hourly",
314114
- "notes": "From DOE Prototype Buildings",
314115
- "values": [
314116
- 1.0,
314117
- 1.0,
314118
- 1.0,
314119
- 1.0,
314120
- 1.0,
314121
- 1.0,
314122
- 1.0,
314123
- 1.0,
314124
- 0.0,
314125
- 0.0,
314126
- 0.0,
314127
- 0.0,
314128
- 0.0,
314129
- 0.0,
314130
- 0.0,
314131
- 0.0,
314132
- 0.0,
314133
- 1.0,
314134
- 1.0,
314135
- 1.0,
314136
- 1.0,
314137
- 1.0,
314138
- 1.0,
314139
- 1.0
314140
- ]
314141
- },
314142
- {
314143
- "name": "RetailStandalone INFIL_SCH",
314144
- "category": "Infiltration",
314145
- "units": null,
314146
- "day_types": "Sat",
314147
- "start_date": "2014-01-01T00:00:00+00:00",
314148
- "end_date": "2014-12-31T00:00:00+00:00",
314149
- "type": "Hourly",
314150
- "notes": "From DOE Prototype Buildings",
314151
- "values": [
314152
- 1.0,
314153
- 1.0,
314154
- 1.0,
314155
- 1.0,
314156
- 1.0,
314157
- 1.0,
314158
- 0.0,
314159
- 0.0,
314160
- 0.0,
314161
- 0.0,
314162
- 0.0,
314163
- 0.0,
314164
- 0.0,
314165
- 0.0,
314166
- 0.0,
314167
- 0.0,
314168
- 0.0,
314169
- 0.0,
314170
- 0.0,
314171
- 0.0,
314172
- 0.0,
314173
- 0.0,
314174
- 1.0,
314175
- 1.0
314176
- ]
314177
- },
314178
- {
314179
- "name": "RetailStandalone INFIL_SCH",
314180
- "category": "Infiltration",
314181
- "units": null,
314182
- "day_types": "SmrDsn|Wkdy",
314183
- "start_date": "2014-01-01T00:00:00+00:00",
314184
- "end_date": "2014-12-31T00:00:00+00:00",
314185
- "type": "Hourly",
314186
- "notes": "From DOE Prototype Buildings",
314187
- "values": [
314188
- 1.0,
314189
- 1.0,
314190
- 1.0,
314191
- 1.0,
314192
- 1.0,
314193
- 1.0,
314194
- 0.0,
314195
- 0.0,
314196
- 0.0,
314197
- 0.0,
314198
- 0.0,
314199
- 0.0,
314200
- 0.0,
314201
- 0.0,
314202
- 0.0,
314203
- 0.0,
314204
- 0.0,
314205
- 0.0,
314206
- 0.0,
314207
- 0.0,
314208
- 0.0,
314209
- 1.0,
314210
- 1.0,
314211
- 1.0
314212
- ]
314213
- },
314214
- {
314215
- "name": "RetailStandalone INFIL_SCH",
314216
- "category": "Infiltration",
314217
- "units": null,
314218
- "day_types": "WntrDsn",
314219
- "start_date": "2014-01-01T00:00:00+00:00",
314220
- "end_date": "2014-12-31T00:00:00+00:00",
314221
- "type": "Constant",
314222
- "notes": "From DOE Prototype Buildings",
314223
- "values": [
314224
- 1.0
314225
- ]
314226
- },
314227
- {
314228
- "name": "RetailStandalone INFIL_SCH_PNNL",
314229
- "category": "Infiltration",
314230
- "units": null,
314231
- "day_types": "Default",
314232
- "start_date": "2014-01-01T00:00:00+00:00",
314233
- "end_date": "2014-12-31T00:00:00+00:00",
314234
- "type": "Hourly",
314235
- "notes": "From DOE Prototype Buildings",
314236
- "values": [
314237
- 1.0,
314238
- 1.0,
314239
- 1.0,
314240
- 1.0,
314241
- 1.0,
314242
- 1.0,
314243
- 1.0,
314244
- 1.0,
314245
- 0.25,
314246
- 0.25,
314247
- 0.25,
314248
- 0.25,
314249
- 0.25,
314250
- 0.25,
314251
- 0.25,
314252
- 0.25,
314253
- 0.25,
314254
- 0.25,
314255
- 0.25,
314256
- 1.0,
314257
- 1.0,
314258
- 1.0,
314259
- 1.0,
314260
- 1.0
314261
- ]
314262
- },
314263
- {
314264
- "name": "RetailStandalone INFIL_SCH_PNNL",
314265
- "category": "Infiltration",
314266
- "units": null,
314267
- "day_types": "SmrDsn|Wkdy",
314268
- "start_date": "2014-01-01T00:00:00+00:00",
314269
- "end_date": "2014-12-31T00:00:00+00:00",
314270
- "type": "Hourly",
314271
- "notes": "From DOE Prototype Buildings",
314272
- "values": [
314273
- 1.0,
314274
- 1.0,
314275
- 1.0,
314276
- 1.0,
314277
- 1.0,
314278
- 1.0,
314279
- 0.25,
314280
- 0.25,
314281
- 0.25,
314282
- 0.25,
314283
- 0.25,
314284
- 0.25,
314285
- 0.25,
314286
- 0.25,
314287
- 0.25,
314288
- 0.25,
314289
- 0.25,
314290
- 0.25,
314291
- 0.25,
314292
- 0.25,
314293
- 0.25,
314294
- 1.0,
314295
- 1.0,
314296
- 1.0
314297
- ]
314298
- },
314299
- {
314300
- "name": "RetailStandalone INFIL_SCH_PNNL",
314301
- "category": "Infiltration",
314302
- "units": null,
314303
- "day_types": "WntrDsn|Sat",
314304
- "start_date": "2014-01-01T00:00:00+00:00",
314305
- "end_date": "2014-12-31T00:00:00+00:00",
314306
- "type": "Hourly",
314307
- "notes": "From DOE Prototype Buildings",
314308
- "values": [
314309
- 1.0,
314310
- 1.0,
314311
- 1.0,
314312
- 1.0,
314313
- 1.0,
314314
- 1.0,
314315
- 0.25,
314316
- 0.25,
314317
- 0.25,
314318
- 0.25,
314319
- 0.25,
314320
- 0.25,
314321
- 0.25,
314322
- 0.25,
314323
- 0.25,
314324
- 0.25,
314325
- 0.25,
314326
- 0.25,
314327
- 0.25,
314328
- 0.25,
314329
- 0.25,
314330
- 0.25,
314331
- 1.0,
314332
- 1.0
314333
- ]
314334
- },
314335
312097
  {
314336
312098
  "name": "RetailStandalone MinOA_MotorizedDamper_Sched",
314337
312099
  "category": "OA Air",
@@ -315743,78 +313505,6 @@
315743
313505
  21.11
315744
313506
  ]
315745
313507
  },
315746
- {
315747
- "name": "RetailStripmall Type1_Infil_SCH",
315748
- "category": "Infiltration",
315749
- "units": null,
315750
- "day_types": "Default|SmrDsn|Mon|Tue|Wed|Thu",
315751
- "start_date": "2014-01-01T00:00:00+00:00",
315752
- "end_date": "2014-12-31T00:00:00+00:00",
315753
- "type": "Hourly",
315754
- "notes": "From DOE Prototype Buildings",
315755
- "values": [
315756
- 1.0,
315757
- 1.0,
315758
- 1.0,
315759
- 1.0,
315760
- 1.0,
315761
- 1.0,
315762
- 1.0,
315763
- 1.0,
315764
- 0.25,
315765
- 0.25,
315766
- 0.25,
315767
- 0.25,
315768
- 0.25,
315769
- 0.25,
315770
- 0.25,
315771
- 0.25,
315772
- 0.25,
315773
- 0.25,
315774
- 0.25,
315775
- 0.25,
315776
- 0.25,
315777
- 0.25,
315778
- 0.25,
315779
- 0.25
315780
- ]
315781
- },
315782
- {
315783
- "name": "RetailStripmall Type1_Infil_SCH",
315784
- "category": "Infiltration",
315785
- "units": null,
315786
- "day_types": "WntrDsn|Sat|Fri",
315787
- "start_date": "2014-01-01T00:00:00+00:00",
315788
- "end_date": "2014-12-31T00:00:00+00:00",
315789
- "type": "Hourly",
315790
- "notes": "From DOE Prototype Buildings",
315791
- "values": [
315792
- 0.25,
315793
- 1.0,
315794
- 1.0,
315795
- 1.0,
315796
- 1.0,
315797
- 1.0,
315798
- 1.0,
315799
- 1.0,
315800
- 0.25,
315801
- 0.25,
315802
- 0.25,
315803
- 0.25,
315804
- 0.25,
315805
- 0.25,
315806
- 0.25,
315807
- 0.25,
315808
- 0.25,
315809
- 0.25,
315810
- 0.25,
315811
- 0.25,
315812
- 0.25,
315813
- 0.25,
315814
- 0.25,
315815
- 0.25
315816
- ]
315817
- },
315818
313508
  {
315819
313509
  "name": "RetailStripmall Type1_LIGHT_SCH",
315820
313510
  "category": "Lighting",
@@ -317283,114 +314973,6 @@
317283
314973
  15.56
317284
314974
  ]
317285
314975
  },
317286
- {
317287
- "name": "RetailStripmall Type2_Infil_SCH",
317288
- "category": "Infiltration",
317289
- "units": null,
317290
- "day_types": "Default",
317291
- "start_date": "2014-01-01T00:00:00+00:00",
317292
- "end_date": "2014-12-31T00:00:00+00:00",
317293
- "type": "Hourly",
317294
- "notes": "From DOE Prototype Buildings",
317295
- "values": [
317296
- 1.0,
317297
- 1.0,
317298
- 1.0,
317299
- 1.0,
317300
- 1.0,
317301
- 1.0,
317302
- 1.0,
317303
- 1.0,
317304
- 0.25,
317305
- 0.25,
317306
- 0.25,
317307
- 0.25,
317308
- 0.25,
317309
- 0.25,
317310
- 0.25,
317311
- 0.25,
317312
- 0.25,
317313
- 0.25,
317314
- 1.0,
317315
- 1.0,
317316
- 1.0,
317317
- 1.0,
317318
- 1.0,
317319
- 1.0
317320
- ]
317321
- },
317322
- {
317323
- "name": "RetailStripmall Type2_Infil_SCH",
317324
- "category": "Infiltration",
317325
- "units": null,
317326
- "day_types": "SmrDsn|Wkdy",
317327
- "start_date": "2014-01-01T00:00:00+00:00",
317328
- "end_date": "2014-12-31T00:00:00+00:00",
317329
- "type": "Hourly",
317330
- "notes": "From DOE Prototype Buildings",
317331
- "values": [
317332
- 1.0,
317333
- 1.0,
317334
- 1.0,
317335
- 1.0,
317336
- 1.0,
317337
- 1.0,
317338
- 1.0,
317339
- 0.25,
317340
- 0.25,
317341
- 0.25,
317342
- 0.25,
317343
- 0.25,
317344
- 0.25,
317345
- 0.25,
317346
- 0.25,
317347
- 0.25,
317348
- 0.25,
317349
- 0.25,
317350
- 0.25,
317351
- 0.25,
317352
- 0.25,
317353
- 1.0,
317354
- 1.0,
317355
- 1.0
317356
- ]
317357
- },
317358
- {
317359
- "name": "RetailStripmall Type2_Infil_SCH",
317360
- "category": "Infiltration",
317361
- "units": null,
317362
- "day_types": "WntrDsn|Sat",
317363
- "start_date": "2014-01-01T00:00:00+00:00",
317364
- "end_date": "2014-12-31T00:00:00+00:00",
317365
- "type": "Hourly",
317366
- "notes": "From DOE Prototype Buildings",
317367
- "values": [
317368
- 1.0,
317369
- 1.0,
317370
- 1.0,
317371
- 1.0,
317372
- 1.0,
317373
- 1.0,
317374
- 1.0,
317375
- 0.25,
317376
- 0.25,
317377
- 0.25,
317378
- 0.25,
317379
- 0.25,
317380
- 0.25,
317381
- 0.25,
317382
- 0.25,
317383
- 0.25,
317384
- 0.25,
317385
- 0.25,
317386
- 0.25,
317387
- 1.0,
317388
- 1.0,
317389
- 1.0,
317390
- 1.0,
317391
- 1.0
317392
- ]
317393
- },
317394
314976
  {
317395
314977
  "name": "RetailStripmall Type2_LIGHT_SCH",
317396
314978
  "category": "Lighting",
@@ -319003,114 +316585,6 @@
319003
316585
  15.56
319004
316586
  ]
319005
316587
  },
319006
- {
319007
- "name": "RetailStripmall Type3_Infil_SCH",
319008
- "category": "Infiltration",
319009
- "units": null,
319010
- "day_types": "Default",
319011
- "start_date": "2014-01-01T00:00:00+00:00",
319012
- "end_date": "2014-12-31T00:00:00+00:00",
319013
- "type": "Hourly",
319014
- "notes": "From DOE Prototype Buildings",
319015
- "values": [
319016
- 1.0,
319017
- 1.0,
319018
- 1.0,
319019
- 1.0,
319020
- 1.0,
319021
- 1.0,
319022
- 1.0,
319023
- 1.0,
319024
- 1.0,
319025
- 0.25,
319026
- 0.25,
319027
- 0.25,
319028
- 0.25,
319029
- 0.25,
319030
- 0.25,
319031
- 0.25,
319032
- 0.25,
319033
- 0.25,
319034
- 1.0,
319035
- 1.0,
319036
- 1.0,
319037
- 1.0,
319038
- 1.0,
319039
- 1.0
319040
- ]
319041
- },
319042
- {
319043
- "name": "RetailStripmall Type3_Infil_SCH",
319044
- "category": "Infiltration",
319045
- "units": null,
319046
- "day_types": "SmrDsn|Wkdy",
319047
- "start_date": "2014-01-01T00:00:00+00:00",
319048
- "end_date": "2014-12-31T00:00:00+00:00",
319049
- "type": "Hourly",
319050
- "notes": "From DOE Prototype Buildings",
319051
- "values": [
319052
- 1.0,
319053
- 1.0,
319054
- 1.0,
319055
- 1.0,
319056
- 1.0,
319057
- 1.0,
319058
- 1.0,
319059
- 1.0,
319060
- 0.25,
319061
- 0.25,
319062
- 0.25,
319063
- 0.25,
319064
- 0.25,
319065
- 0.25,
319066
- 0.25,
319067
- 0.25,
319068
- 0.25,
319069
- 0.25,
319070
- 0.25,
319071
- 0.25,
319072
- 0.25,
319073
- 1.0,
319074
- 1.0,
319075
- 1.0
319076
- ]
319077
- },
319078
- {
319079
- "name": "RetailStripmall Type3_Infil_SCH",
319080
- "category": "Infiltration",
319081
- "units": null,
319082
- "day_types": "WntrDsn|Sat",
319083
- "start_date": "2014-01-01T00:00:00+00:00",
319084
- "end_date": "2014-12-31T00:00:00+00:00",
319085
- "type": "Hourly",
319086
- "notes": "From DOE Prototype Buildings",
319087
- "values": [
319088
- 1.0,
319089
- 1.0,
319090
- 1.0,
319091
- 1.0,
319092
- 1.0,
319093
- 1.0,
319094
- 1.0,
319095
- 1.0,
319096
- 0.25,
319097
- 0.25,
319098
- 0.25,
319099
- 0.25,
319100
- 0.25,
319101
- 0.25,
319102
- 0.25,
319103
- 0.25,
319104
- 0.25,
319105
- 0.25,
319106
- 0.25,
319107
- 1.0,
319108
- 1.0,
319109
- 1.0,
319110
- 1.0,
319111
- 1.0
319112
- ]
319113
- },
319114
316588
  {
319115
316589
  "name": "RetailStripmall Type3_LIGHT_SCH",
319116
316590
  "category": "Lighting",
@@ -327969,91 +325443,6 @@
327969
325443
  0.0
327970
325444
  ]
327971
325445
  },
327972
- {
327973
- "name": "SchoolPrimary INFIL_SCH",
327974
- "category": "Infiltration",
327975
- "units": null,
327976
- "day_types": "Default|WntrDsn|SmrDsn",
327977
- "start_date": "2014-01-01T00:00:00+00:00",
327978
- "end_date": "2014-12-31T00:00:00+00:00",
327979
- "type": "Hourly",
327980
- "notes": "From DOE Prototype Buildings",
327981
- "values": [
327982
- 1.0,
327983
- 1.0,
327984
- 1.0,
327985
- 1.0,
327986
- 1.0,
327987
- 1.0,
327988
- 1.0,
327989
- 0.5,
327990
- 0.5,
327991
- 0.5,
327992
- 0.5,
327993
- 0.5,
327994
- 0.5,
327995
- 0.5,
327996
- 0.5,
327997
- 0.5,
327998
- 0.5,
327999
- 0.5,
328000
- 0.5,
328001
- 0.5,
328002
- 0.5,
328003
- 1.0,
328004
- 1.0,
328005
- 1.0
328006
- ]
328007
- },
328008
- {
328009
- "name": "SchoolPrimary INFIL_SCH_PNNL",
328010
- "category": "Infiltration",
328011
- "units": null,
328012
- "day_types": "Default|WntrDsn",
328013
- "start_date": "2014-01-01T00:00:00+00:00",
328014
- "end_date": "2014-12-31T00:00:00+00:00",
328015
- "type": "Constant",
328016
- "notes": "From DOE Prototype Buildings",
328017
- "values": [
328018
- 1.0
328019
- ]
328020
- },
328021
- {
328022
- "name": "SchoolPrimary INFIL_SCH_PNNL",
328023
- "category": "Infiltration",
328024
- "units": null,
328025
- "day_types": "SmrDsn|Wkdy",
328026
- "start_date": "2014-01-01T00:00:00+00:00",
328027
- "end_date": "2014-12-31T00:00:00+00:00",
328028
- "type": "Hourly",
328029
- "notes": "From DOE Prototype Buildings",
328030
- "values": [
328031
- 1.0,
328032
- 1.0,
328033
- 1.0,
328034
- 1.0,
328035
- 1.0,
328036
- 1.0,
328037
- 1.0,
328038
- 0.25,
328039
- 0.25,
328040
- 0.25,
328041
- 0.25,
328042
- 0.25,
328043
- 0.25,
328044
- 0.25,
328045
- 0.25,
328046
- 0.25,
328047
- 0.25,
328048
- 0.25,
328049
- 0.25,
328050
- 0.25,
328051
- 0.25,
328052
- 1.0,
328053
- 1.0,
328054
- 1.0
328055
- ]
328056
- },
328057
325446
  {
328058
325447
  "name": "SchoolPrimary KITCHEN_ELEC_EQUIP_SCH",
328059
325448
  "category": "Equipment",
@@ -337785,91 +335174,6 @@
337785
335174
  0.0
337786
335175
  ]
337787
335176
  },
337788
- {
337789
- "name": "SchoolSecondary INFIL_SCH",
337790
- "category": "Infiltration",
337791
- "units": null,
337792
- "day_types": "Default|WntrDsn|SmrDsn",
337793
- "start_date": "2014-01-01T00:00:00+00:00",
337794
- "end_date": "2014-12-31T00:00:00+00:00",
337795
- "type": "Hourly",
337796
- "notes": "From DOE Prototype Buildings",
337797
- "values": [
337798
- 1.0,
337799
- 1.0,
337800
- 1.0,
337801
- 1.0,
337802
- 1.0,
337803
- 1.0,
337804
- 1.0,
337805
- 0.25,
337806
- 0.25,
337807
- 0.25,
337808
- 0.25,
337809
- 0.25,
337810
- 0.25,
337811
- 0.25,
337812
- 0.25,
337813
- 0.25,
337814
- 0.25,
337815
- 0.25,
337816
- 0.25,
337817
- 0.25,
337818
- 0.25,
337819
- 1.0,
337820
- 1.0,
337821
- 1.0
337822
- ]
337823
- },
337824
- {
337825
- "name": "SchoolSecondary INFIL_SCH_PNNL",
337826
- "category": "Infiltration",
337827
- "units": null,
337828
- "day_types": "Default|WntrDsn",
337829
- "start_date": "2014-01-01T00:00:00+00:00",
337830
- "end_date": "2014-12-31T00:00:00+00:00",
337831
- "type": "Constant",
337832
- "notes": "From DOE Prototype Buildings",
337833
- "values": [
337834
- 1.0
337835
- ]
337836
- },
337837
- {
337838
- "name": "SchoolSecondary INFIL_SCH_PNNL",
337839
- "category": "Infiltration",
337840
- "units": null,
337841
- "day_types": "SmrDsn|Wkdy",
337842
- "start_date": "2014-01-01T00:00:00+00:00",
337843
- "end_date": "2014-12-31T00:00:00+00:00",
337844
- "type": "Hourly",
337845
- "notes": "From DOE Prototype Buildings",
337846
- "values": [
337847
- 1.0,
337848
- 1.0,
337849
- 1.0,
337850
- 1.0,
337851
- 1.0,
337852
- 1.0,
337853
- 1.0,
337854
- 0.25,
337855
- 0.25,
337856
- 0.25,
337857
- 0.25,
337858
- 0.25,
337859
- 0.25,
337860
- 0.25,
337861
- 0.25,
337862
- 0.25,
337863
- 0.25,
337864
- 0.25,
337865
- 0.25,
337866
- 0.25,
337867
- 0.25,
337868
- 1.0,
337869
- 1.0,
337870
- 1.0
337871
- ]
337872
- },
337873
335177
  {
337874
335178
  "name": "SchoolSecondary KITCHEN_ELEC_EQUIP_SCH",
337875
335179
  "category": "Equipment",
@@ -341109,42 +338413,6 @@
341109
338413
  16.0
341110
338414
  ]
341111
338415
  },
341112
- {
341113
- "name": "SecondarySchool Infil",
341114
- "category": "Infiltration",
341115
- "units": null,
341116
- "day_types": "Default|WntrDsn|SmrDsn",
341117
- "start_date": "2014-01-01T00:00:00+00:00",
341118
- "end_date": "2014-12-31T00:00:00+00:00",
341119
- "type": "Hourly",
341120
- "notes": "From DOE Reference Buildings ",
341121
- "values": [
341122
- 1.0,
341123
- 1.0,
341124
- 1.0,
341125
- 1.0,
341126
- 1.0,
341127
- 1.0,
341128
- 1.0,
341129
- 0.5,
341130
- 0.5,
341131
- 0.5,
341132
- 0.5,
341133
- 0.5,
341134
- 0.5,
341135
- 0.5,
341136
- 0.5,
341137
- 0.5,
341138
- 0.5,
341139
- 0.5,
341140
- 0.5,
341141
- 0.5,
341142
- 0.5,
341143
- 1.0,
341144
- 1.0,
341145
- 1.0
341146
- ]
341147
- },
341148
338416
  {
341149
338417
  "name": "SecondarySchool Kitchen Equip",
341150
338418
  "category": "Equipment",
@@ -342647,91 +339915,6 @@
342647
339915
  21.0
342648
339916
  ]
342649
339917
  },
342650
- {
342651
- "name": "Small Office Infil Quarter On",
342652
- "category": "Infiltration",
342653
- "units": null,
342654
- "day_types": "Default|SmrDsn",
342655
- "start_date": "2014-01-01T00:00:00+00:00",
342656
- "end_date": "2014-12-31T00:00:00+00:00",
342657
- "type": "Hourly",
342658
- "notes": "From DOE Reference Buildings ",
342659
- "values": [
342660
- 1.0,
342661
- 1.0,
342662
- 1.0,
342663
- 1.0,
342664
- 1.0,
342665
- 1.0,
342666
- 0.25,
342667
- 0.25,
342668
- 0.25,
342669
- 0.25,
342670
- 0.25,
342671
- 0.25,
342672
- 0.25,
342673
- 0.25,
342674
- 0.25,
342675
- 0.25,
342676
- 0.25,
342677
- 0.25,
342678
- 0.25,
342679
- 0.25,
342680
- 0.25,
342681
- 0.25,
342682
- 1.0,
342683
- 1.0
342684
- ]
342685
- },
342686
- {
342687
- "name": "Small Office Infil Quarter On",
342688
- "category": "Infiltration",
342689
- "units": null,
342690
- "day_types": "Sun",
342691
- "start_date": "2014-01-01T00:00:00+00:00",
342692
- "end_date": "2014-12-31T00:00:00+00:00",
342693
- "type": "Constant",
342694
- "notes": "From DOE Reference Buildings ",
342695
- "values": [
342696
- 1.0
342697
- ]
342698
- },
342699
- {
342700
- "name": "Small Office Infil Quarter On",
342701
- "category": "Infiltration",
342702
- "units": null,
342703
- "day_types": "WntrDsn|Sat",
342704
- "start_date": "2014-01-01T00:00:00+00:00",
342705
- "end_date": "2014-12-31T00:00:00+00:00",
342706
- "type": "Hourly",
342707
- "notes": "From DOE Reference Buildings ",
342708
- "values": [
342709
- 1.0,
342710
- 1.0,
342711
- 1.0,
342712
- 1.0,
342713
- 1.0,
342714
- 1.0,
342715
- 0.25,
342716
- 0.25,
342717
- 0.25,
342718
- 0.25,
342719
- 0.25,
342720
- 0.25,
342721
- 0.25,
342722
- 0.25,
342723
- 0.25,
342724
- 0.25,
342725
- 0.25,
342726
- 0.25,
342727
- 1.0,
342728
- 1.0,
342729
- 1.0,
342730
- 1.0,
342731
- 1.0,
342732
- 1.0
342733
- ]
342734
- },
342735
339918
  {
342736
339919
  "name": "Small Office Work Eff",
342737
339920
  "category": "Unknown",
@@ -344378,32 +341561,6 @@
344378
341561
  21.0
344379
341562
  ]
344380
341563
  },
344381
- {
344382
- "name": "SmallHotel Infil",
344383
- "category": "Infiltration",
344384
- "units": null,
344385
- "day_types": "Default|WntrDsn|SmrDsn",
344386
- "start_date": "2014-01-01T00:00:00+00:00",
344387
- "end_date": "2014-12-31T00:00:00+00:00",
344388
- "type": "Constant",
344389
- "notes": "From DOE Reference Buildings ",
344390
- "values": [
344391
- 1.0
344392
- ]
344393
- },
344394
- {
344395
- "name": "SmallHotel Infil Half On",
344396
- "category": "Infiltration",
344397
- "units": null,
344398
- "day_types": "Default|WntrDsn|SmrDsn",
344399
- "start_date": "2014-01-01T00:00:00+00:00",
344400
- "end_date": "2014-12-31T00:00:00+00:00",
344401
- "type": "Constant",
344402
- "notes": "From DOE Reference Buildings ",
344403
- "values": [
344404
- 0.5
344405
- ]
344406
- },
344407
341564
  {
344408
341565
  "name": "SmallHotel Laundry Equip",
344409
341566
  "category": "Equipment",
@@ -346337,127 +343494,6 @@
346337
343494
  21.0
346338
343495
  ]
346339
343496
  },
346340
- {
346341
- "name": "StripMall Infil Half On",
346342
- "category": "Infiltration",
346343
- "units": null,
346344
- "day_types": "Default|SmrDsn",
346345
- "start_date": "2014-01-01T00:00:00+00:00",
346346
- "end_date": "2014-12-31T00:00:00+00:00",
346347
- "type": "Hourly",
346348
- "notes": "From DOE Reference Buildings ",
346349
- "values": [
346350
- 1.0,
346351
- 1.0,
346352
- 1.0,
346353
- 1.0,
346354
- 1.0,
346355
- 1.0,
346356
- 0.5,
346357
- 0.5,
346358
- 0.5,
346359
- 0.5,
346360
- 0.5,
346361
- 0.5,
346362
- 0.5,
346363
- 0.5,
346364
- 0.5,
346365
- 0.5,
346366
- 0.5,
346367
- 0.5,
346368
- 0.5,
346369
- 0.5,
346370
- 0.5,
346371
- 1.0,
346372
- 1.0,
346373
- 1.0
346374
- ]
346375
- },
346376
- {
346377
- "name": "StripMall Infil Half On",
346378
- "category": "Infiltration",
346379
- "units": null,
346380
- "day_types": "Sat",
346381
- "start_date": "2014-01-01T00:00:00+00:00",
346382
- "end_date": "2014-12-31T00:00:00+00:00",
346383
- "type": "Hourly",
346384
- "notes": "From DOE Reference Buildings ",
346385
- "values": [
346386
- 1.0,
346387
- 1.0,
346388
- 1.0,
346389
- 1.0,
346390
- 1.0,
346391
- 1.0,
346392
- 0.5,
346393
- 0.5,
346394
- 0.5,
346395
- 0.5,
346396
- 0.5,
346397
- 0.5,
346398
- 0.5,
346399
- 0.5,
346400
- 0.5,
346401
- 0.5,
346402
- 0.5,
346403
- 0.5,
346404
- 0.5,
346405
- 0.5,
346406
- 0.5,
346407
- 0.5,
346408
- 1.0,
346409
- 1.0
346410
- ]
346411
- },
346412
- {
346413
- "name": "StripMall Infil Half On",
346414
- "category": "Infiltration",
346415
- "units": null,
346416
- "day_types": "Sun",
346417
- "start_date": "2014-01-01T00:00:00+00:00",
346418
- "end_date": "2014-12-31T00:00:00+00:00",
346419
- "type": "Hourly",
346420
- "notes": "From DOE Reference Buildings ",
346421
- "values": [
346422
- 1.0,
346423
- 1.0,
346424
- 1.0,
346425
- 1.0,
346426
- 1.0,
346427
- 1.0,
346428
- 1.0,
346429
- 1.0,
346430
- 0.5,
346431
- 0.5,
346432
- 0.5,
346433
- 0.5,
346434
- 0.5,
346435
- 0.5,
346436
- 0.5,
346437
- 0.5,
346438
- 0.5,
346439
- 1.0,
346440
- 1.0,
346441
- 1.0,
346442
- 1.0,
346443
- 1.0,
346444
- 1.0,
346445
- 1.0
346446
- ]
346447
- },
346448
- {
346449
- "name": "StripMall Infil Half On",
346450
- "category": "Infiltration",
346451
- "units": null,
346452
- "day_types": "WntrDsn",
346453
- "start_date": "2014-01-01T00:00:00+00:00",
346454
- "end_date": "2014-12-31T00:00:00+00:00",
346455
- "type": "Constant",
346456
- "notes": "From DOE Reference Buildings ",
346457
- "values": [
346458
- 1.0
346459
- ]
346460
- },
346461
343497
  {
346462
343498
  "name": "StripMall Work Eff",
346463
343499
  "category": "Unknown",
@@ -348187,176 +345223,6 @@
348187
345223
  0.0
348188
345224
  ]
348189
345225
  },
348190
- {
348191
- "name": "SuperMarket Infil Half On",
348192
- "category": "Infiltration",
348193
- "units": null,
348194
- "day_types": "Default|SmrDsn|Sat",
348195
- "start_date": "2014-01-01T00:00:00+00:00",
348196
- "end_date": "2014-12-31T00:00:00+00:00",
348197
- "type": "Hourly",
348198
- "notes": "From DOE Reference Buildings ",
348199
- "values": [
348200
- 1.0,
348201
- 1.0,
348202
- 1.0,
348203
- 1.0,
348204
- 1.0,
348205
- 1.0,
348206
- 0.5,
348207
- 0.5,
348208
- 0.5,
348209
- 0.5,
348210
- 0.5,
348211
- 0.5,
348212
- 0.5,
348213
- 0.5,
348214
- 0.5,
348215
- 0.5,
348216
- 0.5,
348217
- 0.5,
348218
- 0.5,
348219
- 0.5,
348220
- 0.5,
348221
- 0.5,
348222
- 1.0,
348223
- 1.0
348224
- ]
348225
- },
348226
- {
348227
- "name": "SuperMarket Infil Half On",
348228
- "category": "Infiltration",
348229
- "units": null,
348230
- "day_types": "Sun",
348231
- "start_date": "2014-01-01T00:00:00+00:00",
348232
- "end_date": "2014-12-31T00:00:00+00:00",
348233
- "type": "Hourly",
348234
- "notes": "From DOE Reference Buildings ",
348235
- "values": [
348236
- 1.0,
348237
- 1.0,
348238
- 1.0,
348239
- 1.0,
348240
- 1.0,
348241
- 1.0,
348242
- 1.0,
348243
- 1.0,
348244
- 0.5,
348245
- 0.5,
348246
- 0.5,
348247
- 0.5,
348248
- 0.5,
348249
- 0.5,
348250
- 0.5,
348251
- 0.5,
348252
- 0.5,
348253
- 1.0,
348254
- 1.0,
348255
- 1.0,
348256
- 1.0,
348257
- 1.0,
348258
- 1.0,
348259
- 1.0
348260
- ]
348261
- },
348262
- {
348263
- "name": "SuperMarket Infil Half On",
348264
- "category": "Infiltration",
348265
- "units": null,
348266
- "day_types": "WntrDsn",
348267
- "start_date": "2014-01-01T00:00:00+00:00",
348268
- "end_date": "2014-12-31T00:00:00+00:00",
348269
- "type": "Constant",
348270
- "notes": "From DOE Reference Buildings ",
348271
- "values": [
348272
- 1.0
348273
- ]
348274
- },
348275
- {
348276
- "name": "SuperMarket Infil New",
348277
- "category": "Infiltration",
348278
- "units": null,
348279
- "day_types": "Default|SmrDsn|Sat",
348280
- "start_date": "2014-01-01T00:00:00+00:00",
348281
- "end_date": "2014-12-31T00:00:00+00:00",
348282
- "type": "Hourly",
348283
- "notes": "From AEDG Baseline",
348284
- "values": [
348285
- 1.0,
348286
- 1.0,
348287
- 1.0,
348288
- 1.0,
348289
- 1.0,
348290
- 1.0,
348291
- 0.32,
348292
- 0.32,
348293
- 0.32,
348294
- 0.32,
348295
- 0.32,
348296
- 0.32,
348297
- 0.32,
348298
- 0.32,
348299
- 0.32,
348300
- 0.32,
348301
- 0.32,
348302
- 0.32,
348303
- 0.32,
348304
- 0.32,
348305
- 0.32,
348306
- 0.32,
348307
- 1.0,
348308
- 1.0
348309
- ]
348310
- },
348311
- {
348312
- "name": "SuperMarket Infil New",
348313
- "category": "Infiltration",
348314
- "units": null,
348315
- "day_types": "Sun",
348316
- "start_date": "2014-01-01T00:00:00+00:00",
348317
- "end_date": "2014-12-31T00:00:00+00:00",
348318
- "type": "Hourly",
348319
- "notes": "From AEDG Baseline",
348320
- "values": [
348321
- 1.0,
348322
- 1.0,
348323
- 1.0,
348324
- 1.0,
348325
- 1.0,
348326
- 1.0,
348327
- 1.0,
348328
- 1.0,
348329
- 0.5,
348330
- 0.5,
348331
- 0.5,
348332
- 0.5,
348333
- 0.5,
348334
- 0.5,
348335
- 0.5,
348336
- 0.5,
348337
- 0.5,
348338
- 1.0,
348339
- 1.0,
348340
- 1.0,
348341
- 1.0,
348342
- 1.0,
348343
- 1.0,
348344
- 1.0
348345
- ]
348346
- },
348347
- {
348348
- "name": "SuperMarket Infil New",
348349
- "category": "Infiltration",
348350
- "units": null,
348351
- "day_types": "WntrDsn",
348352
- "start_date": "2014-01-01T00:00:00+00:00",
348353
- "end_date": "2014-12-31T00:00:00+00:00",
348354
- "type": "Constant",
348355
- "notes": "From AEDG Baseline",
348356
- "values": [
348357
- 1.0
348358
- ]
348359
- },
348360
345226
  {
348361
345227
  "name": "SuperMarket MaxRelHumSetSch",
348362
345228
  "category": "Unknown",
@@ -349643,78 +346509,6 @@
349643
346509
  0.0
349644
346510
  ]
349645
346511
  },
349646
- {
349647
- "name": "Warehouse Bulk Infil Schedule",
349648
- "category": "Infiltration",
349649
- "units": null,
349650
- "day_types": "Wkdy",
349651
- "start_date": "2014-01-01T00:00:00+00:00",
349652
- "end_date": "2014-12-31T00:00:00+00:00",
349653
- "type": "Hourly",
349654
- "notes": null,
349655
- "values": [
349656
- 0.765,
349657
- 0.765,
349658
- 0.765,
349659
- 0.765,
349660
- 0.765,
349661
- 0.765,
349662
- 0.765,
349663
- 0.765,
349664
- 1.0,
349665
- 1.0,
349666
- 1.0,
349667
- 1.0,
349668
- 0.765,
349669
- 1.0,
349670
- 1.0,
349671
- 1.0,
349672
- 1.0,
349673
- 0.765,
349674
- 0.765,
349675
- 0.765,
349676
- 0.765,
349677
- 0.765,
349678
- 0.765,
349679
- 0.765
349680
- ]
349681
- },
349682
- {
349683
- "name": "Warehouse Bulk Infil Schedule",
349684
- "category": "Infiltration",
349685
- "units": null,
349686
- "day_types": "Wknd",
349687
- "start_date": "2014-01-01T00:00:00+00:00",
349688
- "end_date": "2014-12-31T00:00:00+00:00",
349689
- "type": "Hourly",
349690
- "notes": null,
349691
- "values": [
349692
- 0.765,
349693
- 0.765,
349694
- 0.765,
349695
- 0.765,
349696
- 0.765,
349697
- 0.765,
349698
- 0.765,
349699
- 0.765,
349700
- 0.765,
349701
- 0.765,
349702
- 0.765,
349703
- 0.765,
349704
- 0.765,
349705
- 0.765,
349706
- 0.765,
349707
- 0.765,
349708
- 0.765,
349709
- 0.765,
349710
- 0.765,
349711
- 0.765,
349712
- 0.765,
349713
- 0.765,
349714
- 0.765,
349715
- 0.765
349716
- ]
349717
- },
349718
346512
  {
349719
346513
  "name": "Warehouse Bulk Storage Heating Setpoint Schedule",
349720
346514
  "category": "Thermostat Setpoint",
@@ -350234,55 +347028,6 @@
350234
347028
  1.0
350235
347029
  ]
350236
347030
  },
350237
- {
350238
- "name": "Warehouse Fine Infil Schedule",
350239
- "category": "Infiltration",
350240
- "units": null,
350241
- "day_types": "Wkdy",
350242
- "start_date": "2014-01-01T00:00:00+00:00",
350243
- "end_date": "2014-12-31T00:00:00+00:00",
350244
- "type": "Hourly",
350245
- "notes": null,
350246
- "values": [
350247
- 1.0,
350248
- 1.0,
350249
- 1.0,
350250
- 1.0,
350251
- 1.0,
350252
- 1.0,
350253
- 1.0,
350254
- 1.0,
350255
- 1.0,
350256
- 0.5,
350257
- 0.5,
350258
- 0.5,
350259
- 0.5,
350260
- 0.5,
350261
- 0.5,
350262
- 0.5,
350263
- 1.0,
350264
- 1.0,
350265
- 1.0,
350266
- 1.0,
350267
- 1.0,
350268
- 1.0,
350269
- 1.0,
350270
- 1.0
350271
- ]
350272
- },
350273
- {
350274
- "name": "Warehouse Fine Infil Schedule",
350275
- "category": "Infiltration",
350276
- "units": null,
350277
- "day_types": "Wknd",
350278
- "start_date": "2014-01-01T00:00:00+00:00",
350279
- "end_date": "2014-12-31T00:00:00+00:00",
350280
- "type": "Constant",
350281
- "notes": null,
350282
- "values": [
350283
- 1.0
350284
- ]
350285
- },
350286
347031
  {
350287
347032
  "name": "Warehouse Fine Storage Cooling Setpoint Schedule",
350288
347033
  "category": "Thermostat Setpoint",
@@ -350825,55 +347570,6 @@
350825
347570
  0.015
350826
347571
  ]
350827
347572
  },
350828
- {
350829
- "name": "Warehouse Office Infil Schedule",
350830
- "category": "Infiltration",
350831
- "units": null,
350832
- "day_types": "Wkdy",
350833
- "start_date": "2014-01-01T00:00:00+00:00",
350834
- "end_date": "2014-12-31T00:00:00+00:00",
350835
- "type": "Hourly",
350836
- "notes": null,
350837
- "values": [
350838
- 1.0,
350839
- 1.0,
350840
- 1.0,
350841
- 1.0,
350842
- 1.0,
350843
- 1.0,
350844
- 1.0,
350845
- 1.0,
350846
- 1.0,
350847
- 0.5,
350848
- 0.5,
350849
- 0.5,
350850
- 0.5,
350851
- 0.5,
350852
- 0.5,
350853
- 0.5,
350854
- 1.0,
350855
- 1.0,
350856
- 1.0,
350857
- 1.0,
350858
- 1.0,
350859
- 1.0,
350860
- 1.0,
350861
- 1.0
350862
- ]
350863
- },
350864
- {
350865
- "name": "Warehouse Office Infil Schedule",
350866
- "category": "Infiltration",
350867
- "units": null,
350868
- "day_types": "Wknd",
350869
- "start_date": "2014-01-01T00:00:00+00:00",
350870
- "end_date": "2014-12-31T00:00:00+00:00",
350871
- "type": "Constant",
350872
- "notes": null,
350873
- "values": [
350874
- 1.0
350875
- ]
350876
- },
350877
347573
  {
350878
347574
  "name": "Warehouse Office_Plug_SCH",
350879
347575
  "category": "Unknown",