openstudio-standards 0.2.16.rc2 → 0.2.17.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (189) hide show
  1. checksums.yaml +4 -4
  2. data/data/geometry/ASHRAECollege.osm +117 -117
  3. data/data/standards/manage_OpenStudio_Standards.rb +31 -4
  4. data/data/standards/test_performance_expected_dd_results.csv +287 -287
  5. data/lib/openstudio-standards/btap/geometry.rb +1 -1
  6. data/lib/openstudio-standards/hvac_sizing/Siz.HeatingCoolingFuels.rb +354 -2
  7. data/lib/openstudio-standards/hvac_sizing/Siz.ThermalZone.rb +79 -0
  8. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.College.rb +1 -1
  9. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.Laboratory.rb +1 -1
  10. data/lib/openstudio-standards/prototypes/common/do_not_edit_metaclasses.rb +3376 -63
  11. data/lib/openstudio-standards/prototypes/common/objects/Prototype.Fan.rb +12 -0
  12. data/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.rb +3 -4
  13. data/lib/openstudio-standards/prototypes/common/objects/Prototype.SizingSystem.rb +1 -1
  14. data/lib/openstudio-standards/prototypes/common/objects/Prototype.hvac_systems.rb +168 -93
  15. data/lib/openstudio-standards/prototypes/common/objects/Prototype.utilities.rb +2 -4
  16. data/lib/openstudio-standards/prototypes/common/prototype_metaprogramming.rb +2 -1
  17. data/lib/openstudio-standards/refs/references.rb +3 -0
  18. data/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb +279 -6
  19. data/lib/openstudio-standards/standards/Standards.AirTerminalSingleDuctParallelPIUReheat.rb +50 -2
  20. data/lib/openstudio-standards/standards/Standards.ChillerElectricEIR.rb +4 -0
  21. data/lib/openstudio-standards/standards/Standards.CoilCoolingWaterToAirHeatPumpEquationFit.rb +0 -1
  22. data/lib/openstudio-standards/standards/Standards.Construction.rb +185 -3
  23. data/lib/openstudio-standards/standards/Standards.Fan.rb +14 -6
  24. data/lib/openstudio-standards/standards/Standards.HeatExchangerSensLat.rb +1 -0
  25. data/lib/openstudio-standards/standards/Standards.Model.rb +1752 -384
  26. data/lib/openstudio-standards/standards/Standards.PlanarSurface.rb +130 -9
  27. data/lib/openstudio-standards/standards/Standards.PlantLoop.rb +50 -3
  28. data/lib/openstudio-standards/standards/Standards.ScheduleCompact.rb +44 -0
  29. data/lib/openstudio-standards/standards/Standards.ScheduleConstant.rb +27 -0
  30. data/lib/openstudio-standards/standards/Standards.ScheduleRuleset.rb +543 -0
  31. data/lib/openstudio-standards/standards/Standards.Space.rb +665 -15
  32. data/lib/openstudio-standards/standards/Standards.SpaceType.rb +141 -4
  33. data/lib/openstudio-standards/standards/Standards.SubSurface.rb +2 -1
  34. data/lib/openstudio-standards/standards/Standards.Surface.rb +117 -0
  35. data/lib/openstudio-standards/standards/Standards.ThermalZone.rb +197 -49
  36. data/lib/openstudio-standards/standards/Standards.ZoneHVACComponent.rb +41 -0
  37. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/ashrae_90_1_2004.Model.rb +6 -8
  38. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/comstock_ashrae_90_1_2004/data/ashrae_90_1.schedules.json +45 -45
  39. 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 +7 -7
  40. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.spc_typ.json +19 -19
  41. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/comstock_ashrae_90_1_2007/data/ashrae_90_1.schedules.json +45 -45
  42. 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 +7 -7
  43. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.spc_typ.json +5 -5
  44. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/comstock_ashrae_90_1_2010/data/ashrae_90_1.schedules.json +45 -45
  45. 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 +9 -9
  46. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.spc_typ.json +3 -3
  47. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/comstock_ashrae_90_1_2013/data/ashrae_90_1.schedules.json +45 -45
  48. 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 +4 -4
  49. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.spc_typ.json +6 -6
  50. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/comstock_ashrae_90_1_2016/data/ashrae_90_1.schedules.json +45 -45
  51. 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 +5 -5
  52. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.spc_typ.json +6 -6
  53. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.AirLoopHVAC.rb +5 -5
  54. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/comstock_ashrae_90_1_2019/data/ashrae_90_1.schedules.json +45 -45
  55. 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 +5 -5
  56. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.spc_typ.json +6 -6
  57. data/lib/openstudio-standards/standards/ashrae_90_1/data/ashrae_90_1.constructions.json +2 -2
  58. data/lib/openstudio-standards/standards/ashrae_90_1/data/ashrae_90_1.fans.json +12 -0
  59. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/comstock_doe_ref_1980_2004/data/ashrae_90_1.schedules.json +45 -45
  60. 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 +10 -10
  61. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/comstock_doe_ref_pre_1980/data/ashrae_90_1.schedules.json +45 -45
  62. 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 +10 -10
  63. data/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/nrel_zne_ready_2017.AirLoopHVAC.rb +1 -0
  64. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.AirLoopHVAC.rb +792 -0
  65. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.AirTerminalSingleDuctParallelPIUReheat.rb +10 -0
  66. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.AirTerminalSingleDuctVAVReheat.rb +31 -0
  67. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.BoilerHotWater.rb +91 -0
  68. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.ChillerElectricEIR.rb +84 -0
  69. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilCoolingDXSingleSpeed.rb +145 -0
  70. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilCoolingDXTwoSpeed.rb +106 -0
  71. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilDX.rb +71 -0
  72. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilHeatingDXSingleSpeed.rb +194 -0
  73. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilHeatingGas.rb +120 -0
  74. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoolingTower.rb +110 -0
  75. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoolingTowerVariableSpeed.rb +5 -0
  76. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Fan.rb +73 -0
  77. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.FanConstantVolume.rb +5 -0
  78. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.FanOnOff.rb +5 -0
  79. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.FanVariableVolume.rb +24 -0
  80. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.FanZoneExhaust.rb +5 -0
  81. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.HeatExchangerSensLat.rb +55 -0
  82. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Model.rb +3045 -0
  83. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.PlanarSurface.rb +187 -0
  84. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.PlantLoop.rb +450 -0
  85. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Space.rb +106 -0
  86. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.SpaceType.rb +666 -0
  87. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Surface.rb +54 -0
  88. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.ThermalZone.rb +168 -0
  89. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.ZoneHVACComponent.rb +132 -0
  90. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.rb +239 -0
  91. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/ashrae_90_1_prm_2019.Model.rb +176 -0
  92. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/ashrae_90_1_prm_2019.rb +25 -0
  93. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.boilers.json +52 -0
  94. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.chillers.json +112 -0
  95. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.climate_zone_sets.json +210 -0
  96. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.construction_properties.json +10384 -0
  97. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.construction_sets.json +133 -0
  98. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.furnaces.json +43 -0
  99. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.heat_pumps.json +119 -0
  100. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.heat_pumps_heating.json +130 -0
  101. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.heat_rejection.json +13 -0
  102. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.lpd_space_type.json +568 -0
  103. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.motors.json +264 -0
  104. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.prm_baseline_hvac.json +439 -0
  105. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.prm_constructions.json +685 -0
  106. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.prm_economizers.json +213 -0
  107. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.prm_ext_ltg.json +32 -0
  108. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.prm_heat_type.json +136 -0
  109. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.prm_hvac_bldg_type.json +32 -0
  110. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.prm_interior_lighting.json +1837 -0
  111. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.prm_swh_bldg_type.json +184 -0
  112. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.prm_wwr_bldg_type.json +84 -0
  113. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.unitary_acs.json +148 -0
  114. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/data/ashrae_90_1_prm_2019.water_heaters.json +157 -0
  115. data/lib/openstudio-standards/standards/ashrae_90_1_prm/data/ashrae_90_1_prm.climate_zone_sets.json +210 -0
  116. data/lib/openstudio-standards/standards/ashrae_90_1_prm/data/ashrae_90_1_prm.curves.json +18329 -0
  117. data/lib/openstudio-standards/standards/ashrae_90_1_prm/data/ashrae_90_1_prm.fans.json +340 -0
  118. data/lib/openstudio-standards/standards/ashrae_90_1_prm/data/ashrae_90_1_prm.materials.json +49924 -0
  119. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/baseline_building_rotation_exception.md +44 -0
  120. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/check_pump_power_and_control.md +71 -0
  121. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/dcv.md +68 -0
  122. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/dcv_implementation.png +0 -0
  123. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/elevators.md +14 -0
  124. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/exhaust_air_energy_recovery.md +36 -0
  125. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/f_c_factors.md +19 -0
  126. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/fan_power_credits.md +15 -0
  127. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/preheat_coil.md +59 -0
  128. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/pump_power_control.md +46 -0
  129. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/return_air_type.md +31 -0
  130. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/set_baseline_wwr.md +191 -0
  131. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/set_hw_and_chw_supply_water_temp_reset_control.md +24 -0
  132. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/set_num_boilers_chillers_towers.md +49 -0
  133. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/set_plug_load_measures.md +80 -0
  134. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/set_space_lpd.md +73 -0
  135. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/unenclosed_and_unconditioned_spaces.md +11 -0
  136. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/unmet_load_hours.md +20 -0
  137. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/vav_parallel_piu_terminals_fan_control.md +23 -0
  138. data/lib/openstudio-standards/standards/ashrae_90_1_prm/docs/vav_terminals_min_flow_setpoint.md +21 -0
  139. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_airloop_hvac.csv +1 -0
  140. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_airloop_hvac_doas.csv +1 -0
  141. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_building.csv +1 -0
  142. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_design_specification_outdoor_air.csv +1 -0
  143. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_electric_equipment.csv +1 -0
  144. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_exterior_lights.csv +1 -0
  145. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_gas_equipment.csv +1 -0
  146. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_lights.csv +1 -0
  147. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_space.csv +1 -0
  148. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_spacetype.csv +1 -0
  149. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_thermal_zone.csv +1 -0
  150. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_wateruse_connections.csv +1 -0
  151. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_wateruse_equipment.csv +1 -0
  152. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_wateruse_equipment_definition.csv +1 -0
  153. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_zone_hvac.csv +1 -0
  154. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_zone_infiltration.csv +1 -0
  155. data/lib/openstudio-standards/standards/cbes/data/cbes.fans.json +12 -0
  156. data/lib/openstudio-standards/standards/deer/data/deer.fans.json +12 -0
  157. data/lib/openstudio-standards/standards/necb/ECMS/data/heat_pumps.json +1 -1
  158. data/lib/openstudio-standards/standards/necb/ECMS/data/heat_pumps_heating.json +1 -1
  159. data/lib/openstudio-standards/standards/necb/ECMS/data/unitary_acs.json +24 -11
  160. data/lib/openstudio-standards/standards/necb/ECMS/erv.rb +13 -15
  161. data/lib/openstudio-standards/standards/necb/NECB2011/data/province_map.json +17 -0
  162. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_multi_speed.rb +1 -1
  163. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb +1 -1
  164. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb +2 -2
  165. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb +6 -5
  166. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb +3 -2
  167. data/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb +2 -3
  168. data/lib/openstudio-standards/standards/necb/NECB2020/data/chillers.json +2 -2
  169. data/lib/openstudio-standards/standards/necb/NECB2020/data/space_types.json +33 -924
  170. data/lib/openstudio-standards/standards/necb/NECB2020/data/unitary_acs.json +15 -15
  171. data/lib/openstudio-standards/standards/necb/common/btap_data.rb +135 -29
  172. data/lib/openstudio-standards/standards/necb/common/btap_datapoint.rb +16 -4
  173. data/lib/openstudio-standards/standards/necb/common/neb_end_use_prices.csv +40 -42
  174. data/lib/openstudio-standards/standards/necb/common/necb_reference_runs.csv +1 -1
  175. data/lib/openstudio-standards/standards/necb/common/space_type_upgrade_map.json +89 -89
  176. data/lib/openstudio-standards/utilities/array.rb +11 -0
  177. data/lib/openstudio-standards/utilities/logging.rb +48 -0
  178. data/lib/openstudio-standards/utilities/object_info.rb +20 -0
  179. data/lib/openstudio-standards/utilities/schedule_translator.rb +348 -0
  180. data/lib/openstudio-standards/utilities/sqlfile.rb +68 -0
  181. data/lib/openstudio-standards/version.rb +2 -2
  182. data/lib/openstudio-standards/weather/Weather.Model.rb +42 -55
  183. data/lib/openstudio-standards/weather/Weather.stat_file.rb +1 -1
  184. data/lib/openstudio-standards.rb +35 -1
  185. metadata +111 -6
  186. data/data/standards/OpenStudio_Standards-ashrae_90_1.xlsx +0 -0
  187. data/data/standards/OpenStudio_Standards-ashrae_90_1_28Jan2022.xlsx +0 -0
  188. data/data/standards/OpenStudio_Standards-ashrae_90_1_28_Jan2022_2.xlsx +0 -0
  189. data/data/standards/openstudio_standards_duplicates_log.csv +0 -143
@@ -2342,7 +2342,7 @@
2342
2342
  "NECB2017_building_type": "Space Function",
2343
2343
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-A",
2344
2344
  "NECB2020_building_type": "Space Function",
2345
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-A"
2345
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-A"
2346
2346
  },
2347
2347
  {
2348
2348
  "BTAPPRE1980_building_type": "Space Function",
@@ -2356,7 +2356,7 @@
2356
2356
  "NECB2017_building_type": "Space Function",
2357
2357
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-B",
2358
2358
  "NECB2020_building_type": "Space Function",
2359
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-B"
2359
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-B"
2360
2360
  },
2361
2361
  {
2362
2362
  "BTAPPRE1980_building_type": "Space Function",
@@ -2370,7 +2370,7 @@
2370
2370
  "NECB2017_building_type": "Space Function",
2371
2371
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-C",
2372
2372
  "NECB2020_building_type": "Space Function",
2373
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-C"
2373
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-C"
2374
2374
  },
2375
2375
  {
2376
2376
  "BTAPPRE1980_building_type": "Space Function",
@@ -2384,7 +2384,7 @@
2384
2384
  "NECB2017_building_type": "Space Function",
2385
2385
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-D",
2386
2386
  "NECB2020_building_type": "Space Function",
2387
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-D"
2387
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-D"
2388
2388
  },
2389
2389
  {
2390
2390
  "BTAPPRE1980_building_type": "Space Function",
@@ -2398,7 +2398,7 @@
2398
2398
  "NECB2017_building_type": "Space Function",
2399
2399
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-E",
2400
2400
  "NECB2020_building_type": "Space Function",
2401
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-E"
2401
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-E"
2402
2402
  },
2403
2403
  {
2404
2404
  "BTAPPRE1980_building_type": "Space Function",
@@ -2412,7 +2412,7 @@
2412
2412
  "NECB2017_building_type": "Space Function",
2413
2413
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-F",
2414
2414
  "NECB2020_building_type": "Space Function",
2415
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-F"
2415
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-F"
2416
2416
  },
2417
2417
  {
2418
2418
  "BTAPPRE1980_building_type": "Space Function",
@@ -2426,7 +2426,7 @@
2426
2426
  "NECB2017_building_type": "Space Function",
2427
2427
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-G",
2428
2428
  "NECB2020_building_type": "Space Function",
2429
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-G"
2429
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-G"
2430
2430
  },
2431
2431
  {
2432
2432
  "BTAPPRE1980_building_type": "Space Function",
@@ -2440,7 +2440,7 @@
2440
2440
  "NECB2017_building_type": "Space Function",
2441
2441
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-H",
2442
2442
  "NECB2020_building_type": "Space Function",
2443
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-H"
2443
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-H"
2444
2444
  },
2445
2445
  {
2446
2446
  "BTAPPRE1980_building_type": "Space Function",
@@ -2454,7 +2454,7 @@
2454
2454
  "NECB2017_building_type": "Space Function",
2455
2455
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-I",
2456
2456
  "NECB2020_building_type": "Space Function",
2457
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-I"
2457
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-I"
2458
2458
  },
2459
2459
  {
2460
2460
  "BTAPPRE1980_building_type": "Space Function",
@@ -2468,7 +2468,7 @@
2468
2468
  "NECB2017_building_type": "Space Function",
2469
2469
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-J",
2470
2470
  "NECB2020_building_type": "Space Function",
2471
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-J"
2471
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-J"
2472
2472
  },
2473
2473
  {
2474
2474
  "BTAPPRE1980_building_type": "Space Function",
@@ -2482,7 +2482,7 @@
2482
2482
  "NECB2017_building_type": "Space Function",
2483
2483
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-K",
2484
2484
  "NECB2020_building_type": "Space Function",
2485
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-K"
2485
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-K"
2486
2486
  },
2487
2487
  {
2488
2488
  "BTAPPRE1980_building_type": "Space Function",
@@ -2496,7 +2496,7 @@
2496
2496
  "NECB2017_building_type": "Space Function",
2497
2497
  "NECB2017_space_type": "Storage room > 100 m2-sch-A",
2498
2498
  "NECB2020_building_type": "Space Function",
2499
- "NECB2020_space_type": "Storage room > 100 m2-sch-A"
2499
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-A"
2500
2500
  },
2501
2501
  {
2502
2502
  "BTAPPRE1980_building_type": "Space Function",
@@ -2510,7 +2510,7 @@
2510
2510
  "NECB2017_building_type": "Space Function",
2511
2511
  "NECB2017_space_type": "Storage room > 100 m2-sch-B",
2512
2512
  "NECB2020_building_type": "Space Function",
2513
- "NECB2020_space_type": "Storage room > 100 m2-sch-B"
2513
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-B"
2514
2514
  },
2515
2515
  {
2516
2516
  "BTAPPRE1980_building_type": "Space Function",
@@ -2524,7 +2524,7 @@
2524
2524
  "NECB2017_building_type": "Space Function",
2525
2525
  "NECB2017_space_type": "Storage room > 100 m2-sch-C",
2526
2526
  "NECB2020_building_type": "Space Function",
2527
- "NECB2020_space_type": "Storage room > 100 m2-sch-C"
2527
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-C"
2528
2528
  },
2529
2529
  {
2530
2530
  "BTAPPRE1980_building_type": "Space Function",
@@ -2538,7 +2538,7 @@
2538
2538
  "NECB2017_building_type": "Space Function",
2539
2539
  "NECB2017_space_type": "Storage room > 100 m2-sch-D",
2540
2540
  "NECB2020_building_type": "Space Function",
2541
- "NECB2020_space_type": "Storage room > 100 m2-sch-D"
2541
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-D"
2542
2542
  },
2543
2543
  {
2544
2544
  "BTAPPRE1980_building_type": "Space Function",
@@ -2552,7 +2552,7 @@
2552
2552
  "NECB2017_building_type": "Space Function",
2553
2553
  "NECB2017_space_type": "Storage room > 100 m2-sch-E",
2554
2554
  "NECB2020_building_type": "Space Function",
2555
- "NECB2020_space_type": "Storage room > 100 m2-sch-E"
2555
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-E"
2556
2556
  },
2557
2557
  {
2558
2558
  "BTAPPRE1980_building_type": "Space Function",
@@ -2566,7 +2566,7 @@
2566
2566
  "NECB2017_building_type": "Space Function",
2567
2567
  "NECB2017_space_type": "Storage room > 100 m2-sch-F",
2568
2568
  "NECB2020_building_type": "Space Function",
2569
- "NECB2020_space_type": "Storage room > 100 m2-sch-F"
2569
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-F"
2570
2570
  },
2571
2571
  {
2572
2572
  "BTAPPRE1980_building_type": "Space Function",
@@ -2580,7 +2580,7 @@
2580
2580
  "NECB2017_building_type": "Space Function",
2581
2581
  "NECB2017_space_type": "Storage room > 100 m2-sch-G",
2582
2582
  "NECB2020_building_type": "Space Function",
2583
- "NECB2020_space_type": "Storage room > 100 m2-sch-G"
2583
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-G"
2584
2584
  },
2585
2585
  {
2586
2586
  "BTAPPRE1980_building_type": "Space Function",
@@ -2594,7 +2594,7 @@
2594
2594
  "NECB2017_building_type": "Space Function",
2595
2595
  "NECB2017_space_type": "Storage room > 100 m2-sch-H",
2596
2596
  "NECB2020_building_type": "Space Function",
2597
- "NECB2020_space_type": "Storage room > 100 m2-sch-H"
2597
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-H"
2598
2598
  },
2599
2599
  {
2600
2600
  "BTAPPRE1980_building_type": "Space Function",
@@ -2608,7 +2608,7 @@
2608
2608
  "NECB2017_building_type": "Space Function",
2609
2609
  "NECB2017_space_type": "Storage room > 100 m2-sch-I",
2610
2610
  "NECB2020_building_type": "Space Function",
2611
- "NECB2020_space_type": "Storage room > 100 m2-sch-I"
2611
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-I"
2612
2612
  },
2613
2613
  {
2614
2614
  "BTAPPRE1980_building_type": "Space Function",
@@ -2622,7 +2622,7 @@
2622
2622
  "NECB2017_building_type": "Space Function",
2623
2623
  "NECB2017_space_type": "Storage room > 100 m2-sch-J",
2624
2624
  "NECB2020_building_type": "Space Function",
2625
- "NECB2020_space_type": "Storage room > 100 m2-sch-J"
2625
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-J"
2626
2626
  },
2627
2627
  {
2628
2628
  "BTAPPRE1980_building_type": "Space Function",
@@ -2636,7 +2636,7 @@
2636
2636
  "NECB2017_building_type": "Space Function",
2637
2637
  "NECB2017_space_type": "Storage room > 100 m2-sch-K",
2638
2638
  "NECB2020_building_type": "Space Function",
2639
- "NECB2020_space_type": "Storage room > 100 m2-sch-K"
2639
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-K"
2640
2640
  },
2641
2641
  {
2642
2642
  "BTAPPRE1980_building_type": "Space Function",
@@ -2804,7 +2804,7 @@
2804
2804
  "NECB2017_building_type": "Space Function",
2805
2805
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-A",
2806
2806
  "NECB2020_building_type": "Space Function",
2807
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-A"
2807
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-A"
2808
2808
  },
2809
2809
  {
2810
2810
  "BTAPPRE1980_building_type": "Space Function",
@@ -2818,7 +2818,7 @@
2818
2818
  "NECB2017_building_type": "Space Function",
2819
2819
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-B",
2820
2820
  "NECB2020_building_type": "Space Function",
2821
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-B"
2821
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-B"
2822
2822
  },
2823
2823
  {
2824
2824
  "BTAPPRE1980_building_type": "Space Function",
@@ -2832,7 +2832,7 @@
2832
2832
  "NECB2017_building_type": "Space Function",
2833
2833
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-C",
2834
2834
  "NECB2020_building_type": "Space Function",
2835
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-C"
2835
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-C"
2836
2836
  },
2837
2837
  {
2838
2838
  "BTAPPRE1980_building_type": "Space Function",
@@ -2846,7 +2846,7 @@
2846
2846
  "NECB2017_building_type": "Space Function",
2847
2847
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-D",
2848
2848
  "NECB2020_building_type": "Space Function",
2849
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-D"
2849
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-D"
2850
2850
  },
2851
2851
  {
2852
2852
  "BTAPPRE1980_building_type": "Space Function",
@@ -2860,7 +2860,7 @@
2860
2860
  "NECB2017_building_type": "Space Function",
2861
2861
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-E",
2862
2862
  "NECB2020_building_type": "Space Function",
2863
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-E"
2863
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-E"
2864
2864
  },
2865
2865
  {
2866
2866
  "BTAPPRE1980_building_type": "Space Function",
@@ -2874,7 +2874,7 @@
2874
2874
  "NECB2017_building_type": "Space Function",
2875
2875
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-F",
2876
2876
  "NECB2020_building_type": "Space Function",
2877
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-F"
2877
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-F"
2878
2878
  },
2879
2879
  {
2880
2880
  "BTAPPRE1980_building_type": "Space Function",
@@ -2888,7 +2888,7 @@
2888
2888
  "NECB2017_building_type": "Space Function",
2889
2889
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-G",
2890
2890
  "NECB2020_building_type": "Space Function",
2891
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-G"
2891
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-G"
2892
2892
  },
2893
2893
  {
2894
2894
  "BTAPPRE1980_building_type": "Space Function",
@@ -2902,7 +2902,7 @@
2902
2902
  "NECB2017_building_type": "Space Function",
2903
2903
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-H",
2904
2904
  "NECB2020_building_type": "Space Function",
2905
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-H"
2905
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-H"
2906
2906
  },
2907
2907
  {
2908
2908
  "BTAPPRE1980_building_type": "Space Function",
@@ -2916,7 +2916,7 @@
2916
2916
  "NECB2017_building_type": "Space Function",
2917
2917
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-I",
2918
2918
  "NECB2020_building_type": "Space Function",
2919
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-I"
2919
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-I"
2920
2920
  },
2921
2921
  {
2922
2922
  "BTAPPRE1980_building_type": "Space Function",
@@ -2930,7 +2930,7 @@
2930
2930
  "NECB2017_building_type": "Space Function",
2931
2931
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-J",
2932
2932
  "NECB2020_building_type": "Space Function",
2933
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-J"
2933
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-J"
2934
2934
  },
2935
2935
  {
2936
2936
  "BTAPPRE1980_building_type": "Space Function",
@@ -2944,7 +2944,7 @@
2944
2944
  "NECB2017_building_type": "Space Function",
2945
2945
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-K",
2946
2946
  "NECB2020_building_type": "Space Function",
2947
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-K"
2947
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-K"
2948
2948
  },
2949
2949
  {
2950
2950
  "BTAPPRE1980_building_type": "Space Function",
@@ -2958,7 +2958,7 @@
2958
2958
  "NECB2017_building_type": "Space Function",
2959
2959
  "NECB2017_space_type": "Storage room > 100 m2-sch-A",
2960
2960
  "NECB2020_building_type": "Space Function",
2961
- "NECB2020_space_type": "Storage room > 100 m2-sch-A"
2961
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-A"
2962
2962
  },
2963
2963
  {
2964
2964
  "BTAPPRE1980_building_type": "Space Function",
@@ -2972,7 +2972,7 @@
2972
2972
  "NECB2017_building_type": "Space Function",
2973
2973
  "NECB2017_space_type": "Storage room > 100 m2-sch-B",
2974
2974
  "NECB2020_building_type": "Space Function",
2975
- "NECB2020_space_type": "Storage room > 100 m2-sch-B"
2975
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-B"
2976
2976
  },
2977
2977
  {
2978
2978
  "BTAPPRE1980_building_type": "Space Function",
@@ -2986,7 +2986,7 @@
2986
2986
  "NECB2017_building_type": "Space Function",
2987
2987
  "NECB2017_space_type": "Storage room > 100 m2-sch-C",
2988
2988
  "NECB2020_building_type": "Space Function",
2989
- "NECB2020_space_type": "Storage room > 100 m2-sch-C"
2989
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-C"
2990
2990
  },
2991
2991
  {
2992
2992
  "BTAPPRE1980_building_type": "Space Function",
@@ -3000,7 +3000,7 @@
3000
3000
  "NECB2017_building_type": "Space Function",
3001
3001
  "NECB2017_space_type": "Storage room > 100 m2-sch-D",
3002
3002
  "NECB2020_building_type": "Space Function",
3003
- "NECB2020_space_type": "Storage room > 100 m2-sch-D"
3003
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-D"
3004
3004
  },
3005
3005
  {
3006
3006
  "BTAPPRE1980_building_type": "Space Function",
@@ -3014,7 +3014,7 @@
3014
3014
  "NECB2017_building_type": "Space Function",
3015
3015
  "NECB2017_space_type": "Storage room > 100 m2-sch-E",
3016
3016
  "NECB2020_building_type": "Space Function",
3017
- "NECB2020_space_type": "Storage room > 100 m2-sch-E"
3017
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-E"
3018
3018
  },
3019
3019
  {
3020
3020
  "BTAPPRE1980_building_type": "Space Function",
@@ -3028,7 +3028,7 @@
3028
3028
  "NECB2017_building_type": "Space Function",
3029
3029
  "NECB2017_space_type": "Storage room > 100 m2-sch-F",
3030
3030
  "NECB2020_building_type": "Space Function",
3031
- "NECB2020_space_type": "Storage room > 100 m2-sch-F"
3031
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-F"
3032
3032
  },
3033
3033
  {
3034
3034
  "BTAPPRE1980_building_type": "Space Function",
@@ -3042,7 +3042,7 @@
3042
3042
  "NECB2017_building_type": "Space Function",
3043
3043
  "NECB2017_space_type": "Storage room > 100 m2-sch-G",
3044
3044
  "NECB2020_building_type": "Space Function",
3045
- "NECB2020_space_type": "Storage room > 100 m2-sch-G"
3045
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-G"
3046
3046
  },
3047
3047
  {
3048
3048
  "BTAPPRE1980_building_type": "Space Function",
@@ -3056,7 +3056,7 @@
3056
3056
  "NECB2017_building_type": "Space Function",
3057
3057
  "NECB2017_space_type": "Storage room > 100 m2-sch-H",
3058
3058
  "NECB2020_building_type": "Space Function",
3059
- "NECB2020_space_type": "Storage room > 100 m2-sch-H"
3059
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-H"
3060
3060
  },
3061
3061
  {
3062
3062
  "BTAPPRE1980_building_type": "Space Function",
@@ -3070,7 +3070,7 @@
3070
3070
  "NECB2017_building_type": "Space Function",
3071
3071
  "NECB2017_space_type": "Storage room > 100 m2-sch-I",
3072
3072
  "NECB2020_building_type": "Space Function",
3073
- "NECB2020_space_type": "Storage room > 100 m2-sch-I"
3073
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-I"
3074
3074
  },
3075
3075
  {
3076
3076
  "BTAPPRE1980_building_type": "Space Function",
@@ -3084,7 +3084,7 @@
3084
3084
  "NECB2017_building_type": "Space Function",
3085
3085
  "NECB2017_space_type": "Storage room > 100 m2-sch-J",
3086
3086
  "NECB2020_building_type": "Space Function",
3087
- "NECB2020_space_type": "Storage room > 100 m2-sch-J"
3087
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-J"
3088
3088
  },
3089
3089
  {
3090
3090
  "BTAPPRE1980_building_type": "Space Function",
@@ -3098,7 +3098,7 @@
3098
3098
  "NECB2017_building_type": "Space Function",
3099
3099
  "NECB2017_space_type": "Storage room > 100 m2-sch-K",
3100
3100
  "NECB2020_building_type": "Space Function",
3101
- "NECB2020_space_type": "Storage room > 100 m2-sch-K"
3101
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-K"
3102
3102
  },
3103
3103
  {
3104
3104
  "BTAPPRE1980_building_type": "Space Function",
@@ -3266,7 +3266,7 @@
3266
3266
  "NECB2017_building_type": "Space Function",
3267
3267
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-A",
3268
3268
  "NECB2020_building_type": "Space Function",
3269
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-A"
3269
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-A"
3270
3270
  },
3271
3271
  {
3272
3272
  "BTAPPRE1980_building_type": "Space Function",
@@ -3280,7 +3280,7 @@
3280
3280
  "NECB2017_building_type": "Space Function",
3281
3281
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-B",
3282
3282
  "NECB2020_building_type": "Space Function",
3283
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-B"
3283
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-B"
3284
3284
  },
3285
3285
  {
3286
3286
  "BTAPPRE1980_building_type": "Space Function",
@@ -3294,7 +3294,7 @@
3294
3294
  "NECB2017_building_type": "Space Function",
3295
3295
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-C",
3296
3296
  "NECB2020_building_type": "Space Function",
3297
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-C"
3297
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-C"
3298
3298
  },
3299
3299
  {
3300
3300
  "BTAPPRE1980_building_type": "Space Function",
@@ -3308,7 +3308,7 @@
3308
3308
  "NECB2017_building_type": "Space Function",
3309
3309
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-D",
3310
3310
  "NECB2020_building_type": "Space Function",
3311
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-D"
3311
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-D"
3312
3312
  },
3313
3313
  {
3314
3314
  "BTAPPRE1980_building_type": "Space Function",
@@ -3322,7 +3322,7 @@
3322
3322
  "NECB2017_building_type": "Space Function",
3323
3323
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-E",
3324
3324
  "NECB2020_building_type": "Space Function",
3325
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-E"
3325
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-E"
3326
3326
  },
3327
3327
  {
3328
3328
  "BTAPPRE1980_building_type": "Space Function",
@@ -3336,7 +3336,7 @@
3336
3336
  "NECB2017_building_type": "Space Function",
3337
3337
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-F",
3338
3338
  "NECB2020_building_type": "Space Function",
3339
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-F"
3339
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-F"
3340
3340
  },
3341
3341
  {
3342
3342
  "BTAPPRE1980_building_type": "Space Function",
@@ -3350,7 +3350,7 @@
3350
3350
  "NECB2017_building_type": "Space Function",
3351
3351
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-G",
3352
3352
  "NECB2020_building_type": "Space Function",
3353
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-G"
3353
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-G"
3354
3354
  },
3355
3355
  {
3356
3356
  "BTAPPRE1980_building_type": "Space Function",
@@ -3364,7 +3364,7 @@
3364
3364
  "NECB2017_building_type": "Space Function",
3365
3365
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-H",
3366
3366
  "NECB2020_building_type": "Space Function",
3367
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-H"
3367
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-H"
3368
3368
  },
3369
3369
  {
3370
3370
  "BTAPPRE1980_building_type": "Space Function",
@@ -3378,7 +3378,7 @@
3378
3378
  "NECB2017_building_type": "Space Function",
3379
3379
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-I",
3380
3380
  "NECB2020_building_type": "Space Function",
3381
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-I"
3381
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-I"
3382
3382
  },
3383
3383
  {
3384
3384
  "BTAPPRE1980_building_type": "Space Function",
@@ -3392,7 +3392,7 @@
3392
3392
  "NECB2017_building_type": "Space Function",
3393
3393
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-J",
3394
3394
  "NECB2020_building_type": "Space Function",
3395
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-J"
3395
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-J"
3396
3396
  },
3397
3397
  {
3398
3398
  "BTAPPRE1980_building_type": "Space Function",
@@ -3406,7 +3406,7 @@
3406
3406
  "NECB2017_building_type": "Space Function",
3407
3407
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-K",
3408
3408
  "NECB2020_building_type": "Space Function",
3409
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-K"
3409
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-K"
3410
3410
  },
3411
3411
  {
3412
3412
  "BTAPPRE1980_building_type": "Space Function",
@@ -3420,7 +3420,7 @@
3420
3420
  "NECB2017_building_type": "Space Function",
3421
3421
  "NECB2017_space_type": "Storage room > 100 m2-sch-A",
3422
3422
  "NECB2020_building_type": "Space Function",
3423
- "NECB2020_space_type": "Storage room > 100 m2-sch-A"
3423
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-A"
3424
3424
  },
3425
3425
  {
3426
3426
  "BTAPPRE1980_building_type": "Space Function",
@@ -3434,7 +3434,7 @@
3434
3434
  "NECB2017_building_type": "Space Function",
3435
3435
  "NECB2017_space_type": "Storage room > 100 m2-sch-B",
3436
3436
  "NECB2020_building_type": "Space Function",
3437
- "NECB2020_space_type": "Storage room > 100 m2-sch-B"
3437
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-B"
3438
3438
  },
3439
3439
  {
3440
3440
  "BTAPPRE1980_building_type": "Space Function",
@@ -3448,7 +3448,7 @@
3448
3448
  "NECB2017_building_type": "Space Function",
3449
3449
  "NECB2017_space_type": "Storage room > 100 m2-sch-C",
3450
3450
  "NECB2020_building_type": "Space Function",
3451
- "NECB2020_space_type": "Storage room > 100 m2-sch-C"
3451
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-C"
3452
3452
  },
3453
3453
  {
3454
3454
  "BTAPPRE1980_building_type": "Space Function",
@@ -3462,7 +3462,7 @@
3462
3462
  "NECB2017_building_type": "Space Function",
3463
3463
  "NECB2017_space_type": "Storage room > 100 m2-sch-D",
3464
3464
  "NECB2020_building_type": "Space Function",
3465
- "NECB2020_space_type": "Storage room > 100 m2-sch-D"
3465
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-D"
3466
3466
  },
3467
3467
  {
3468
3468
  "BTAPPRE1980_building_type": "Space Function",
@@ -3476,7 +3476,7 @@
3476
3476
  "NECB2017_building_type": "Space Function",
3477
3477
  "NECB2017_space_type": "Storage room > 100 m2-sch-E",
3478
3478
  "NECB2020_building_type": "Space Function",
3479
- "NECB2020_space_type": "Storage room > 100 m2-sch-E"
3479
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-E"
3480
3480
  },
3481
3481
  {
3482
3482
  "BTAPPRE1980_building_type": "Space Function",
@@ -3490,7 +3490,7 @@
3490
3490
  "NECB2017_building_type": "Space Function",
3491
3491
  "NECB2017_space_type": "Storage room > 100 m2-sch-F",
3492
3492
  "NECB2020_building_type": "Space Function",
3493
- "NECB2020_space_type": "Storage room > 100 m2-sch-F"
3493
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-F"
3494
3494
  },
3495
3495
  {
3496
3496
  "BTAPPRE1980_building_type": "Space Function",
@@ -3504,7 +3504,7 @@
3504
3504
  "NECB2017_building_type": "Space Function",
3505
3505
  "NECB2017_space_type": "Storage room > 100 m2-sch-G",
3506
3506
  "NECB2020_building_type": "Space Function",
3507
- "NECB2020_space_type": "Storage room > 100 m2-sch-G"
3507
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-G"
3508
3508
  },
3509
3509
  {
3510
3510
  "BTAPPRE1980_building_type": "Space Function",
@@ -3518,7 +3518,7 @@
3518
3518
  "NECB2017_building_type": "Space Function",
3519
3519
  "NECB2017_space_type": "Storage room > 100 m2-sch-H",
3520
3520
  "NECB2020_building_type": "Space Function",
3521
- "NECB2020_space_type": "Storage room > 100 m2-sch-H"
3521
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-H"
3522
3522
  },
3523
3523
  {
3524
3524
  "BTAPPRE1980_building_type": "Space Function",
@@ -3532,7 +3532,7 @@
3532
3532
  "NECB2017_building_type": "Space Function",
3533
3533
  "NECB2017_space_type": "Storage room > 100 m2-sch-I",
3534
3534
  "NECB2020_building_type": "Space Function",
3535
- "NECB2020_space_type": "Storage room > 100 m2-sch-I"
3535
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-I"
3536
3536
  },
3537
3537
  {
3538
3538
  "BTAPPRE1980_building_type": "Space Function",
@@ -3546,7 +3546,7 @@
3546
3546
  "NECB2017_building_type": "Space Function",
3547
3547
  "NECB2017_space_type": "Storage room > 100 m2-sch-J",
3548
3548
  "NECB2020_building_type": "Space Function",
3549
- "NECB2020_space_type": "Storage room > 100 m2-sch-J"
3549
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-J"
3550
3550
  },
3551
3551
  {
3552
3552
  "BTAPPRE1980_building_type": "Space Function",
@@ -3560,7 +3560,7 @@
3560
3560
  "NECB2017_building_type": "Space Function",
3561
3561
  "NECB2017_space_type": "Storage room > 100 m2-sch-K",
3562
3562
  "NECB2020_building_type": "Space Function",
3563
- "NECB2020_space_type": "Storage room > 100 m2-sch-K"
3563
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-K"
3564
3564
  },
3565
3565
  {
3566
3566
  "BTAPPRE1980_building_type": "Space Function",
@@ -3728,7 +3728,7 @@
3728
3728
  "NECB2017_building_type": "Space Function",
3729
3729
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-A",
3730
3730
  "NECB2020_building_type": "Space Function",
3731
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-A"
3731
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-A"
3732
3732
  },
3733
3733
  {
3734
3734
  "BTAPPRE1980_building_type": "Space Function",
@@ -3742,7 +3742,7 @@
3742
3742
  "NECB2017_building_type": "Space Function",
3743
3743
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-B",
3744
3744
  "NECB2020_building_type": "Space Function",
3745
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-B"
3745
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-B"
3746
3746
  },
3747
3747
  {
3748
3748
  "BTAPPRE1980_building_type": "Space Function",
@@ -3756,7 +3756,7 @@
3756
3756
  "NECB2017_building_type": "Space Function",
3757
3757
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-C",
3758
3758
  "NECB2020_building_type": "Space Function",
3759
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-C"
3759
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-C"
3760
3760
  },
3761
3761
  {
3762
3762
  "BTAPPRE1980_building_type": "Space Function",
@@ -3770,7 +3770,7 @@
3770
3770
  "NECB2017_building_type": "Space Function",
3771
3771
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-D",
3772
3772
  "NECB2020_building_type": "Space Function",
3773
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-D"
3773
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-D"
3774
3774
  },
3775
3775
  {
3776
3776
  "BTAPPRE1980_building_type": "Space Function",
@@ -3784,7 +3784,7 @@
3784
3784
  "NECB2017_building_type": "Space Function",
3785
3785
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-E",
3786
3786
  "NECB2020_building_type": "Space Function",
3787
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-E"
3787
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-E"
3788
3788
  },
3789
3789
  {
3790
3790
  "BTAPPRE1980_building_type": "Space Function",
@@ -3798,7 +3798,7 @@
3798
3798
  "NECB2017_building_type": "Space Function",
3799
3799
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-F",
3800
3800
  "NECB2020_building_type": "Space Function",
3801
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-F"
3801
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-F"
3802
3802
  },
3803
3803
  {
3804
3804
  "BTAPPRE1980_building_type": "Space Function",
@@ -3812,7 +3812,7 @@
3812
3812
  "NECB2017_building_type": "Space Function",
3813
3813
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-G",
3814
3814
  "NECB2020_building_type": "Space Function",
3815
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-G"
3815
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-G"
3816
3816
  },
3817
3817
  {
3818
3818
  "BTAPPRE1980_building_type": "Space Function",
@@ -3826,7 +3826,7 @@
3826
3826
  "NECB2017_building_type": "Space Function",
3827
3827
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-H",
3828
3828
  "NECB2020_building_type": "Space Function",
3829
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-H"
3829
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-H"
3830
3830
  },
3831
3831
  {
3832
3832
  "BTAPPRE1980_building_type": "Space Function",
@@ -3840,7 +3840,7 @@
3840
3840
  "NECB2017_building_type": "Space Function",
3841
3841
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-I",
3842
3842
  "NECB2020_building_type": "Space Function",
3843
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-I"
3843
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-I"
3844
3844
  },
3845
3845
  {
3846
3846
  "BTAPPRE1980_building_type": "Space Function",
@@ -3854,7 +3854,7 @@
3854
3854
  "NECB2017_building_type": "Space Function",
3855
3855
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-J",
3856
3856
  "NECB2020_building_type": "Space Function",
3857
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-J"
3857
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-J"
3858
3858
  },
3859
3859
  {
3860
3860
  "BTAPPRE1980_building_type": "Space Function",
@@ -3868,7 +3868,7 @@
3868
3868
  "NECB2017_building_type": "Space Function",
3869
3869
  "NECB2017_space_type": "Storage room <= 5 m2 <= 100 m2-sch-K",
3870
3870
  "NECB2020_building_type": "Space Function",
3871
- "NECB2020_space_type": "Storage room <= 5 m2 <= 100 m2-sch-K"
3871
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-K"
3872
3872
  },
3873
3873
  {
3874
3874
  "BTAPPRE1980_building_type": "Space Function",
@@ -3882,7 +3882,7 @@
3882
3882
  "NECB2017_building_type": "Space Function",
3883
3883
  "NECB2017_space_type": "Storage room > 100 m2-sch-A",
3884
3884
  "NECB2020_building_type": "Space Function",
3885
- "NECB2020_space_type": "Storage room > 100 m2-sch-A"
3885
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-A"
3886
3886
  },
3887
3887
  {
3888
3888
  "BTAPPRE1980_building_type": "Space Function",
@@ -3894,9 +3894,9 @@
3894
3894
  "NECB2015_building_type": "Space Function",
3895
3895
  "NECB2015_space_type": "Storage room > 100 m2-sch-B",
3896
3896
  "NECB2017_building_type": "Space Function",
3897
- "NECB2017_space_type": "Storage room > 100 m2-sch-A",
3897
+ "NECB2017_space_type": "Storage room > 100 m2-sch-B",
3898
3898
  "NECB2020_building_type": "Space Function",
3899
- "NECB2020_space_type": "Storage room > 100 m2-sch-A"
3899
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-B"
3900
3900
  },
3901
3901
  {
3902
3902
  "BTAPPRE1980_building_type": "Space Function",
@@ -3910,7 +3910,7 @@
3910
3910
  "NECB2017_building_type": "Space Function",
3911
3911
  "NECB2017_space_type": "Storage room > 100 m2-sch-C",
3912
3912
  "NECB2020_building_type": "Space Function",
3913
- "NECB2020_space_type": "Storage room > 100 m2-sch-C"
3913
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-C"
3914
3914
  },
3915
3915
  {
3916
3916
  "BTAPPRE1980_building_type": "Space Function",
@@ -3924,7 +3924,7 @@
3924
3924
  "NECB2017_building_type": "Space Function",
3925
3925
  "NECB2017_space_type": "Storage room > 100 m2-sch-D",
3926
3926
  "NECB2020_building_type": "Space Function",
3927
- "NECB2020_space_type": "Storage room > 100 m2-sch-D"
3927
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-D"
3928
3928
  },
3929
3929
  {
3930
3930
  "BTAPPRE1980_building_type": "Space Function",
@@ -3938,7 +3938,7 @@
3938
3938
  "NECB2017_building_type": "Space Function",
3939
3939
  "NECB2017_space_type": "Storage room > 100 m2-sch-E",
3940
3940
  "NECB2020_building_type": "Space Function",
3941
- "NECB2020_space_type": "Storage room > 100 m2-sch-E"
3941
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-E"
3942
3942
  },
3943
3943
  {
3944
3944
  "BTAPPRE1980_building_type": "Space Function",
@@ -3952,7 +3952,7 @@
3952
3952
  "NECB2017_building_type": "Space Function",
3953
3953
  "NECB2017_space_type": "Storage room > 100 m2-sch-F",
3954
3954
  "NECB2020_building_type": "Space Function",
3955
- "NECB2020_space_type": "Storage room > 100 m2-sch-F"
3955
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-F"
3956
3956
  },
3957
3957
  {
3958
3958
  "BTAPPRE1980_building_type": "Space Function",
@@ -3966,7 +3966,7 @@
3966
3966
  "NECB2017_building_type": "Space Function",
3967
3967
  "NECB2017_space_type": "Storage room > 100 m2-sch-G",
3968
3968
  "NECB2020_building_type": "Space Function",
3969
- "NECB2020_space_type": "Storage room > 100 m2-sch-F"
3969
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-G"
3970
3970
  },
3971
3971
  {
3972
3972
  "BTAPPRE1980_building_type": "Space Function",
@@ -3980,7 +3980,7 @@
3980
3980
  "NECB2017_building_type": "Space Function",
3981
3981
  "NECB2017_space_type": "Storage room > 100 m2-sch-H",
3982
3982
  "NECB2020_building_type": "Space Function",
3983
- "NECB2020_space_type": "Storage room > 100 m2-sch-H"
3983
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-H"
3984
3984
  },
3985
3985
  {
3986
3986
  "BTAPPRE1980_building_type": "Space Function",
@@ -3994,7 +3994,7 @@
3994
3994
  "NECB2017_building_type": "Space Function",
3995
3995
  "NECB2017_space_type": "Storage room > 100 m2-sch-I",
3996
3996
  "NECB2020_building_type": "Space Function",
3997
- "NECB2020_space_type": "Storage room > 100 m2-sch-I"
3997
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-I"
3998
3998
  },
3999
3999
  {
4000
4000
  "BTAPPRE1980_building_type": "Space Function",
@@ -4008,7 +4008,7 @@
4008
4008
  "NECB2017_building_type": "Space Function",
4009
4009
  "NECB2017_space_type": "Storage room > 100 m2-sch-J",
4010
4010
  "NECB2020_building_type": "Space Function",
4011
- "NECB2020_space_type": "Storage room > 100 m2-sch-J"
4011
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-J"
4012
4012
  },
4013
4013
  {
4014
4014
  "BTAPPRE1980_building_type": "Space Function",
@@ -4022,7 +4022,7 @@
4022
4022
  "NECB2017_building_type": "Space Function",
4023
4023
  "NECB2017_space_type": "Storage room > 100 m2-sch-K",
4024
4024
  "NECB2020_building_type": "Space Function",
4025
- "NECB2020_space_type": "Storage room > 100 m2-sch-K"
4025
+ "NECB2020_space_type": "Storage room >= 5 m2-sch-K"
4026
4026
  },
4027
4027
  {
4028
4028
  "BTAPPRE1980_building_type": "Space Function",