openstudio-standards 0.8.4 → 0.8.5.rc1

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 (289) hide show
  1. checksums.yaml +4 -4
  2. data/data/geometry/ASHRAECollege.osm +30 -30
  3. data/data/geometry/ASHRAECourthouse.osm +22 -22
  4. data/data/geometry/ASHRAESmallOfficeDetailed.osm +2 -2
  5. data/data/geometry/DEER_Asm.osm +1 -1
  6. data/data/geometry/DEER_ECC.osm +1 -1
  7. data/data/geometry/DEER_EPr.osm +1 -1
  8. data/data/geometry/DEER_ERC.osm +1 -1
  9. data/data/geometry/DEER_ESe.osm +1 -1
  10. data/data/geometry/DEER_EUn.osm +1 -1
  11. data/data/geometry/DEER_Hsp.osm +1 -1
  12. data/data/geometry/DEER_Htl.osm +1 -1
  13. data/data/geometry/DEER_MBT.osm +1 -1
  14. data/data/geometry/DEER_MFm.osm +1 -1
  15. data/data/geometry/DEER_Nrs.osm +1 -1
  16. data/data/geometry/DEER_OfL.osm +1 -1
  17. data/data/geometry/DEER_OfS.osm +1 -1
  18. data/data/geometry/DEER_RFF.osm +1 -1
  19. data/data/geometry/DEER_RSD.osm +1 -1
  20. data/data/geometry/DEER_Rt3.osm +1 -1
  21. data/data/geometry/DEER_RtS.osm +1 -1
  22. data/data/standards/export_OpenStudio_libraries.rb +2 -3
  23. data/data/standards/test_performance_expected_dd_results.csv +42 -42
  24. data/lib/openstudio-standards/btap/NECB_building_types.csv +35 -0
  25. data/lib/openstudio-standards/btap/NECB_space_types.csv +109 -0
  26. data/lib/openstudio-standards/btap/activity.rb +480 -0
  27. data/lib/openstudio-standards/btap/attributes.rb +166 -0
  28. data/lib/openstudio-standards/btap/bridging.rb +561 -1402
  29. data/lib/openstudio-standards/btap/btap.rb +4 -2
  30. data/lib/openstudio-standards/btap/btap_test_helper.rb +86 -0
  31. data/lib/openstudio-standards/btap/carbon/btap_carbon.rb +177 -0
  32. data/lib/openstudio-standards/btap/{costing/common_paths.rb → common_paths.rb} +14 -11
  33. data/lib/openstudio-standards/btap/common_resources/carbon_frame.csv +35 -0
  34. data/lib/openstudio-standards/btap/common_resources/carbon_glazing.csv +35 -0
  35. data/lib/openstudio-standards/btap/common_resources/carbon_opaque.csv +164 -0
  36. data/lib/openstudio-standards/btap/common_resources/constructions_glazing.csv +121 -0
  37. data/lib/openstudio-standards/btap/common_resources/costs.csv +1897 -0
  38. data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/lighting.csv +59 -59
  39. data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/materials_hvac.csv +1019 -1032
  40. data/lib/openstudio-standards/btap/costing/btap_costing.rb +3 -7
  41. data/lib/openstudio-standards/btap/costing/costing_database_wrapper.rb +1 -5
  42. data/lib/openstudio-standards/btap/costing/daylighting_sensor_control_costing.rb +5 -4
  43. data/lib/openstudio-standards/btap/costing/dcv_costing.rb +1 -1
  44. data/lib/openstudio-standards/btap/costing/envelope_costing.rb +112 -181
  45. data/lib/openstudio-standards/btap/costing/heating_cooling_costing.rb +4 -4
  46. data/lib/openstudio-standards/btap/costing/led_lighting_costing.rb +2 -1
  47. data/lib/openstudio-standards/btap/costing/lighting_costing.rb +3 -3
  48. data/lib/openstudio-standards/btap/costing/test_list.txt +15 -17
  49. data/lib/openstudio-standards/btap/costing/test_run_all_test_locally.rb +10 -9
  50. data/lib/openstudio-standards/btap/geometry.rb +86 -6
  51. data/lib/openstudio-standards/btap/structure.rb +657 -0
  52. data/lib/openstudio-standards/create_typical/create_typical.rb +17 -33
  53. data/lib/openstudio-standards/create_typical/space_type_ratios.rb +36 -36
  54. data/lib/openstudio-standards/equipment/create_transformer.rb +104 -0
  55. data/lib/openstudio-standards/equipment/create_typical_equipment.rb +117 -0
  56. data/lib/openstudio-standards/equipment/data/electric_equipment_space_types.json +1514 -0
  57. data/lib/openstudio-standards/equipment/data/gas_equipment_space_types.json +227 -0
  58. data/lib/openstudio-standards/exterior_lighting/create.rb +22 -22
  59. data/lib/openstudio-standards/exterior_lighting/information.rb +3 -2
  60. data/lib/openstudio-standards/hvac/components/air_conditioner_vrf.rb +482 -0
  61. data/lib/openstudio-standards/hvac/components/air_terminal.rb +31 -0
  62. data/lib/openstudio-standards/hvac/components/boiler_hot_water.rb +163 -0
  63. data/lib/openstudio-standards/hvac/components/central_air_source_heat_pump.rb +220 -0
  64. data/lib/openstudio-standards/hvac/components/chiller.rb +25 -0
  65. data/lib/openstudio-standards/hvac/components/coil.rb +276 -0
  66. data/lib/openstudio-standards/hvac/components/coil_cooling_dx_multi_speed.rb +40 -0
  67. data/lib/openstudio-standards/hvac/components/coil_cooling_dx_single_speed.rb +300 -0
  68. data/lib/openstudio-standards/hvac/components/coil_cooling_dx_two_speed.rb +187 -0
  69. data/lib/openstudio-standards/hvac/components/coil_cooling_water.rb +80 -0
  70. data/lib/openstudio-standards/hvac/components/coil_cooling_water_to_air_heat_pump_equation_fit.rb +182 -0
  71. data/lib/openstudio-standards/hvac/components/coil_heating_dx_single_speed.rb +220 -0
  72. data/lib/openstudio-standards/hvac/components/coil_heating_electric.rb +56 -0
  73. data/lib/openstudio-standards/hvac/components/coil_heating_gas.rb +90 -0
  74. data/lib/openstudio-standards/hvac/components/coil_heating_gas_multi_stage.rb +33 -0
  75. data/lib/openstudio-standards/hvac/components/coil_heating_water.rb +98 -0
  76. data/lib/openstudio-standards/hvac/components/coil_heating_water_to_air_heat_pump_equation_fit.rb +147 -0
  77. data/lib/openstudio-standards/hvac/components/component.rb +39 -0
  78. data/lib/openstudio-standards/{standards/ashrae_90_1/data/ashrae_90_1.fans.json → hvac/components/data/fans.json} +6 -6
  79. data/lib/openstudio-standards/hvac/components/fan.rb +363 -0
  80. data/lib/openstudio-standards/hvac/components/heat_exchanger_air_to_air.rb +203 -0
  81. data/lib/openstudio-standards/hvac/components/pump.rb +181 -0
  82. data/lib/openstudio-standards/hvac/controls/radiant_system_controls.rb +594 -0
  83. data/lib/openstudio-standards/hvac/conversions.rb +222 -0
  84. data/lib/openstudio-standards/hvac/curves.rb +192 -0
  85. data/lib/openstudio-standards/hvac/helpers.rb +357 -0
  86. data/lib/openstudio-standards/hvac/setpoint_managers/information.rb +4 -4
  87. data/lib/openstudio-standards/interior_lighting/create_lights.rb +52 -0
  88. data/lib/openstudio-standards/interior_lighting/create_typical_interior_lighting.rb +254 -0
  89. data/lib/openstudio-standards/interior_lighting/data/convert_lighting_data.rb +249 -0
  90. data/lib/openstudio-standards/interior_lighting/data/lighting_space_types.csv +96 -0
  91. data/lib/openstudio-standards/interior_lighting/data/lighting_space_types.json +1429 -0
  92. data/lib/openstudio-standards/interior_lighting/data/lighting_technology.csv +46 -0
  93. data/lib/openstudio-standards/interior_lighting/data/lighting_technology.json +859 -0
  94. data/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2010/ashrae_90_1_2010.AirTerminalSingleDuctVAVReheat.rb +1 -1
  95. data/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.AirTerminalSingleDuctVAVReheat.rb +1 -1
  96. data/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.AirTerminalSingleDuctVAVReheat.rb +1 -1
  97. data/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Model.rb +4 -4
  98. data/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.AirTerminalSingleDuctVAVReheat.rb +1 -1
  99. data/lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Model.rb +4 -4
  100. data/lib/openstudio-standards/prototypes/ashrae_90_1/nrel_nze_ready_2017/nrel_zne_ready_2017.AirTerminalSingleDuctVAVReheat.rb +1 -1
  101. data/lib/openstudio-standards/prototypes/ashrae_90_1/ze_aedg_multifamily/ze_aedg_multifamily.AirTerminalSingleDuctVAVReheat.rb +1 -1
  102. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.HighRiseApartment.rb +6 -7
  103. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.Hospital.rb +15 -15
  104. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.LargeHotel.rb +4 -4
  105. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.LargeOffice.rb +5 -5
  106. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.MediumOffice.rb +6 -6
  107. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.Outpatient.rb +7 -7
  108. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.PrimarySchool.rb +4 -4
  109. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.SecondarySchool.rb +6 -6
  110. data/lib/openstudio-standards/prototypes/common/buildings/Prototype.SmallOfficeDetailed.rb +5 -1
  111. data/lib/openstudio-standards/prototypes/common/data/prototype_space_type_map.json +2594 -0
  112. data/lib/openstudio-standards/prototypes/common/data/thermostat_schedule_lookup.json +2108 -0
  113. data/lib/openstudio-standards/prototypes/common/objects/Prototype.AirTerminalSingleDuctVAVReheat.rb +33 -0
  114. data/lib/openstudio-standards/prototypes/common/objects/Prototype.Fan.rb +0 -140
  115. data/lib/openstudio-standards/prototypes/common/objects/Prototype.FanConstantVolume.rb +1 -73
  116. data/lib/openstudio-standards/prototypes/common/objects/Prototype.FanOnOff.rb +1 -69
  117. data/lib/openstudio-standards/prototypes/common/objects/Prototype.FanVariableVolume.rb +0 -116
  118. data/lib/openstudio-standards/prototypes/common/objects/Prototype.FanZoneExhaust.rb +0 -61
  119. data/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.hvac.rb +2 -2
  120. data/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.rb +128 -13
  121. data/lib/openstudio-standards/prototypes/common/objects/Prototype.hvac_systems.rb +606 -607
  122. data/lib/openstudio-standards/prototypes/common/prototype_space_type_map.rb +41 -0
  123. data/lib/openstudio-standards/prototypes/common/space_type_equipment_map.rb +184 -0
  124. data/lib/openstudio-standards/prototypes/common/space_type_thermostat_schedule_map.rb +116 -0
  125. data/lib/openstudio-standards/qaqc/hvac.rb +12 -12
  126. data/lib/openstudio-standards/refrigeration/create_compressor.rb +2 -5
  127. data/lib/openstudio-standards/refrigeration/data/refrigeration_compressors.csv +4 -4
  128. data/lib/openstudio-standards/service_water_heating/create_water_heater.rb +1 -2
  129. data/lib/openstudio-standards/service_water_heating/create_water_use.rb +5 -5
  130. data/lib/openstudio-standards/space_type/data/level_1_space_types.json +612 -0
  131. data/lib/openstudio-standards/space_type/standards_space_type.rb +53 -0
  132. data/lib/openstudio-standards/standards/Standards.AirConditionerVariableRefrigerantFlow.rb +8 -26
  133. data/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb +13 -13
  134. data/lib/openstudio-standards/standards/Standards.AirTerminalSingleDuctVAVReheat.rb +0 -24
  135. data/lib/openstudio-standards/standards/Standards.BoilerHotWater.rb +6 -43
  136. data/lib/openstudio-standards/standards/Standards.ChillerElectricEIR.rb +7 -24
  137. data/lib/openstudio-standards/standards/Standards.CoilCoolingDXMultiSpeed.rb +19 -44
  138. data/lib/openstudio-standards/standards/Standards.CoilCoolingDXSingleSpeed.rb +25 -50
  139. data/lib/openstudio-standards/standards/Standards.CoilCoolingDXTwoSpeed.rb +25 -33
  140. data/lib/openstudio-standards/standards/Standards.CoilCoolingWaterToAirHeatPumpEquationFit.rb +9 -22
  141. data/lib/openstudio-standards/standards/Standards.CoilDX.rb +15 -157
  142. data/lib/openstudio-standards/standards/Standards.CoilHeatingDXMultiSpeed.rb +2 -2
  143. data/lib/openstudio-standards/standards/Standards.CoilHeatingDXSingleSpeed.rb +18 -105
  144. data/lib/openstudio-standards/standards/Standards.CoilHeatingGas.rb +3 -23
  145. data/lib/openstudio-standards/standards/Standards.CoilHeatingGasMultiStage.rb +0 -24
  146. data/lib/openstudio-standards/standards/Standards.CoilHeatingWaterToAirHeatPumpEquationFit.rb +2 -86
  147. data/lib/openstudio-standards/standards/Standards.FanVariableVolume.rb +0 -107
  148. data/lib/openstudio-standards/standards/Standards.Model.rb +6 -11
  149. data/lib/openstudio-standards/standards/Standards.People.rb +113 -0
  150. data/lib/openstudio-standards/standards/Standards.PlantLoop.rb +11 -11
  151. data/lib/openstudio-standards/standards/Standards.Pump.rb +2 -147
  152. data/lib/openstudio-standards/standards/Standards.PumpVariableSpeed.rb +57 -41
  153. data/lib/openstudio-standards/standards/Standards.SpaceType.rb +30 -153
  154. data/lib/openstudio-standards/standards/Standards.Ventilation.rb +74 -0
  155. data/lib/openstudio-standards/standards/Standards.ZoneHVACComponent.rb +1 -1
  156. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/ashrae_90_1_2004.PlantLoop.rb +4 -4
  157. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.heat_pumps_heating.json +3 -3
  158. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2004/data/ashrae_90_1_2004.spc_typ.json +37 -112
  159. 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 +37 -102
  160. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.heat_pumps_heating.json +3 -3
  161. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2007/data/ashrae_90_1_2007.spc_typ.json +37 -112
  162. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/ashrae_90_1_2010.AirTerminalSingleDuctVAVReheat.rb +1 -1
  163. 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 +37 -37
  164. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.heat_pumps_heating.json +6 -6
  165. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2010/data/ashrae_90_1_2010.spc_typ.json +37 -37
  166. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.AirTerminalSingleDuctVAVReheat.rb +1 -1
  167. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.BoilerHotWater.rb +1 -1
  168. 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 +37 -102
  169. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.heat_pumps_heating.json +6 -6
  170. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2013/data/ashrae_90_1_2013.spc_typ.json +37 -37
  171. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.AirTerminalSingleDuctVAVReheat.rb +1 -1
  172. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.BoilerHotWater.rb +1 -1
  173. 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 +45 -109
  174. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.heat_pumps_heating.json +6 -6
  175. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/data/ashrae_90_1_2016.spc_typ.json +37 -37
  176. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.AirLoopHVAC.rb +1 -1
  177. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.AirTerminalSingleDuctVAVReheat.rb +1 -1
  178. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.BoilerHotWater.rb +1 -1
  179. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.CoilHeatingGas.rb +1 -1
  180. 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 +45 -109
  181. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.heat_pumps_heating.json +6 -6
  182. data/lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/data/ashrae_90_1_2019.spc_typ.json +37 -37
  183. data/lib/openstudio-standards/standards/ashrae_90_1/data/ashrae_90_1.curves.json +0 -200
  184. 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 +37 -37
  185. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_1980_2004/data/doe_ref_1980_2004.spc_typ.json +37 -37
  186. 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 +37 -37
  187. data/lib/openstudio-standards/standards/ashrae_90_1/doe_ref_pre_1980/data/doe_ref_pre_1980.spc_typ.json +37 -37
  188. data/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/nrel_zne_ready_2017.AirTerminalSingleDuctVAVReheat.rb +1 -1
  189. data/lib/openstudio-standards/standards/ashrae_90_1/nrel_zne_ready_2017/nrel_zne_ready_2017.PlantLoop.rb +5 -5
  190. data/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/ze_aedg_multifamily.AirTerminalSingleDuctVAVReheat.rb +1 -1
  191. data/lib/openstudio-standards/standards/ashrae_90_1/ze_aedg_multifamily/ze_aedg_multifamily.PlantLoop.rb +5 -5
  192. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.AirLoopHVAC.rb +1 -1
  193. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.ChillerElectricEIR.rb +2 -2
  194. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilCoolingDXSingleSpeed.rb +2 -68
  195. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilCoolingDXTwoSpeed.rb +2 -35
  196. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilDX.rb +42 -0
  197. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilHeatingDXSingleSpeed.rb +5 -2
  198. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.CoilHeatingGas.rb +2 -2
  199. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.PlantLoop.rb +3 -3
  200. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.SpaceType.rb +1 -1
  201. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/ashrae_90_1_prm_2019.Model.rb +1 -0
  202. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm_2019/ashrae_90_1_prm_2019_WaterHeaterMixed.rb +2 -4
  203. data/lib/openstudio-standards/standards/ashrae_90_1_prm/data/ashrae_90_1_prm.curves.json +0 -200
  204. data/lib/openstudio-standards/standards/ashrae_90_1_prm/data/ashrae_90_1_prm.fans.json +5 -5
  205. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/ashrae_90_1_prm.UserData.rb +1 -0
  206. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/userdata_enums.rb +0 -1
  207. data/lib/openstudio-standards/standards/cbes/data/cbes.curves.json +0 -200
  208. data/lib/openstudio-standards/standards/deer/data/deer.curves.json +0 -200
  209. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/btap_pre1980.rb +19 -10
  210. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/building_envelope.rb +12 -11
  211. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_systems.rb +4 -4
  212. data/lib/openstudio-standards/standards/necb/ECMS/ecms.rb +1 -1
  213. data/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb +69 -92
  214. data/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +2 -1
  215. data/lib/openstudio-standards/standards/necb/NECB2011/beps_compliance_path.rb +16 -12
  216. data/lib/openstudio-standards/standards/necb/NECB2011/building_envelope.rb +799 -46
  217. data/lib/openstudio-standards/standards/necb/NECB2011/data/chillers.json +33 -51
  218. data/lib/openstudio-standards/standards/necb/NECB2011/data/constants.json +32 -0
  219. data/lib/openstudio-standards/standards/necb/NECB2011/data/fuel_type_sets.json +18 -0
  220. data/lib/openstudio-standards/standards/necb/NECB2011/data/heat_pumps_heating.json +21 -15
  221. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb +5 -5
  222. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb +2 -0
  223. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb +30 -141
  224. data/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb +233 -112
  225. data/lib/openstudio-standards/standards/necb/NECB2015/data/heat_pumps_heating.json +10 -2
  226. data/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb +2 -2
  227. data/lib/openstudio-standards/standards/necb/NECB2020/data/heat_pumps_heating.json +16 -6
  228. data/lib/openstudio-standards/standards/necb/NECB2020/data/unitary_acs.json +60 -61
  229. data/lib/openstudio-standards/standards/necb/NECB2020/service_water_heating.rb +30 -30
  230. data/lib/openstudio-standards/standards/necb/common/btap_analysis.rb +79 -0
  231. data/lib/openstudio-standards/standards/necb/common/btap_data.rb +16 -4
  232. data/lib/openstudio-standards/standards/necb/common/btap_datapoint.rb +65 -42
  233. data/lib/openstudio-standards/thermal_zone/{thermal_zone.rb → information.rb} +12 -45
  234. data/lib/openstudio-standards/thermal_zone/thermostat_schedules.rb +152 -0
  235. data/lib/openstudio-standards/version.rb +1 -1
  236. data/lib/openstudio-standards/weather/stat_file.rb +2 -2
  237. data/lib/openstudio-standards.rb +55 -38
  238. metadata +106 -66
  239. data/lib/openstudio-standards/btap/costing/common_resources/constructions_glazing.csv +0 -61
  240. data/lib/openstudio-standards/btap/costing/common_resources/costs.csv +0 -1904
  241. data/lib/openstudio-standards/hvac/components/create.rb +0 -169
  242. data/lib/openstudio-standards/hvac/components/modify.rb +0 -42
  243. data/lib/openstudio-standards/prototypes/common/objects/Prototype.AirConditionerVariableRefrigerantFlow.rb +0 -438
  244. data/lib/openstudio-standards/prototypes/common/objects/Prototype.BoilerHotWater.rb +0 -123
  245. data/lib/openstudio-standards/prototypes/common/objects/Prototype.CentralAirSourceHeatPump.rb +0 -216
  246. data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilCoolingDXSingleSpeed.rb +0 -273
  247. data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilCoolingDXTwoSpeed.rb +0 -159
  248. data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilCoolingWater.rb +0 -77
  249. data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilCoolingWaterToAirHeatPumpEquationFit.rb +0 -154
  250. data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilHeatingDXSingleSpeed.rb +0 -214
  251. data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilHeatingElectric.rb +0 -53
  252. data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilHeatingGas.rb +0 -72
  253. data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilHeatingWater.rb +0 -95
  254. data/lib/openstudio-standards/prototypes/common/objects/Prototype.CoilHeatingWaterToAirHeatPumpEquationFit.rb +0 -125
  255. data/lib/openstudio-standards/prototypes/common/objects/Prototype.ControllerWaterCoil.rb +0 -17
  256. data/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.transformers.rb +0 -90
  257. data/lib/openstudio-standards/prototypes/common/objects/Prototype.Pump.rb +0 -4
  258. data/lib/openstudio-standards/prototypes/common/objects/Prototype.PumpVariableSpeed.rb +0 -70
  259. data/lib/openstudio-standards/prototypes/common/objects/Prototype.radiant_system_controls.rb +0 -590
  260. data/lib/openstudio-standards/prototypes/common/objects/Prototype.utilities.rb +0 -901
  261. data/lib/openstudio-standards/standards/Standards.FanConstantVolume.rb +0 -5
  262. data/lib/openstudio-standards/standards/Standards.FanOnOff.rb +0 -5
  263. data/lib/openstudio-standards/standards/Standards.FanZoneExhaust.rb +0 -5
  264. data/lib/openstudio-standards/standards/Standards.HeaderedPumpsConstantSpeed.rb +0 -5
  265. data/lib/openstudio-standards/standards/Standards.HeaderedPumpsVariableSpeed.rb +0 -55
  266. data/lib/openstudio-standards/standards/Standards.PumpConstantSpeed.rb +0 -5
  267. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.FanConstantVolume.rb +0 -5
  268. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.FanOnOff.rb +0 -5
  269. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.FanZoneExhaust.rb +0 -5
  270. data/lib/openstudio-standards/standards/cbes/data/cbes.fans.json +0 -328
  271. data/lib/openstudio-standards/standards/deer/data/deer.fans.json +0 -328
  272. /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/ConstructionProperties.csv +0 -0
  273. /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/Constructions.csv +0 -0
  274. /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/construction_sets.csv +0 -0
  275. /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/constructions_opaque.csv +0 -0
  276. /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/costs_local_factors.csv +0 -0
  277. /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/hvac_vent_ahu.csv +0 -0
  278. /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/lighting_sets.csv +0 -0
  279. /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/locations.csv +0 -0
  280. /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/materials_glazing.csv +0 -0
  281. /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/materials_lighting.csv +0 -0
  282. /data/lib/openstudio-standards/btap/{costing/common_resources → common_resources}/materials_opaque.csv +0 -0
  283. /data/lib/openstudio-standards/{prototypes → standards}/ashrae_90_1/ashrae_90_1_2004/ashrae_90_1_2004.PumpVariableSpeed.rb +0 -0
  284. /data/lib/openstudio-standards/{prototypes → standards}/ashrae_90_1/ashrae_90_1_2007/ashrae_90_1_2007.PumpVariableSpeed.rb +0 -0
  285. /data/lib/openstudio-standards/{prototypes → standards}/ashrae_90_1/ashrae_90_1_2010/ashrae_90_1_2010.PumpVariableSpeed.rb +0 -0
  286. /data/lib/openstudio-standards/{prototypes → standards}/ashrae_90_1/ashrae_90_1_2013/ashrae_90_1_2013.PumpVariableSpeed.rb +0 -0
  287. /data/lib/openstudio-standards/{prototypes → standards}/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.PumpVariableSpeed.rb +0 -0
  288. /data/lib/openstudio-standards/{prototypes → standards}/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.Pump.rb +0 -0
  289. /data/lib/openstudio-standards/{prototypes → standards}/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.PumpVariableSpeed.rb +0 -0
@@ -0,0 +1,1429 @@
1
+ {
2
+ "lighting_space_types": [
3
+ {
4
+ "lighting_space_type_name": "airport_concourse_lighting",
5
+ "lighting_space_type_target_illuminance_setpoint": 118.0,
6
+ "lighting_space_type_target_illuminance_units": "Lux",
7
+ "general_lighting_fraction": 0.5,
8
+ "general_lighting_coefficient_of_utilization": 0.92,
9
+ "task_lighting_fraction": 0.3,
10
+ "task_lighting_coefficient_of_utilization": 0.79,
11
+ "supplemental_lighting_fraction": 0.0,
12
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
13
+ "wall_wash_lighting_fraction": 0.2,
14
+ "wall_wash_lighting_coefficient_of_utilization": 0.75,
15
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
16
+ "notes": null
17
+ },
18
+ {
19
+ "lighting_space_type_name": "atrium_lighting",
20
+ "lighting_space_type_target_illuminance_setpoint": 178.0,
21
+ "lighting_space_type_target_illuminance_units": "Lux",
22
+ "general_lighting_fraction": 1.0,
23
+ "general_lighting_coefficient_of_utilization": 0.82,
24
+ "task_lighting_fraction": 0.0,
25
+ "task_lighting_coefficient_of_utilization": 0.0,
26
+ "supplemental_lighting_fraction": 0.0,
27
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
28
+ "wall_wash_lighting_fraction": 0.0,
29
+ "wall_wash_lighting_coefficient_of_utilization": 0.58,
30
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
31
+ "notes": "less than 20ft"
32
+ },
33
+ {
34
+ "lighting_space_type_name": "audience_seating_area_for_gymnasium_lighting",
35
+ "lighting_space_type_target_illuminance_setpoint": 118.0,
36
+ "lighting_space_type_target_illuminance_units": "Lux",
37
+ "general_lighting_fraction": 1.0,
38
+ "general_lighting_coefficient_of_utilization": 0.59,
39
+ "task_lighting_fraction": 0.0,
40
+ "task_lighting_coefficient_of_utilization": 0.0,
41
+ "supplemental_lighting_fraction": 0.0,
42
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
43
+ "wall_wash_lighting_fraction": 0.0,
44
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
45
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
46
+ "notes": null
47
+ },
48
+ {
49
+ "lighting_space_type_name": "audience_seating_area_for_motion_picture_theater_lighting",
50
+ "lighting_space_type_target_illuminance_setpoint": 118.0,
51
+ "lighting_space_type_target_illuminance_units": "Lux",
52
+ "general_lighting_fraction": 1.0,
53
+ "general_lighting_coefficient_of_utilization": 0.91,
54
+ "task_lighting_fraction": 0.0,
55
+ "task_lighting_coefficient_of_utilization": 0.0,
56
+ "supplemental_lighting_fraction": 0.0,
57
+ "supplemental_lighting_coefficient_of_utilization": 0.11,
58
+ "wall_wash_lighting_fraction": 0.0,
59
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
60
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
61
+ "notes": null
62
+ },
63
+ {
64
+ "lighting_space_type_name": "audience_seating_area_for_penitentiary_lighting",
65
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
66
+ "lighting_space_type_target_illuminance_units": "Lux",
67
+ "general_lighting_fraction": 1.0,
68
+ "general_lighting_coefficient_of_utilization": 0.91,
69
+ "task_lighting_fraction": 0.0,
70
+ "task_lighting_coefficient_of_utilization": 0.0,
71
+ "supplemental_lighting_fraction": 0.0,
72
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
73
+ "wall_wash_lighting_fraction": 0.0,
74
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
75
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
76
+ "notes": null
77
+ },
78
+ {
79
+ "lighting_space_type_name": "audience_seating_area_for_performing_arts_theater_lighting",
80
+ "lighting_space_type_target_illuminance_setpoint": 426.0,
81
+ "lighting_space_type_target_illuminance_units": "Lux",
82
+ "general_lighting_fraction": 0.791666667,
83
+ "general_lighting_coefficient_of_utilization": 0.69,
84
+ "task_lighting_fraction": 0.0,
85
+ "task_lighting_coefficient_of_utilization": 0.0,
86
+ "supplemental_lighting_fraction": 0.0,
87
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
88
+ "wall_wash_lighting_fraction": 0.208333333,
89
+ "wall_wash_lighting_coefficient_of_utilization": 0.58,
90
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
91
+ "notes": null
92
+ },
93
+ {
94
+ "lighting_space_type_name": "audience_seating_area_for_religious_buildings_lighting",
95
+ "lighting_space_type_target_illuminance_setpoint": 118.0,
96
+ "lighting_space_type_target_illuminance_units": "Lux",
97
+ "general_lighting_fraction": 0.625,
98
+ "general_lighting_coefficient_of_utilization": 0.97,
99
+ "task_lighting_fraction": 0.166666667,
100
+ "task_lighting_coefficient_of_utilization": 0.4,
101
+ "supplemental_lighting_fraction": 0.0,
102
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
103
+ "wall_wash_lighting_fraction": 0.208333333,
104
+ "wall_wash_lighting_coefficient_of_utilization": 0.45,
105
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
106
+ "notes": null
107
+ },
108
+ {
109
+ "lighting_space_type_name": "audience_seating_area_for_sports_arena_lighting",
110
+ "lighting_space_type_target_illuminance_setpoint": 118.0,
111
+ "lighting_space_type_target_illuminance_units": "Lux",
112
+ "general_lighting_fraction": 0.5,
113
+ "general_lighting_coefficient_of_utilization": 0.46,
114
+ "task_lighting_fraction": 0.5,
115
+ "task_lighting_coefficient_of_utilization": 0.97,
116
+ "supplemental_lighting_fraction": 0.0,
117
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
118
+ "wall_wash_lighting_fraction": 0.0,
119
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
120
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
121
+ "notes": null
122
+ },
123
+ {
124
+ "lighting_space_type_name": "audience_seating_lighting",
125
+ "lighting_space_type_target_illuminance_setpoint": 118.0,
126
+ "lighting_space_type_target_illuminance_units": "Lux",
127
+ "general_lighting_fraction": 1.0,
128
+ "general_lighting_coefficient_of_utilization": 1.02,
129
+ "task_lighting_fraction": 0.0,
130
+ "task_lighting_coefficient_of_utilization": 0.0,
131
+ "supplemental_lighting_fraction": 0.0,
132
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
133
+ "wall_wash_lighting_fraction": 0.0,
134
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
135
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
136
+ "notes": "all other"
137
+ },
138
+ {
139
+ "lighting_space_type_name": "automotive_general_lighting",
140
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
141
+ "lighting_space_type_target_illuminance_units": "Lux",
142
+ "general_lighting_fraction": 0.833333333,
143
+ "general_lighting_coefficient_of_utilization": 0.7,
144
+ "task_lighting_fraction": 0.166666667,
145
+ "task_lighting_coefficient_of_utilization": 0.56,
146
+ "supplemental_lighting_fraction": 0.0,
147
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
148
+ "wall_wash_lighting_fraction": 0.0,
149
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
150
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
151
+ "notes": null
152
+ },
153
+ {
154
+ "lighting_space_type_name": "baggage_carousel_lighting",
155
+ "lighting_space_type_target_illuminance_setpoint": 237.0,
156
+ "lighting_space_type_target_illuminance_units": "Lux",
157
+ "general_lighting_fraction": 0.45,
158
+ "general_lighting_coefficient_of_utilization": 0.92,
159
+ "task_lighting_fraction": 0.3,
160
+ "task_lighting_coefficient_of_utilization": 0.76,
161
+ "supplemental_lighting_fraction": 0.0,
162
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
163
+ "wall_wash_lighting_fraction": 0.25,
164
+ "wall_wash_lighting_coefficient_of_utilization": 0.87,
165
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
166
+ "notes": null
167
+ },
168
+ {
169
+ "lighting_space_type_name": "banking_lighting",
170
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
171
+ "lighting_space_type_target_illuminance_units": "Lux",
172
+ "general_lighting_fraction": 0.857142857,
173
+ "general_lighting_coefficient_of_utilization": 0.71,
174
+ "task_lighting_fraction": 0.0,
175
+ "task_lighting_coefficient_of_utilization": 0.0,
176
+ "supplemental_lighting_fraction": 0.0,
177
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
178
+ "wall_wash_lighting_fraction": 0.142857143,
179
+ "wall_wash_lighting_coefficient_of_utilization": 0.73,
180
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
181
+ "notes": null
182
+ },
183
+ {
184
+ "lighting_space_type_name": "classroom_lecture_training_for_penitentiary_lighting",
185
+ "lighting_space_type_target_illuminance_setpoint": 471.0,
186
+ "lighting_space_type_target_illuminance_units": "Lux",
187
+ "general_lighting_fraction": 1.0,
188
+ "general_lighting_coefficient_of_utilization": 0.82,
189
+ "task_lighting_fraction": 0.0,
190
+ "task_lighting_coefficient_of_utilization": 0.0,
191
+ "supplemental_lighting_fraction": 0.0,
192
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
193
+ "wall_wash_lighting_fraction": 0.0,
194
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
195
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
196
+ "notes": "changed general fraction to 1 and supplemental fraction to 0"
197
+ },
198
+ {
199
+ "lighting_space_type_name": "classroom_lecture_training_lighting",
200
+ "lighting_space_type_target_illuminance_setpoint": 471.0,
201
+ "lighting_space_type_target_illuminance_units": "Lux",
202
+ "general_lighting_fraction": 1.0,
203
+ "general_lighting_coefficient_of_utilization": 0.8,
204
+ "task_lighting_fraction": 0.0,
205
+ "task_lighting_coefficient_of_utilization": 0.92,
206
+ "supplemental_lighting_fraction": 0.0,
207
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
208
+ "wall_wash_lighting_fraction": 0.0,
209
+ "wall_wash_lighting_coefficient_of_utilization": 0.83,
210
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
211
+ "notes": "changed general fraction to 1.0"
212
+ },
213
+ {
214
+ "lighting_space_type_name": "computer_room_lighting",
215
+ "lighting_space_type_target_illuminance_setpoint": 710.0,
216
+ "lighting_space_type_target_illuminance_units": "Lux",
217
+ "general_lighting_fraction": 1.0,
218
+ "general_lighting_coefficient_of_utilization": 0.92,
219
+ "task_lighting_fraction": 0.0,
220
+ "task_lighting_coefficient_of_utilization": 0.0,
221
+ "supplemental_lighting_fraction": 0.0,
222
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
223
+ "wall_wash_lighting_fraction": 0.0,
224
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
225
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
226
+ "notes": null
227
+ },
228
+ {
229
+ "lighting_space_type_name": "conference_meeting_multipurpose_lighting",
230
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
231
+ "lighting_space_type_target_illuminance_units": "Lux",
232
+ "general_lighting_fraction": 0.85,
233
+ "general_lighting_coefficient_of_utilization": 0.59,
234
+ "task_lighting_fraction": 0.075,
235
+ "task_lighting_coefficient_of_utilization": 0.89,
236
+ "supplemental_lighting_fraction": 0.0,
237
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
238
+ "wall_wash_lighting_fraction": 0.075,
239
+ "wall_wash_lighting_coefficient_of_utilization": 0.69,
240
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
241
+ "notes": "changed general fraction to 0.85, task and wall wash to 0.075"
242
+ },
243
+ {
244
+ "lighting_space_type_name": "confinement_cells_lighting",
245
+ "lighting_space_type_target_illuminance_setpoint": 296.0,
246
+ "lighting_space_type_target_illuminance_units": "Lux",
247
+ "general_lighting_fraction": 0.909090909,
248
+ "general_lighting_coefficient_of_utilization": 0.73,
249
+ "task_lighting_fraction": 0.090909091,
250
+ "task_lighting_coefficient_of_utilization": 0.68,
251
+ "supplemental_lighting_fraction": 0.0,
252
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
253
+ "wall_wash_lighting_fraction": 0.0,
254
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
255
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
256
+ "notes": null
257
+ },
258
+ {
259
+ "lighting_space_type_name": "convention_center_exhibit_space_general_lighting",
260
+ "lighting_space_type_target_illuminance_setpoint": 431.0,
261
+ "lighting_space_type_target_illuminance_units": "Lux",
262
+ "general_lighting_fraction": 1.0,
263
+ "general_lighting_coefficient_of_utilization": 0.81,
264
+ "task_lighting_fraction": 0.0,
265
+ "task_lighting_coefficient_of_utilization": 0.0,
266
+ "supplemental_lighting_fraction": 0.0,
267
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
268
+ "wall_wash_lighting_fraction": 0.0,
269
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
270
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
271
+ "notes": null
272
+ },
273
+ {
274
+ "lighting_space_type_name": "copy_print_lighting",
275
+ "lighting_space_type_target_illuminance_setpoint": 178.0,
276
+ "lighting_space_type_target_illuminance_units": "Lux",
277
+ "general_lighting_fraction": 1.0,
278
+ "general_lighting_coefficient_of_utilization": 0.74,
279
+ "task_lighting_fraction": 0.0,
280
+ "task_lighting_coefficient_of_utilization": 0.0,
281
+ "supplemental_lighting_fraction": 0.0,
282
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
283
+ "wall_wash_lighting_fraction": 0.0,
284
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
285
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
286
+ "notes": null
287
+ },
288
+ {
289
+ "lighting_space_type_name": "corridor_lighting",
290
+ "lighting_space_type_target_illuminance_setpoint": 178.0,
291
+ "lighting_space_type_target_illuminance_units": "Lux",
292
+ "general_lighting_fraction": 1.0,
293
+ "general_lighting_coefficient_of_utilization": 0.64,
294
+ "task_lighting_fraction": 0.0,
295
+ "task_lighting_coefficient_of_utilization": 0.0,
296
+ "supplemental_lighting_fraction": 0.0,
297
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
298
+ "wall_wash_lighting_fraction": 0.0,
299
+ "wall_wash_lighting_coefficient_of_utilization": 0.6,
300
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
301
+ "notes": "changed general fraction to 1.0"
302
+ },
303
+ {
304
+ "lighting_space_type_name": "corridor_transition_for_hospital_lighting",
305
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
306
+ "lighting_space_type_target_illuminance_units": "Lux",
307
+ "general_lighting_fraction": 0.9,
308
+ "general_lighting_coefficient_of_utilization": 0.71,
309
+ "task_lighting_fraction": 0.0,
310
+ "task_lighting_coefficient_of_utilization": 0.0,
311
+ "supplemental_lighting_fraction": 0.0,
312
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
313
+ "wall_wash_lighting_fraction": 0.1,
314
+ "wall_wash_lighting_coefficient_of_utilization": 0.83,
315
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
316
+ "notes": "changed general fraction to 0.9, wall wash to 0.1"
317
+ },
318
+ {
319
+ "lighting_space_type_name": "courtroom_lighting",
320
+ "lighting_space_type_target_illuminance_setpoint": 474.0,
321
+ "lighting_space_type_target_illuminance_units": "Lux",
322
+ "general_lighting_fraction": 0.4,
323
+ "general_lighting_coefficient_of_utilization": 0.51,
324
+ "task_lighting_fraction": 0.5,
325
+ "task_lighting_coefficient_of_utilization": 0.84,
326
+ "supplemental_lighting_fraction": 0.0,
327
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
328
+ "wall_wash_lighting_fraction": 0.1,
329
+ "wall_wash_lighting_coefficient_of_utilization": 0.83,
330
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
331
+ "notes": null
332
+ },
333
+ {
334
+ "lighting_space_type_name": "datacenterhighite_lighting",
335
+ "lighting_space_type_target_illuminance_setpoint": 118.0,
336
+ "lighting_space_type_target_illuminance_units": "Lux",
337
+ "general_lighting_fraction": 1.0,
338
+ "general_lighting_coefficient_of_utilization": 0.92,
339
+ "task_lighting_fraction": 0.0,
340
+ "task_lighting_coefficient_of_utilization": 0.0,
341
+ "supplemental_lighting_fraction": 0.0,
342
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
343
+ "wall_wash_lighting_fraction": 0.0,
344
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
345
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
346
+ "notes": "computer room, need a better match"
347
+ },
348
+ {
349
+ "lighting_space_type_name": "datacenterlowite_lighting",
350
+ "lighting_space_type_target_illuminance_setpoint": 118.0,
351
+ "lighting_space_type_target_illuminance_units": "Lux",
352
+ "general_lighting_fraction": 1.0,
353
+ "general_lighting_coefficient_of_utilization": 0.92,
354
+ "task_lighting_fraction": 0.0,
355
+ "task_lighting_coefficient_of_utilization": 0.0,
356
+ "supplemental_lighting_fraction": 0.0,
357
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
358
+ "wall_wash_lighting_fraction": 0.0,
359
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
360
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
361
+ "notes": "computer room, need a better match"
362
+ },
363
+ {
364
+ "lighting_space_type_name": "dining_area_for_family_dining_lighting",
365
+ "lighting_space_type_target_illuminance_setpoint": 237.0,
366
+ "lighting_space_type_target_illuminance_units": "Lux",
367
+ "general_lighting_fraction": 0.695652174,
368
+ "general_lighting_coefficient_of_utilization": 0.92,
369
+ "task_lighting_fraction": 0.086956522,
370
+ "task_lighting_coefficient_of_utilization": 0.45,
371
+ "supplemental_lighting_fraction": 0.0,
372
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
373
+ "wall_wash_lighting_fraction": 0.217391304,
374
+ "wall_wash_lighting_coefficient_of_utilization": 0.9,
375
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
376
+ "notes": null
377
+ },
378
+ {
379
+ "lighting_space_type_name": "dining_area_for_penitentiary_lighting",
380
+ "lighting_space_type_target_illuminance_setpoint": 178.0,
381
+ "lighting_space_type_target_illuminance_units": "Lux",
382
+ "general_lighting_fraction": 1.0,
383
+ "general_lighting_coefficient_of_utilization": 0.73,
384
+ "task_lighting_fraction": 0.0,
385
+ "task_lighting_coefficient_of_utilization": 0.0,
386
+ "supplemental_lighting_fraction": 0.0,
387
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
388
+ "wall_wash_lighting_fraction": 0.0,
389
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
390
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
391
+ "notes": null
392
+ },
393
+ {
394
+ "lighting_space_type_name": "dining_bar_lounge_leisure_general_lighting",
395
+ "lighting_space_type_target_illuminance_setpoint": 118.0,
396
+ "lighting_space_type_target_illuminance_units": "Lux",
397
+ "general_lighting_fraction": 0.594059406,
398
+ "general_lighting_coefficient_of_utilization": 1.0,
399
+ "task_lighting_fraction": 0.247524752,
400
+ "task_lighting_coefficient_of_utilization": 0.45,
401
+ "supplemental_lighting_fraction": 0.158415842,
402
+ "supplemental_lighting_coefficient_of_utilization": 0.9,
403
+ "wall_wash_lighting_fraction": 0.0,
404
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
405
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
406
+ "notes": null
407
+ },
408
+ {
409
+ "lighting_space_type_name": "dining_cafeteria_fast_food_general_lighting",
410
+ "lighting_space_type_target_illuminance_setpoint": 237.0,
411
+ "lighting_space_type_target_illuminance_units": "Lux",
412
+ "general_lighting_fraction": 0.85,
413
+ "general_lighting_coefficient_of_utilization": 0.79,
414
+ "task_lighting_fraction": 0.05,
415
+ "task_lighting_coefficient_of_utilization": 0.92,
416
+ "supplemental_lighting_fraction": 0.0,
417
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
418
+ "wall_wash_lighting_fraction": 0.1,
419
+ "wall_wash_lighting_coefficient_of_utilization": 0.83,
420
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
421
+ "notes": "changed general fraction to 0.85, task to 0.05, wall wash to 0.1"
422
+ },
423
+ {
424
+ "lighting_space_type_name": "dining_lighting",
425
+ "lighting_space_type_target_illuminance_setpoint": 308.0,
426
+ "lighting_space_type_target_illuminance_units": "Lux",
427
+ "general_lighting_fraction": 0.85,
428
+ "general_lighting_coefficient_of_utilization": 0.79,
429
+ "task_lighting_fraction": 0.05,
430
+ "task_lighting_coefficient_of_utilization": 0.92,
431
+ "supplemental_lighting_fraction": 0.0,
432
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
433
+ "wall_wash_lighting_fraction": 0.1,
434
+ "wall_wash_lighting_coefficient_of_utilization": 0.83,
435
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
436
+ "notes": "changed general fraction to 0.85, task to 0.05, wall wash to 0.1"
437
+ },
438
+ {
439
+ "lighting_space_type_name": "dressing_room_lighting",
440
+ "lighting_space_type_target_illuminance_setpoint": 237.0,
441
+ "lighting_space_type_target_illuminance_units": "Lux",
442
+ "general_lighting_fraction": 0.434782609,
443
+ "general_lighting_coefficient_of_utilization": 0.6,
444
+ "task_lighting_fraction": 0.565217391,
445
+ "task_lighting_coefficient_of_utilization": 0.6,
446
+ "supplemental_lighting_fraction": 0.0,
447
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
448
+ "wall_wash_lighting_fraction": 0.0,
449
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
450
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
451
+ "notes": "retail"
452
+ },
453
+ {
454
+ "lighting_space_type_name": "electrical_mechanical_lighting",
455
+ "lighting_space_type_target_illuminance_setpoint": 118.0,
456
+ "lighting_space_type_target_illuminance_units": "Lux",
457
+ "general_lighting_fraction": 0.9,
458
+ "general_lighting_coefficient_of_utilization": 0.49,
459
+ "task_lighting_fraction": 0.1,
460
+ "task_lighting_coefficient_of_utilization": 0.38,
461
+ "supplemental_lighting_fraction": 0.0,
462
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
463
+ "wall_wash_lighting_fraction": 0.0,
464
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
465
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
466
+ "notes": "changed general fraction to 0.9, task fraction to 0.1"
467
+ },
468
+ {
469
+ "lighting_space_type_name": "emergency_room_lighting",
470
+ "lighting_space_type_target_illuminance_setpoint": 888.0,
471
+ "lighting_space_type_target_illuminance_units": "Lux",
472
+ "general_lighting_fraction": 0.9,
473
+ "general_lighting_coefficient_of_utilization": 0.7,
474
+ "task_lighting_fraction": 0.1,
475
+ "task_lighting_coefficient_of_utilization": 374.0,
476
+ "supplemental_lighting_fraction": 0.0,
477
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
478
+ "wall_wash_lighting_fraction": 0.0,
479
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
480
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
481
+ "notes": "changed general fraction to 0.9, task fraction to 0.1"
482
+ },
483
+ {
484
+ "lighting_space_type_name": "emergency_vehicle_garage_lighting",
485
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
486
+ "lighting_space_type_target_illuminance_units": "Lux",
487
+ "general_lighting_fraction": 1.0,
488
+ "general_lighting_coefficient_of_utilization": 0.79,
489
+ "task_lighting_fraction": 0.0,
490
+ "task_lighting_coefficient_of_utilization": 0.0,
491
+ "supplemental_lighting_fraction": 0.0,
492
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
493
+ "wall_wash_lighting_fraction": 0.0,
494
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
495
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
496
+ "notes": null
497
+ },
498
+ {
499
+ "lighting_space_type_name": "exam_treatment_lighting",
500
+ "lighting_space_type_target_illuminance_setpoint": 592.0,
501
+ "lighting_space_type_target_illuminance_units": "Lux",
502
+ "general_lighting_fraction": 1.0,
503
+ "general_lighting_coefficient_of_utilization": 0.58,
504
+ "task_lighting_fraction": 0.0,
505
+ "task_lighting_coefficient_of_utilization": 0.0,
506
+ "supplemental_lighting_fraction": 0.0,
507
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
508
+ "wall_wash_lighting_fraction": 0.0,
509
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
510
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
511
+ "notes": null
512
+ },
513
+ {
514
+ "lighting_space_type_name": "exercise_area_lighting",
515
+ "lighting_space_type_target_illuminance_setpoint": 474.0,
516
+ "lighting_space_type_target_illuminance_units": "Lux",
517
+ "general_lighting_fraction": 1.0,
518
+ "general_lighting_coefficient_of_utilization": 0.59,
519
+ "task_lighting_fraction": 0.0,
520
+ "task_lighting_coefficient_of_utilization": 0.0,
521
+ "supplemental_lighting_fraction": 0.0,
522
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
523
+ "wall_wash_lighting_fraction": 0.0,
524
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
525
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
526
+ "notes": null
527
+ },
528
+ {
529
+ "lighting_space_type_name": "exhibit_lighting",
530
+ "lighting_space_type_target_illuminance_setpoint": 431.0,
531
+ "lighting_space_type_target_illuminance_units": "Lux",
532
+ "general_lighting_fraction": 1.0,
533
+ "general_lighting_coefficient_of_utilization": 0.89,
534
+ "task_lighting_fraction": 0.0,
535
+ "task_lighting_coefficient_of_utilization": 0.0,
536
+ "supplemental_lighting_fraction": 0.0,
537
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
538
+ "wall_wash_lighting_fraction": 0.0,
539
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
540
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
541
+ "notes": null
542
+ },
543
+ {
544
+ "lighting_space_type_name": "food_preparation_lighting",
545
+ "lighting_space_type_target_illuminance_setpoint": 538.0,
546
+ "lighting_space_type_target_illuminance_units": "Lux",
547
+ "general_lighting_fraction": 0.816326531,
548
+ "general_lighting_coefficient_of_utilization": 0.65,
549
+ "task_lighting_fraction": 0.183673469,
550
+ "task_lighting_coefficient_of_utilization": 0.65,
551
+ "supplemental_lighting_fraction": 0.0,
552
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
553
+ "wall_wash_lighting_fraction": 0.0,
554
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
555
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
556
+ "notes": null
557
+ },
558
+ {
559
+ "lighting_space_type_name": "guest_room_lighting",
560
+ "lighting_space_type_target_illuminance_setpoint": 178.0,
561
+ "lighting_space_type_target_illuminance_units": "Lux",
562
+ "general_lighting_fraction": 0.0,
563
+ "general_lighting_coefficient_of_utilization": 0.64,
564
+ "task_lighting_fraction": 1.0,
565
+ "task_lighting_coefficient_of_utilization": 0.83,
566
+ "supplemental_lighting_fraction": 0.0,
567
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
568
+ "wall_wash_lighting_fraction": 0.0,
569
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
570
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
571
+ "notes": "adjusted general fraction to force A19-style use"
572
+ },
573
+ {
574
+ "lighting_space_type_name": "imaging_lighting",
575
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
576
+ "lighting_space_type_target_illuminance_units": "Lux",
577
+ "general_lighting_fraction": 1.0,
578
+ "general_lighting_coefficient_of_utilization": 0.74,
579
+ "task_lighting_fraction": 0.0,
580
+ "task_lighting_coefficient_of_utilization": 0.73,
581
+ "supplemental_lighting_fraction": 0.0,
582
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
583
+ "wall_wash_lighting_fraction": 0.0,
584
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
585
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
586
+ "notes": null
587
+ },
588
+ {
589
+ "lighting_space_type_name": "interior_parking_lighting",
590
+ "lighting_space_type_target_illuminance_setpoint": 54.0,
591
+ "lighting_space_type_target_illuminance_units": "Lux",
592
+ "general_lighting_fraction": 1.0,
593
+ "general_lighting_coefficient_of_utilization": 0.67,
594
+ "task_lighting_fraction": 0.0,
595
+ "task_lighting_coefficient_of_utilization": 0.0,
596
+ "supplemental_lighting_fraction": 0.0,
597
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
598
+ "wall_wash_lighting_fraction": 0.0,
599
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
600
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
601
+ "notes": null
602
+ },
603
+ {
604
+ "lighting_space_type_name": "judges_chambers_lighting",
605
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
606
+ "lighting_space_type_target_illuminance_units": "Lux",
607
+ "general_lighting_fraction": 0.857142857,
608
+ "general_lighting_coefficient_of_utilization": 0.57,
609
+ "task_lighting_fraction": 0.0,
610
+ "task_lighting_coefficient_of_utilization": 0.0,
611
+ "supplemental_lighting_fraction": 0.0,
612
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
613
+ "wall_wash_lighting_fraction": 0.142857143,
614
+ "wall_wash_lighting_coefficient_of_utilization": 0.72,
615
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
616
+ "notes": null
617
+ },
618
+ {
619
+ "lighting_space_type_name": "laboratory_lighting",
620
+ "lighting_space_type_target_illuminance_setpoint": 592.0,
621
+ "lighting_space_type_target_illuminance_units": "Lux",
622
+ "general_lighting_fraction": 0.79338843,
623
+ "general_lighting_coefficient_of_utilization": 0.59,
624
+ "task_lighting_fraction": 0.20661157,
625
+ "task_lighting_coefficient_of_utilization": 0.77,
626
+ "supplemental_lighting_fraction": 0.0,
627
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
628
+ "wall_wash_lighting_fraction": 0.0,
629
+ "wall_wash_lighting_coefficient_of_utilization": 0.64,
630
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
631
+ "notes": null
632
+ },
633
+ {
634
+ "lighting_space_type_name": "laundry_washing_lighting",
635
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
636
+ "lighting_space_type_target_illuminance_units": "Lux",
637
+ "general_lighting_fraction": 1.0,
638
+ "general_lighting_coefficient_of_utilization": 0.81,
639
+ "task_lighting_fraction": 0.0,
640
+ "task_lighting_coefficient_of_utilization": 0.0,
641
+ "supplemental_lighting_fraction": 0.0,
642
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
643
+ "wall_wash_lighting_fraction": 0.0,
644
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
645
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
646
+ "notes": null
647
+ },
648
+ {
649
+ "lighting_space_type_name": "library_lighting",
650
+ "lighting_space_type_target_illuminance_setpoint": 118.0,
651
+ "lighting_space_type_target_illuminance_units": "Lux",
652
+ "general_lighting_fraction": 0.909090909,
653
+ "general_lighting_coefficient_of_utilization": 0.79,
654
+ "task_lighting_fraction": 0.090909091,
655
+ "task_lighting_coefficient_of_utilization": 0.65,
656
+ "supplemental_lighting_fraction": 0.0,
657
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
658
+ "wall_wash_lighting_fraction": 0.0,
659
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
660
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
661
+ "notes": null
662
+ },
663
+ {
664
+ "lighting_space_type_name": "library_reading_area_lighting",
665
+ "lighting_space_type_target_illuminance_setpoint": 592.0,
666
+ "lighting_space_type_target_illuminance_units": "Lux",
667
+ "general_lighting_fraction": 0.681818182,
668
+ "general_lighting_coefficient_of_utilization": 0.76,
669
+ "task_lighting_fraction": 0.318181818,
670
+ "task_lighting_coefficient_of_utilization": 0.97,
671
+ "supplemental_lighting_fraction": 0.0,
672
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
673
+ "wall_wash_lighting_fraction": 0.0,
674
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
675
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
676
+ "notes": null
677
+ },
678
+ {
679
+ "lighting_space_type_name": "library_stacks_lighting",
680
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
681
+ "lighting_space_type_target_illuminance_units": "Lux",
682
+ "general_lighting_fraction": 0.384615385,
683
+ "general_lighting_coefficient_of_utilization": 0.68,
684
+ "task_lighting_fraction": 0.615384615,
685
+ "task_lighting_coefficient_of_utilization": 0.82,
686
+ "supplemental_lighting_fraction": 0.0,
687
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
688
+ "wall_wash_lighting_fraction": 0.0,
689
+ "wall_wash_lighting_coefficient_of_utilization": 0.66,
690
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
691
+ "notes": null
692
+ },
693
+ {
694
+ "lighting_space_type_name": "living_quarters_lighting",
695
+ "lighting_space_type_target_illuminance_setpoint": 178.0,
696
+ "lighting_space_type_target_illuminance_units": "Lux",
697
+ "general_lighting_fraction": 0.85,
698
+ "general_lighting_coefficient_of_utilization": 0.52,
699
+ "task_lighting_fraction": 0.15,
700
+ "task_lighting_coefficient_of_utilization": 0.38,
701
+ "supplemental_lighting_fraction": 0.0,
702
+ "supplemental_lighting_coefficient_of_utilization": 0.33,
703
+ "wall_wash_lighting_fraction": 0.0,
704
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
705
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
706
+ "notes": null
707
+ },
708
+ {
709
+ "lighting_space_type_name": "loading_dock_lighting",
710
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
711
+ "lighting_space_type_target_illuminance_units": "Lux",
712
+ "general_lighting_fraction": 1.0,
713
+ "general_lighting_coefficient_of_utilization": 0.46,
714
+ "task_lighting_fraction": 0.0,
715
+ "task_lighting_coefficient_of_utilization": 0.0,
716
+ "supplemental_lighting_fraction": 0.0,
717
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
718
+ "wall_wash_lighting_fraction": 0.0,
719
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
720
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
721
+ "notes": null
722
+ },
723
+ {
724
+ "lighting_space_type_name": "lobby_for_hotel_lighting",
725
+ "lighting_space_type_target_illuminance_setpoint": 178.0,
726
+ "lighting_space_type_target_illuminance_units": "Lux",
727
+ "general_lighting_fraction": 0.666666667,
728
+ "general_lighting_coefficient_of_utilization": 0.93,
729
+ "task_lighting_fraction": 0.0,
730
+ "task_lighting_coefficient_of_utilization": 0.0,
731
+ "supplemental_lighting_fraction": 0.0,
732
+ "supplemental_lighting_coefficient_of_utilization": 0.96,
733
+ "wall_wash_lighting_fraction": 0.333333333,
734
+ "wall_wash_lighting_coefficient_of_utilization": 0.91,
735
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
736
+ "notes": null
737
+ },
738
+ {
739
+ "lighting_space_type_name": "lobby_for_motion_picture_theater_lighting",
740
+ "lighting_space_type_target_illuminance_setpoint": 118.0,
741
+ "lighting_space_type_target_illuminance_units": "Lux",
742
+ "general_lighting_fraction": 1.0,
743
+ "general_lighting_coefficient_of_utilization": 0.92,
744
+ "task_lighting_fraction": 0.0,
745
+ "task_lighting_coefficient_of_utilization": 0.0,
746
+ "supplemental_lighting_fraction": 0.0,
747
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
748
+ "wall_wash_lighting_fraction": 0.0,
749
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
750
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
751
+ "notes": null
752
+ },
753
+ {
754
+ "lighting_space_type_name": "lobby_for_performing_arts_theater_lighting",
755
+ "lighting_space_type_target_illuminance_setpoint": 296.0,
756
+ "lighting_space_type_target_illuminance_units": "Lux",
757
+ "general_lighting_fraction": 0.863013699,
758
+ "general_lighting_coefficient_of_utilization": 0.72,
759
+ "task_lighting_fraction": 0.0,
760
+ "task_lighting_coefficient_of_utilization": 0.0,
761
+ "supplemental_lighting_fraction": 0.136986301,
762
+ "supplemental_lighting_coefficient_of_utilization": 0.29,
763
+ "wall_wash_lighting_fraction": 0.0,
764
+ "wall_wash_lighting_coefficient_of_utilization": 0.76,
765
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
766
+ "notes": null
767
+ },
768
+ {
769
+ "lighting_space_type_name": "lobby_lighting",
770
+ "lighting_space_type_target_illuminance_setpoint": 296.0,
771
+ "lighting_space_type_target_illuminance_units": "Lux",
772
+ "general_lighting_fraction": 0.689655172,
773
+ "general_lighting_coefficient_of_utilization": 0.45,
774
+ "task_lighting_fraction": 0.137931034,
775
+ "task_lighting_coefficient_of_utilization": 0.92,
776
+ "supplemental_lighting_fraction": 0.0,
777
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
778
+ "wall_wash_lighting_fraction": 0.172413793,
779
+ "wall_wash_lighting_coefficient_of_utilization": 0.75,
780
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
781
+ "notes": "lobby all other"
782
+ },
783
+ {
784
+ "lighting_space_type_name": "locker_room_lighting",
785
+ "lighting_space_type_target_illuminance_setpoint": 237.0,
786
+ "lighting_space_type_target_illuminance_units": "Lux",
787
+ "general_lighting_fraction": 0.875,
788
+ "general_lighting_coefficient_of_utilization": 0.65,
789
+ "task_lighting_fraction": 0.125,
790
+ "task_lighting_coefficient_of_utilization": 0.77,
791
+ "supplemental_lighting_fraction": 0.0,
792
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
793
+ "wall_wash_lighting_fraction": 0.0,
794
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
795
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
796
+ "notes": null
797
+ },
798
+ {
799
+ "lighting_space_type_name": "lounge_breakroom_lighting",
800
+ "lighting_space_type_target_illuminance_setpoint": 178.0,
801
+ "lighting_space_type_target_illuminance_units": "Lux",
802
+ "general_lighting_fraction": 0.9,
803
+ "general_lighting_coefficient_of_utilization": 0.92,
804
+ "task_lighting_fraction": 0.0,
805
+ "task_lighting_coefficient_of_utilization": 0.0,
806
+ "supplemental_lighting_fraction": 0.0,
807
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
808
+ "wall_wash_lighting_fraction": 0.1,
809
+ "wall_wash_lighting_coefficient_of_utilization": 0.82,
810
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
811
+ "notes": "all other, changed general fraction to 0.9, wall wash to 0.1"
812
+ },
813
+ {
814
+ "lighting_space_type_name": "lounge_recreation_for_hospital_lighting",
815
+ "lighting_space_type_target_illuminance_setpoint": 296.0,
816
+ "lighting_space_type_target_illuminance_units": "Lux",
817
+ "general_lighting_fraction": 0.9,
818
+ "general_lighting_coefficient_of_utilization": 0.77,
819
+ "task_lighting_fraction": 0.0,
820
+ "task_lighting_coefficient_of_utilization": 0.77,
821
+ "supplemental_lighting_fraction": 0.0,
822
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
823
+ "wall_wash_lighting_fraction": 0.1,
824
+ "wall_wash_lighting_coefficient_of_utilization": 0.64,
825
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
826
+ "notes": "changed general fraction to 0.9, task fraction to 0, wall wash to 0.1"
827
+ },
828
+ {
829
+ "lighting_space_type_name": "manufacturing_facility_detailed_manufacturing_area_lighting",
830
+ "lighting_space_type_target_illuminance_setpoint": 592.0,
831
+ "lighting_space_type_target_illuminance_units": "Lux",
832
+ "general_lighting_fraction": 1.0,
833
+ "general_lighting_coefficient_of_utilization": 0.94,
834
+ "task_lighting_fraction": 0.0,
835
+ "task_lighting_coefficient_of_utilization": 0.0,
836
+ "supplemental_lighting_fraction": 0.0,
837
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
838
+ "wall_wash_lighting_fraction": 0.0,
839
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
840
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
841
+ "notes": null
842
+ },
843
+ {
844
+ "lighting_space_type_name": "manufacturing_facility_equipment_room_lighting",
845
+ "lighting_space_type_target_illuminance_setpoint": 237.0,
846
+ "lighting_space_type_target_illuminance_units": "Lux",
847
+ "general_lighting_fraction": 0.769230769,
848
+ "general_lighting_coefficient_of_utilization": 0.49,
849
+ "task_lighting_fraction": 0.230769231,
850
+ "task_lighting_coefficient_of_utilization": 0.38,
851
+ "supplemental_lighting_fraction": 0.0,
852
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
853
+ "wall_wash_lighting_fraction": 0.0,
854
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
855
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
856
+ "notes": null
857
+ },
858
+ {
859
+ "lighting_space_type_name": "manufacturing_facility_high_bay_area_25_to_50_ft_ftc_hgt_lighting",
860
+ "lighting_space_type_target_illuminance_setpoint": 592.0,
861
+ "lighting_space_type_target_illuminance_units": "Lux",
862
+ "general_lighting_fraction": 1.0,
863
+ "general_lighting_coefficient_of_utilization": 0.54,
864
+ "task_lighting_fraction": 0.0,
865
+ "task_lighting_coefficient_of_utilization": 0.0,
866
+ "supplemental_lighting_fraction": 0.0,
867
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
868
+ "wall_wash_lighting_fraction": 0.0,
869
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
870
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
871
+ "notes": null
872
+ },
873
+ {
874
+ "lighting_space_type_name": "manufacturing_facility_low_bay_area_lt_25_ft_ftc_hgt_lighting",
875
+ "lighting_space_type_target_illuminance_setpoint": 592.0,
876
+ "lighting_space_type_target_illuminance_units": "Lux",
877
+ "general_lighting_fraction": 1.0,
878
+ "general_lighting_coefficient_of_utilization": 0.79,
879
+ "task_lighting_fraction": 0.0,
880
+ "task_lighting_coefficient_of_utilization": 0.0,
881
+ "supplemental_lighting_fraction": 0.0,
882
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
883
+ "wall_wash_lighting_fraction": 0.0,
884
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
885
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
886
+ "notes": null
887
+ },
888
+ {
889
+ "lighting_space_type_name": "manufacturing_lighting",
890
+ "lighting_space_type_target_illuminance_setpoint": 592.0,
891
+ "lighting_space_type_target_illuminance_units": "Lux",
892
+ "general_lighting_fraction": 1.0,
893
+ "general_lighting_coefficient_of_utilization": 0.79,
894
+ "task_lighting_fraction": 0.0,
895
+ "task_lighting_coefficient_of_utilization": 0.0,
896
+ "supplemental_lighting_fraction": 0.0,
897
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
898
+ "wall_wash_lighting_fraction": 0.0,
899
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
900
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
901
+ "notes": "same as low bay"
902
+ },
903
+ {
904
+ "lighting_space_type_name": "medical_supply_lighting",
905
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
906
+ "lighting_space_type_target_illuminance_units": "Lux",
907
+ "general_lighting_fraction": 1.0,
908
+ "general_lighting_coefficient_of_utilization": 0.74,
909
+ "task_lighting_fraction": 0.0,
910
+ "task_lighting_coefficient_of_utilization": 0.0,
911
+ "supplemental_lighting_fraction": 0.0,
912
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
913
+ "wall_wash_lighting_fraction": 0.0,
914
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
915
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
916
+ "notes": null
917
+ },
918
+ {
919
+ "lighting_space_type_name": "multifamily_lighting",
920
+ "lighting_space_type_target_illuminance_setpoint": 178.0,
921
+ "lighting_space_type_target_illuminance_units": "Lux",
922
+ "general_lighting_fraction": 0.85,
923
+ "general_lighting_coefficient_of_utilization": 0.52,
924
+ "task_lighting_fraction": 0.15,
925
+ "task_lighting_coefficient_of_utilization": 0.38,
926
+ "supplemental_lighting_fraction": 0.0,
927
+ "supplemental_lighting_coefficient_of_utilization": 0.33,
928
+ "wall_wash_lighting_fraction": 0.0,
929
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
930
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
931
+ "notes": "living quarters"
932
+ },
933
+ {
934
+ "lighting_space_type_name": "museum_restoration_room_lighting",
935
+ "lighting_space_type_target_illuminance_setpoint": 592.0,
936
+ "lighting_space_type_target_illuminance_units": "Lux",
937
+ "general_lighting_fraction": 0.727272727,
938
+ "general_lighting_coefficient_of_utilization": 0.7,
939
+ "task_lighting_fraction": 0.272727273,
940
+ "task_lighting_coefficient_of_utilization": 0.74,
941
+ "supplemental_lighting_fraction": 0.0,
942
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
943
+ "wall_wash_lighting_fraction": 0.0,
944
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
945
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
946
+ "notes": null
947
+ },
948
+ {
949
+ "lighting_space_type_name": "none_lighting",
950
+ "lighting_space_type_target_illuminance_setpoint": 0.0,
951
+ "lighting_space_type_target_illuminance_units": "Lux",
952
+ "general_lighting_fraction": 1.0,
953
+ "general_lighting_coefficient_of_utilization": 1.0,
954
+ "task_lighting_fraction": 0.0,
955
+ "task_lighting_coefficient_of_utilization": 0.0,
956
+ "supplemental_lighting_fraction": 0.0,
957
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
958
+ "wall_wash_lighting_fraction": 0.0,
959
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
960
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
961
+ "notes": null
962
+ },
963
+ {
964
+ "lighting_space_type_name": "nursery_lighting",
965
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
966
+ "lighting_space_type_target_illuminance_units": "Lux",
967
+ "general_lighting_fraction": 1.0,
968
+ "general_lighting_coefficient_of_utilization": 0.59,
969
+ "task_lighting_fraction": 0.0,
970
+ "task_lighting_coefficient_of_utilization": 0.84,
971
+ "supplemental_lighting_fraction": 0.0,
972
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
973
+ "wall_wash_lighting_fraction": 0.0,
974
+ "wall_wash_lighting_coefficient_of_utilization": 0.73,
975
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
976
+ "notes": null
977
+ },
978
+ {
979
+ "lighting_space_type_name": "nurses_station_lighting",
980
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
981
+ "lighting_space_type_target_illuminance_units": "Lux",
982
+ "general_lighting_fraction": 0.8,
983
+ "general_lighting_coefficient_of_utilization": 0.59,
984
+ "task_lighting_fraction": 0.2,
985
+ "task_lighting_coefficient_of_utilization": 0.58,
986
+ "supplemental_lighting_fraction": 0.0,
987
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
988
+ "wall_wash_lighting_fraction": 0.0,
989
+ "wall_wash_lighting_coefficient_of_utilization": 0.73,
990
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
991
+ "notes": "changed general fraction to 0.8, task fraction to 0.2"
992
+ },
993
+ {
994
+ "lighting_space_type_name": "office-enclosed_general_lighting",
995
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
996
+ "lighting_space_type_target_illuminance_units": "Lux",
997
+ "general_lighting_fraction": 1.0,
998
+ "general_lighting_coefficient_of_utilization": 0.62,
999
+ "task_lighting_fraction": 0.0,
1000
+ "task_lighting_coefficient_of_utilization": 0.52,
1001
+ "supplemental_lighting_fraction": 0.0,
1002
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1003
+ "wall_wash_lighting_fraction": 0.0,
1004
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1005
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1006
+ "notes": "enclosed, greater than 250ft2"
1007
+ },
1008
+ {
1009
+ "lighting_space_type_name": "office_enclosed_lighting",
1010
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
1011
+ "lighting_space_type_target_illuminance_units": "Lux",
1012
+ "general_lighting_fraction": 1.0,
1013
+ "general_lighting_coefficient_of_utilization": 0.5597,
1014
+ "task_lighting_fraction": 0.0,
1015
+ "task_lighting_coefficient_of_utilization": 0.47,
1016
+ "supplemental_lighting_fraction": 0.0,
1017
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1018
+ "wall_wash_lighting_fraction": 0.0,
1019
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1020
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1021
+ "notes": "enclosed, less than 250ft"
1022
+ },
1023
+ {
1024
+ "lighting_space_type_name": "office_lighting",
1025
+ "lighting_space_type_target_illuminance_setpoint": 414.0,
1026
+ "lighting_space_type_target_illuminance_units": "Lux",
1027
+ "general_lighting_fraction": 0.88,
1028
+ "general_lighting_coefficient_of_utilization": 0.76,
1029
+ "task_lighting_fraction": 0.0,
1030
+ "task_lighting_coefficient_of_utilization": 0.74,
1031
+ "supplemental_lighting_fraction": 0.0,
1032
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1033
+ "wall_wash_lighting_fraction": 0.12,
1034
+ "wall_wash_lighting_coefficient_of_utilization": 0.91,
1035
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1036
+ "notes": "open plan lighting"
1037
+ },
1038
+ {
1039
+ "lighting_space_type_name": "office_open_plan_lighting",
1040
+ "lighting_space_type_target_illuminance_setpoint": 414.0,
1041
+ "lighting_space_type_target_illuminance_units": "Lux",
1042
+ "general_lighting_fraction": 0.88,
1043
+ "general_lighting_coefficient_of_utilization": 0.76,
1044
+ "task_lighting_fraction": 0.0,
1045
+ "task_lighting_coefficient_of_utilization": 0.74,
1046
+ "supplemental_lighting_fraction": 0.0,
1047
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1048
+ "wall_wash_lighting_fraction": 0.12,
1049
+ "wall_wash_lighting_coefficient_of_utilization": 0.91,
1050
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1051
+ "notes": null
1052
+ },
1053
+ {
1054
+ "lighting_space_type_name": "operating_room_lighting",
1055
+ "lighting_space_type_target_illuminance_setpoint": 1184.0,
1056
+ "lighting_space_type_target_illuminance_units": "Lux",
1057
+ "general_lighting_fraction": 1.0,
1058
+ "general_lighting_coefficient_of_utilization": 0.71,
1059
+ "task_lighting_fraction": 0.0,
1060
+ "task_lighting_coefficient_of_utilization": 0.0,
1061
+ "supplemental_lighting_fraction": 0.0,
1062
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1063
+ "wall_wash_lighting_fraction": 0.0,
1064
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1065
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1066
+ "notes": null
1067
+ },
1068
+ {
1069
+ "lighting_space_type_name": "patient_room_lighting",
1070
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
1071
+ "lighting_space_type_target_illuminance_units": "Lux",
1072
+ "general_lighting_fraction": 0.457,
1073
+ "general_lighting_coefficient_of_utilization": 0.73,
1074
+ "task_lighting_fraction": 0.543,
1075
+ "task_lighting_coefficient_of_utilization": 0.7,
1076
+ "supplemental_lighting_fraction": 0.0,
1077
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1078
+ "wall_wash_lighting_fraction": 0.0,
1079
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1080
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1081
+ "notes": "changed general fraction from 0.435 to 0.457 and supplemental fraction to 0"
1082
+ },
1083
+ {
1084
+ "lighting_space_type_name": "pharmacy_lighting",
1085
+ "lighting_space_type_target_illuminance_setpoint": 888.0,
1086
+ "lighting_space_type_target_illuminance_units": "Lux",
1087
+ "general_lighting_fraction": 0.882352941,
1088
+ "general_lighting_coefficient_of_utilization": 0.65,
1089
+ "task_lighting_fraction": 0.117647059,
1090
+ "task_lighting_coefficient_of_utilization": 0.65,
1091
+ "supplemental_lighting_fraction": 0.0,
1092
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1093
+ "wall_wash_lighting_fraction": 0.0,
1094
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1095
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1096
+ "notes": null
1097
+ },
1098
+ {
1099
+ "lighting_space_type_name": "physical_therapy_lighting",
1100
+ "lighting_space_type_target_illuminance_setpoint": 474.0,
1101
+ "lighting_space_type_target_illuminance_units": "Lux",
1102
+ "general_lighting_fraction": 0.8,
1103
+ "general_lighting_coefficient_of_utilization": 0.59,
1104
+ "task_lighting_fraction": 0.2,
1105
+ "task_lighting_coefficient_of_utilization": 0.59,
1106
+ "supplemental_lighting_fraction": 0.0,
1107
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1108
+ "wall_wash_lighting_fraction": 0.0,
1109
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1110
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1111
+ "notes": "changed general fraction to 0.8, task fraction to 0.2"
1112
+ },
1113
+ {
1114
+ "lighting_space_type_name": "playing_area_lighting",
1115
+ "lighting_space_type_target_illuminance_setpoint": 592.0,
1116
+ "lighting_space_type_target_illuminance_units": "Lux",
1117
+ "general_lighting_fraction": 1.0,
1118
+ "general_lighting_coefficient_of_utilization": 0.8,
1119
+ "task_lighting_fraction": 0.0,
1120
+ "task_lighting_coefficient_of_utilization": 0.0,
1121
+ "supplemental_lighting_fraction": 0.0,
1122
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1123
+ "wall_wash_lighting_fraction": 0.0,
1124
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1125
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1126
+ "notes": null
1127
+ },
1128
+ {
1129
+ "lighting_space_type_name": "post_office_lighting",
1130
+ "lighting_space_type_target_illuminance_setpoint": 237.0,
1131
+ "lighting_space_type_target_illuminance_units": "Lux",
1132
+ "general_lighting_fraction": 1.0,
1133
+ "general_lighting_coefficient_of_utilization": 0.44,
1134
+ "task_lighting_fraction": 0.0,
1135
+ "task_lighting_coefficient_of_utilization": 0.0,
1136
+ "supplemental_lighting_fraction": 0.0,
1137
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1138
+ "wall_wash_lighting_fraction": 0.0,
1139
+ "wall_wash_lighting_coefficient_of_utilization": 0.56,
1140
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1141
+ "notes": "lobby, changed general fraction to 1 and supplemental fraction to 0"
1142
+ },
1143
+ {
1144
+ "lighting_space_type_name": "post_office_sorting_area_general_lighting",
1145
+ "lighting_space_type_target_illuminance_setpoint": 474.0,
1146
+ "lighting_space_type_target_illuminance_units": "Lux",
1147
+ "general_lighting_fraction": 0.8,
1148
+ "general_lighting_coefficient_of_utilization": 0.0,
1149
+ "task_lighting_fraction": 0.0,
1150
+ "task_lighting_coefficient_of_utilization": 0.0,
1151
+ "supplemental_lighting_fraction": 0.0,
1152
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1153
+ "wall_wash_lighting_fraction": 0.0,
1154
+ "wall_wash_lighting_coefficient_of_utilization": null,
1155
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1156
+ "notes": null
1157
+ },
1158
+ {
1159
+ "lighting_space_type_name": "recovery_lighting",
1160
+ "lighting_space_type_target_illuminance_setpoint": 592.0,
1161
+ "lighting_space_type_target_illuminance_units": "Lux",
1162
+ "general_lighting_fraction": 0.886363636,
1163
+ "general_lighting_coefficient_of_utilization": 0.73,
1164
+ "task_lighting_fraction": 0.0,
1165
+ "task_lighting_coefficient_of_utilization": 0.0,
1166
+ "supplemental_lighting_fraction": 0.0,
1167
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1168
+ "wall_wash_lighting_fraction": 0.113636364,
1169
+ "wall_wash_lighting_coefficient_of_utilization": 0.73,
1170
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1171
+ "notes": null
1172
+ },
1173
+ {
1174
+ "lighting_space_type_name": "recreation_common_living_lighting",
1175
+ "lighting_space_type_target_illuminance_setpoint": 323.0,
1176
+ "lighting_space_type_target_illuminance_units": "Lux",
1177
+ "general_lighting_fraction": 0.85,
1178
+ "general_lighting_coefficient_of_utilization": 0.52,
1179
+ "task_lighting_fraction": 0.15,
1180
+ "task_lighting_coefficient_of_utilization": 0.38,
1181
+ "supplemental_lighting_fraction": 0.0,
1182
+ "supplemental_lighting_coefficient_of_utilization": 0.33,
1183
+ "wall_wash_lighting_fraction": 0.0,
1184
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1185
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1186
+ "notes": "dormitory living quarters, illuminance value seems to high for a oounge"
1187
+ },
1188
+ {
1189
+ "lighting_space_type_name": "religious_buildings_fellowship_hall_lighting",
1190
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
1191
+ "lighting_space_type_target_illuminance_units": "Lux",
1192
+ "general_lighting_fraction": 0.8,
1193
+ "general_lighting_coefficient_of_utilization": 0.92,
1194
+ "task_lighting_fraction": 0.2,
1195
+ "task_lighting_coefficient_of_utilization": 1.03,
1196
+ "supplemental_lighting_fraction": 0.0,
1197
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1198
+ "wall_wash_lighting_fraction": 0.0,
1199
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1200
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1201
+ "notes": null
1202
+ },
1203
+ {
1204
+ "lighting_space_type_name": "religious_buildings_worship_pulpit_choir_lighting",
1205
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
1206
+ "lighting_space_type_target_illuminance_units": "Lux",
1207
+ "general_lighting_fraction": 0.625,
1208
+ "general_lighting_coefficient_of_utilization": 0.97,
1209
+ "task_lighting_fraction": 0.166666667,
1210
+ "task_lighting_coefficient_of_utilization": 0.4,
1211
+ "supplemental_lighting_fraction": 0.0,
1212
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1213
+ "wall_wash_lighting_fraction": 0.208333333,
1214
+ "wall_wash_lighting_coefficient_of_utilization": 0.91,
1215
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1216
+ "notes": null
1217
+ },
1218
+ {
1219
+ "lighting_space_type_name": "restroom_lighting",
1220
+ "lighting_space_type_target_illuminance_setpoint": 178.0,
1221
+ "lighting_space_type_target_illuminance_units": "Lux",
1222
+ "general_lighting_fraction": 0.9,
1223
+ "general_lighting_coefficient_of_utilization": 0.51,
1224
+ "task_lighting_fraction": 0.0,
1225
+ "task_lighting_coefficient_of_utilization": 0.69,
1226
+ "supplemental_lighting_fraction": 0.0,
1227
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1228
+ "wall_wash_lighting_fraction": 0.1,
1229
+ "wall_wash_lighting_coefficient_of_utilization": 0.57,
1230
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1231
+ "notes": "changed general fraction to 0.9, wall wash to 0.1"
1232
+ },
1233
+ {
1234
+ "lighting_space_type_name": "retail_mall_concourse_lighting",
1235
+ "lighting_space_type_target_illuminance_setpoint": 403.0,
1236
+ "lighting_space_type_target_illuminance_units": "Lux",
1237
+ "general_lighting_fraction": 0.705882353,
1238
+ "general_lighting_coefficient_of_utilization": 0.97,
1239
+ "task_lighting_fraction": 0.0,
1240
+ "task_lighting_coefficient_of_utilization": 0.0,
1241
+ "supplemental_lighting_fraction": 0.294117647,
1242
+ "supplemental_lighting_coefficient_of_utilization": 0.4,
1243
+ "wall_wash_lighting_fraction": 0.0,
1244
+ "wall_wash_lighting_coefficient_of_utilization": 0.75,
1245
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1246
+ "notes": null
1247
+ },
1248
+ {
1249
+ "lighting_space_type_name": "retail_sales_lighting",
1250
+ "lighting_space_type_target_illuminance_setpoint": 474.0,
1251
+ "lighting_space_type_target_illuminance_units": "Lux",
1252
+ "general_lighting_fraction": 0.9,
1253
+ "general_lighting_coefficient_of_utilization": 0.6,
1254
+ "task_lighting_fraction": 0.0,
1255
+ "task_lighting_coefficient_of_utilization": 0.0,
1256
+ "supplemental_lighting_fraction": 0.06,
1257
+ "supplemental_lighting_coefficient_of_utilization": 0.83,
1258
+ "wall_wash_lighting_fraction": 0.04,
1259
+ "wall_wash_lighting_coefficient_of_utilization": 0.56,
1260
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1261
+ "notes": "retail sales area, changed general fraction to 0.9, supplemental to 0.06, wall wash to 0.04"
1262
+ },
1263
+ {
1264
+ "lighting_space_type_name": "sleeping_quarters_lighting",
1265
+ "lighting_space_type_target_illuminance_setpoint": 59.0,
1266
+ "lighting_space_type_target_illuminance_units": "Lux",
1267
+ "general_lighting_fraction": 0.5,
1268
+ "general_lighting_coefficient_of_utilization": 0.65,
1269
+ "task_lighting_fraction": 0.5,
1270
+ "task_lighting_coefficient_of_utilization": 0.43,
1271
+ "supplemental_lighting_fraction": 0.0,
1272
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1273
+ "wall_wash_lighting_fraction": 0.0,
1274
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1275
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1276
+ "notes": null
1277
+ },
1278
+ {
1279
+ "lighting_space_type_name": "sports_arena_lighting",
1280
+ "lighting_space_type_target_illuminance_setpoint": 1184.0,
1281
+ "lighting_space_type_target_illuminance_units": "Lux",
1282
+ "general_lighting_fraction": 0.5,
1283
+ "general_lighting_coefficient_of_utilization": 0.46,
1284
+ "task_lighting_fraction": 0.5,
1285
+ "task_lighting_coefficient_of_utilization": 0.97,
1286
+ "supplemental_lighting_fraction": 0.0,
1287
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1288
+ "wall_wash_lighting_fraction": 0.0,
1289
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1290
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1291
+ "notes": null
1292
+ },
1293
+ {
1294
+ "lighting_space_type_name": "stairwell_lighting",
1295
+ "lighting_space_type_target_illuminance_setpoint": 118.0,
1296
+ "lighting_space_type_target_illuminance_units": "Lux",
1297
+ "general_lighting_fraction": 0.9,
1298
+ "general_lighting_coefficient_of_utilization": 0.36,
1299
+ "task_lighting_fraction": 0.05,
1300
+ "task_lighting_coefficient_of_utilization": 0.27,
1301
+ "supplemental_lighting_fraction": 0.0,
1302
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1303
+ "wall_wash_lighting_fraction": 0.05,
1304
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1305
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1306
+ "notes": "changed general fraction to 0.9, task to 0.05, wall wash to 0.05"
1307
+ },
1308
+ {
1309
+ "lighting_space_type_name": "storage_lighting",
1310
+ "lighting_space_type_target_illuminance_setpoint": 118.0,
1311
+ "lighting_space_type_target_illuminance_units": "Lux",
1312
+ "general_lighting_fraction": 1.0,
1313
+ "general_lighting_coefficient_of_utilization": 0.61,
1314
+ "task_lighting_fraction": 0.0,
1315
+ "task_lighting_coefficient_of_utilization": 0.0,
1316
+ "supplemental_lighting_fraction": 0.0,
1317
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1318
+ "wall_wash_lighting_fraction": 0.0,
1319
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1320
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1321
+ "notes": null
1322
+ },
1323
+ {
1324
+ "lighting_space_type_name": "transportation_facility_ticket_counter_lighting",
1325
+ "lighting_space_type_target_illuminance_setpoint": 296.0,
1326
+ "lighting_space_type_target_illuminance_units": "Lux",
1327
+ "general_lighting_fraction": 0.4,
1328
+ "general_lighting_coefficient_of_utilization": 0.79,
1329
+ "task_lighting_fraction": 0.4,
1330
+ "task_lighting_coefficient_of_utilization": 0.92,
1331
+ "supplemental_lighting_fraction": 0.0,
1332
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1333
+ "wall_wash_lighting_fraction": 0.2,
1334
+ "wall_wash_lighting_coefficient_of_utilization": 0.83,
1335
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1336
+ "notes": null
1337
+ },
1338
+ {
1339
+ "lighting_space_type_name": "transportation_lighting",
1340
+ "lighting_space_type_target_illuminance_setpoint": 237.0,
1341
+ "lighting_space_type_target_illuminance_units": "Lux",
1342
+ "general_lighting_fraction": 0.545454545,
1343
+ "general_lighting_coefficient_of_utilization": 0.59,
1344
+ "task_lighting_fraction": 0.0,
1345
+ "task_lighting_coefficient_of_utilization": 0.0,
1346
+ "supplemental_lighting_fraction": 0.0,
1347
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1348
+ "wall_wash_lighting_fraction": 0.454545455,
1349
+ "wall_wash_lighting_coefficient_of_utilization": 0.83,
1350
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1351
+ "notes": null
1352
+ },
1353
+ {
1354
+ "lighting_space_type_name": "vehicular_maintenance_lighting",
1355
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
1356
+ "lighting_space_type_target_illuminance_units": "Lux",
1357
+ "general_lighting_fraction": 0.833333333,
1358
+ "general_lighting_coefficient_of_utilization": 0.7,
1359
+ "task_lighting_fraction": 0.166666667,
1360
+ "task_lighting_coefficient_of_utilization": 0.56,
1361
+ "supplemental_lighting_fraction": 0.0,
1362
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1363
+ "wall_wash_lighting_fraction": 0.0,
1364
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1365
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1366
+ "notes": null
1367
+ },
1368
+ {
1369
+ "lighting_space_type_name": "warehouse_storage_area_medium_to_bulky_palletized_items_lighting",
1370
+ "lighting_space_type_target_illuminance_setpoint": 237.0,
1371
+ "lighting_space_type_target_illuminance_units": "Lux",
1372
+ "general_lighting_fraction": 1.0,
1373
+ "general_lighting_coefficient_of_utilization": 0.81,
1374
+ "task_lighting_fraction": 0.0,
1375
+ "task_lighting_coefficient_of_utilization": 0.0,
1376
+ "supplemental_lighting_fraction": 0.0,
1377
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1378
+ "wall_wash_lighting_fraction": 0.0,
1379
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1380
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1381
+ "notes": null
1382
+ },
1383
+ {
1384
+ "lighting_space_type_name": "warehouse_storage_area_smaller_hand-carried_items_lighting",
1385
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
1386
+ "lighting_space_type_target_illuminance_units": "Lux",
1387
+ "general_lighting_fraction": 1.0,
1388
+ "general_lighting_coefficient_of_utilization": 0.59,
1389
+ "task_lighting_fraction": 0.0,
1390
+ "task_lighting_coefficient_of_utilization": 0.0,
1391
+ "supplemental_lighting_fraction": 0.0,
1392
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1393
+ "wall_wash_lighting_fraction": 0.0,
1394
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1395
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1396
+ "notes": null
1397
+ },
1398
+ {
1399
+ "lighting_space_type_name": "workshop_lighting",
1400
+ "lighting_space_type_target_illuminance_setpoint": 592.0,
1401
+ "lighting_space_type_target_illuminance_units": "Lux",
1402
+ "general_lighting_fraction": 1.0,
1403
+ "general_lighting_coefficient_of_utilization": 0.61,
1404
+ "task_lighting_fraction": 0.0,
1405
+ "task_lighting_coefficient_of_utilization": 0.92,
1406
+ "supplemental_lighting_fraction": 0.0,
1407
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1408
+ "wall_wash_lighting_fraction": 0.0,
1409
+ "wall_wash_lighting_coefficient_of_utilization": 0.0,
1410
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1411
+ "notes": null
1412
+ },
1413
+ {
1414
+ "lighting_space_type_name": "worship_lighting",
1415
+ "lighting_space_type_target_illuminance_setpoint": 355.0,
1416
+ "lighting_space_type_target_illuminance_units": "Lux",
1417
+ "general_lighting_fraction": 0.625,
1418
+ "general_lighting_coefficient_of_utilization": 0.97,
1419
+ "task_lighting_fraction": 0.166666667,
1420
+ "task_lighting_coefficient_of_utilization": 0.4,
1421
+ "supplemental_lighting_fraction": 0.0,
1422
+ "supplemental_lighting_coefficient_of_utilization": 0.0,
1423
+ "wall_wash_lighting_fraction": 0.208333333,
1424
+ "wall_wash_lighting_coefficient_of_utilization": 0.45,
1425
+ "source": "total illuminance values from IES 2019, fractions from pnnl_90_1_lighting_subcommittee_model",
1426
+ "notes": null
1427
+ }
1428
+ ]
1429
+ }