openstudio-standards 0.8.3 → 0.8.4

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 (87) hide show
  1. checksums.yaml +4 -4
  2. data/lib/openstudio-standards/btap/costing/README.md +502 -0
  3. data/lib/openstudio-standards/btap/costing/btap_costing.rb +473 -0
  4. data/lib/openstudio-standards/btap/costing/btap_measure_helper.rb +359 -0
  5. data/lib/openstudio-standards/btap/costing/btap_workflow.rb +117 -0
  6. data/lib/openstudio-standards/btap/costing/common_paths.rb +78 -0
  7. data/lib/openstudio-standards/btap/costing/common_resources/ConstructionProperties.csv +52 -0
  8. data/lib/openstudio-standards/btap/costing/common_resources/Constructions.csv +37 -0
  9. data/lib/openstudio-standards/btap/costing/common_resources/construction_sets.csv +1270 -0
  10. data/lib/openstudio-standards/btap/costing/common_resources/constructions_glazing.csv +61 -0
  11. data/lib/openstudio-standards/btap/costing/common_resources/constructions_opaque.csv +2256 -0
  12. data/lib/openstudio-standards/btap/costing/common_resources/costs.csv +1904 -0
  13. data/lib/openstudio-standards/btap/costing/common_resources/costs_local_factors.csv +2315 -0
  14. data/lib/openstudio-standards/btap/costing/common_resources/hvac_vent_ahu.csv +925 -0
  15. data/lib/openstudio-standards/btap/costing/common_resources/lighting.csv +364 -0
  16. data/lib/openstudio-standards/btap/costing/common_resources/lighting_sets.csv +2667 -0
  17. data/lib/openstudio-standards/btap/costing/common_resources/locations.csv +75 -0
  18. data/lib/openstudio-standards/btap/costing/common_resources/materials_glazing.csv +35 -0
  19. data/lib/openstudio-standards/btap/costing/common_resources/materials_hvac.csv +1699 -0
  20. data/lib/openstudio-standards/btap/costing/common_resources/materials_lighting.csv +267 -0
  21. data/lib/openstudio-standards/btap/costing/common_resources/materials_opaque.csv +164 -0
  22. data/lib/openstudio-standards/btap/costing/copy_test_results_files_to_expected_results.rb +11 -0
  23. data/lib/openstudio-standards/btap/costing/cost_building_from_file.rb +136 -0
  24. data/lib/openstudio-standards/btap/costing/costing_database_wrapper.rb +177 -0
  25. data/lib/openstudio-standards/btap/costing/daylighting_sensor_control_costing.rb +353 -0
  26. data/lib/openstudio-standards/btap/costing/dcv_costing.rb +314 -0
  27. data/lib/openstudio-standards/btap/costing/dummy.epw +8768 -0
  28. data/lib/openstudio-standards/btap/costing/dummy.osm +5320 -0
  29. data/lib/openstudio-standards/btap/costing/envelope_costing.rb +284 -0
  30. data/lib/openstudio-standards/btap/costing/heating_cooling_costing.rb +2584 -0
  31. data/lib/openstudio-standards/btap/costing/led_lighting_costing.rb +155 -0
  32. data/lib/openstudio-standards/btap/costing/lighting_costing.rb +209 -0
  33. data/lib/openstudio-standards/btap/costing/mech_sizing.json +502 -0
  34. data/lib/openstudio-standards/btap/costing/neb_end_use_prices.csv +42 -0
  35. data/lib/openstudio-standards/btap/costing/necb_2011_spacetype_info.csv +225 -0
  36. data/lib/openstudio-standards/btap/costing/necb_reference_runs.csv +28705 -0
  37. data/lib/openstudio-standards/btap/costing/nv_costing.rb +547 -0
  38. data/lib/openstudio-standards/btap/costing/parallel_tests.rb +92 -0
  39. data/lib/openstudio-standards/btap/costing/pv_ground_costing.rb +687 -0
  40. data/lib/openstudio-standards/btap/costing/shw_costing.rb +705 -0
  41. data/lib/openstudio-standards/btap/costing/test_list.txt +17 -0
  42. data/lib/openstudio-standards/btap/costing/test_run_all_test_locally.rb +26 -0
  43. data/lib/openstudio-standards/btap/costing/test_run_costing_tests.rb +80 -0
  44. data/lib/openstudio-standards/btap/costing/ventilation_costing.rb +2616 -0
  45. data/lib/openstudio-standards/constructions/modify.rb +2 -1
  46. data/lib/openstudio-standards/standards/Standards.Model.rb +39 -9
  47. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Model.rb +2 -2
  48. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/ashrae_90_1_prm.UserData.rb +6 -1
  49. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/btap_pre1980.rb +2 -27
  50. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_3_and_8_single_speed.rb +68 -27
  51. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_4.rb +64 -25
  52. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_6.rb +9 -14
  53. data/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb +46 -20
  54. data/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +635 -248
  55. data/lib/openstudio-standards/standards/necb/NECB2011/data/constants.json +43 -7
  56. data/lib/openstudio-standards/standards/necb/NECB2011/data/fuel_type_sets.json +7 -1
  57. data/lib/openstudio-standards/standards/necb/NECB2011/data/geometry/HighriseApartmentMult.osm +14272 -0
  58. data/lib/openstudio-standards/standards/necb/NECB2011/data/necb_2015_table_c1.json +1 -1
  59. data/lib/openstudio-standards/standards/necb/NECB2011/data/space_types.json +437 -437
  60. data/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json +516 -0
  61. data/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json +588 -0
  62. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb +489 -0
  63. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb +16 -6
  64. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb +48 -5
  65. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_multi_speed.rb +2 -2
  66. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb +35 -27
  67. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb +34 -23
  68. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb +8 -6
  69. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb +42 -13
  70. data/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb +214 -25
  71. data/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb +61 -1
  72. data/lib/openstudio-standards/standards/necb/NECB2015/data/space_types.json +636 -636
  73. data/lib/openstudio-standards/standards/necb/NECB2015/data/unitary_acs.json +38 -38
  74. data/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb +15 -6
  75. data/lib/openstudio-standards/standards/necb/NECB2017/data/space_types.json +636 -636
  76. data/lib/openstudio-standards/standards/necb/NECB2020/data/chillers.json +71 -71
  77. data/lib/openstudio-standards/standards/necb/README.md +343 -0
  78. data/lib/openstudio-standards/standards/necb/common/btap_data.rb +190 -28
  79. data/lib/openstudio-standards/standards/necb/common/btap_datapoint.rb +14 -5
  80. data/lib/openstudio-standards/standards/necb/common/eccc_electric_grid_intensity_20250311.csv +14 -0
  81. data/lib/openstudio-standards/standards/necb/common/nir_gas_grid_intensity_20250311.csv +14 -0
  82. data/lib/openstudio-standards/standards/necb/common/system_types.yaml +0 -0
  83. data/lib/openstudio-standards/utilities/logging.rb +18 -14
  84. data/lib/openstudio-standards/version.rb +1 -1
  85. data/lib/openstudio-standards/weather/modify.rb +2 -2
  86. data/lib/openstudio-standards.rb +12 -0
  87. metadata +53 -2
@@ -0,0 +1,364 @@
1
+ lighting_type_id,description,source,type,id,id_layers,unit,Id_layers_quantity_multipliers,material_descriptions,W/m2,Fix_1000ft
2
+ 1,"Fluorescent Lighting 0.8 W/ft2 (8.6 W/m2), 20FC, 5 Fixtures/1000 Ft2",rs-means,Assembly,291904,"11,13,14,15,26",ft2,"0.003,0.128,0.005,0.005,0.005","Wire 600V #12 in raceway
3
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
4
+ Steel Outlet boxes, set flush in concrete 4 "" deep
5
+ Steel Outlet boxes, on framing
6
+ Recessed Ceiling Mount Fixtures: grid suspension, 2x4 fixtures, T8, 32 watt lamps, acrylic prismatic diffusers
7
+ ",8.6,5
8
+ 2,"Fluorescent Lighting 1.6 W/ft2 (17.2 W/m2), 40FC, 10 Fixtures per 1000 ft2",rs-means,Assembly,291905,"11,13,14,15,26",ft2,"0.005,0.256,0.01,0.01,0.01","Wire 600V #12 in raceway
9
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
10
+ Steel Outlet boxes, set flush in concrete 4 "" deep
11
+ Steel Outlet boxes, on framing
12
+ Recessed Ceiling Mount Fixtures: grid suspension, 2x4 fixtures, T8, 32 watt lamps, acrylic prismatic diffusers
13
+ ",17.2,10
14
+ 3,"Fluorescent Lighting 2.4 W/ft2 (25.8 W/m2), 60FC, 15 Fixtures per 1000 ft2",rs-means,Assembly,291906,"11,13,14,15,26",ft2,"0.008,0.384,0.015,0.015,0.015","Wire 600V #12 in raceway
15
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
16
+ Steel Outlet boxes, set flush in concrete 4 "" deep
17
+ Steel Outlet boxes, on framing
18
+ Recessed Ceiling Mount Fixtures: grid suspension, 2x4 fixtures, T8, 32 watt lamps, acrylic prismatic diffusers
19
+ ",25.8,15
20
+ 4,"Fluorescent Lighting 3.2 W/ft2 (34.4 W/m2), 80FC, 20 Fixtures per 1000 ft2",rs-means,Assembly,291907,"11,13,14,15,26",ft2,"0.01,0.512,0.02,0.02,0.02","Wire 600V #12 in raceway
21
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
22
+ Steel Outlet boxes, set flush in concrete 4 "" deep
23
+ Steel Outlet boxes, on framing
24
+ Recessed Ceiling Mount Fixtures: grid suspension, 2x4 fixtures, T8, 32 watt lamps, acrylic prismatic diffusers
25
+ ",34.4,20
26
+ 5,"Fluorescent Lighting 4 W/ft2 (43 W/m2), 100FC, 25 Fixtures per 1000 ft2",rs-means,Assembly,291908,"11,13,14,15,26",ft2,"0.013,0.64,0.025,0.025,0.025","Wire 600V #12 in raceway
27
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
28
+ Steel Outlet boxes, set flush in concrete 4 "" deep
29
+ Steel Outlet boxes, on framing
30
+ Recessed Ceiling Mount Fixtures: grid suspension, 2x4 fixtures, T8, 32 watt lamps, acrylic prismatic diffusers
31
+ ",43,25
32
+ 6,"High Bay (10 ft above work plane) Fluorescent Lighting .5 W/ft2 (5.4 W/m2), 29FC, 2 Fixtures per 1000 ft2",rs-means,Assembly,291909,"12,13,14,15,27",ft2,"0.002,0.1,0.002,0.002,0.002","Wire 600V #10 in raceway
33
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
34
+ Steel Outlet boxes, set flush in concrete 4 "" deep
35
+ Steel Outlet boxes, on framing
36
+ Pendant Mount, 4-54W T5HO 16"" x 4' fixtures, includes hardware
37
+ ",5.4,2
38
+ 7,"High Bay (10 ft above work plane) Fluorescent Lighting 1.5 W/ft2 (16 W/m2), 103FC, 7 Fixtures per 1000 ft2",rs-means,Assembly,291910,"12,13,14,15,27",ft2,"0.006,0.27,0.007,0.007,0.007","Wire 600V #10 in raceway
39
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
40
+ Steel Outlet boxes, set flush in concrete 4 "" deep
41
+ Steel Outlet boxes, on framing
42
+ Pendant Mount, 4-54W T5HO 16"" x 4' fixtures, includes hardware
43
+ ",16,7
44
+ 8,"High Bay (10 ft above work plane) Fluorescent Lighting 2.5 W/ft2 (27 W/m2), 162FC, 11 Fixtures per 1000 ft2",rs-means,Assembly,291911,"12,13,14,15,27","0.006,0.27,0.007,0.007,0.007","0.009,0.465,0.011,0.011,0.011","Wire 600V #10 in raceway
45
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
46
+ Steel Outlet boxes, set flush in concrete 4 "" deep
47
+ Steel Outlet boxes, on framing
48
+ Pendant Mount, 4-54W T5HO 16"" x 4' fixtures, includes hardware
49
+ ",27,11
50
+ 9,"H.I.D. High Bay (16 ft above work plane) 1 W/ft2 (10.8 W/m2), 52FC, 1 Fixtures per 1000 ft2",rs-means,Assembly,291912,"12,13,14,15,60",ft2,"0.003,0.16,0.001,0.001,0.001","Wire 600V #10 in raceway
51
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
52
+ Steel Outlet boxes, set flush in concrete 4 "" deep
53
+ Steel Outlet boxes, on framing
54
+ Metal Halide 1000 W bulb Surface Mount, aluminum reflector, includes hardware
55
+ ",10.8,1
56
+ 10,"H.I.D. High Bay (16 ft above work plane) 2 W/ft2 (21.5 W/m2), 105FC, 2 Fixtures per 1000 ft2",rs-means,Assembly,291913,"12,13,14,15,60",ft2,"0.007,0.32,0.002,0.002,0.002","Wire 600V #10 in raceway
57
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
58
+ Steel Outlet boxes, set flush in concrete 4 "" deep
59
+ Steel Outlet boxes, on framing
60
+ Metal Halide 1000 W bulb Surface Mount, aluminum reflector, includes hardware
61
+ ",21.5,2
62
+ 11,"H.I.D. High Bay (16 ft above work plane) 4 W/ft2 (43 W/m2), 210FC, 4 Fixtures per 1000 ft2",rs-means,Assembly,291914,"12,13,14,15,60",ft2,"0.014,0.64,0.004,0.004,0.004","Wire 600V #10 in raceway
63
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
64
+ Steel Outlet boxes, set flush in concrete 4 "" deep
65
+ Steel Outlet boxes, on framing
66
+ Metal Halide 1000 W bulb Surface Mount, aluminum reflector, includes hardware
67
+ ",43,4
68
+ 12,"H.I.D. High Bay (16 ft above work plane) 5 W/ft2 (54 W/m2), 262FC, 5Fixtures per 1000 ft2",rs-means,Assembly,291915,"12,13,14,15,60",ft2,"0.017,0.8,0.005,0.005,0.005","Wire 600V #10 in raceway
69
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
70
+ Steel Outlet boxes, set flush in concrete 4 "" deep
71
+ Steel Outlet boxes, on framing
72
+ Metal Halide 1000 W bulb Surface Mount, aluminum reflector, includes hardware
73
+ ",54,5
74
+ 13,"H.I.D. High Bay (20 ft above work plane) 1 W/ft2 (10.8 W/m2), 50FC, 1 Fixtures per 1000 ft2",rs-means,Assembly,291916,"12,13,14,15,60",ft2,"0.005,0.16,0.001,0.001,0.001","Wire 600V #10 in raceway
75
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
76
+ Steel Outlet boxes, set flush in concrete 4 "" deep
77
+ Steel Outlet boxes, on framing
78
+ Metal Halide 1000 W bulb Surface Mount, aluminum reflector, includes hardware
79
+ ",10.8,1
80
+ 14,"H.I.D. High Bay (20 ft above work plane) 2 W/ft2 (21.5 W/m2), 101FC, 2 Fixtures per 1000 ft2",rs-means,Assembly,291917,"12,13,14,15,60",ft2,"0.01,0.32,0.002,0.002,0.002","Wire 600V #10 in raceway
81
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
82
+ Steel Outlet boxes, set flush in concrete 4 "" deep
83
+ Steel Outlet boxes, on framing
84
+ Metal Halide 1000 W bulb Surface Mount, aluminum reflector, includes hardware
85
+ ",21.5,2
86
+ 15,"H.I.D. High Bay (20 ft above work plane) 4 W/ft2 (43 W/m2), 202FC, 4 Fixtures per 1000 ft2",rs-means,Assembly,291918,"12,13,14,15,60",ft2,"0.02,0.64,0.004,0.004,0.004","Wire 600V #10 in raceway
87
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
88
+ Steel Outlet boxes, set flush in concrete 4 "" deep
89
+ Steel Outlet boxes, on framing
90
+ Metal Halide 1000 W bulb Surface Mount, aluminum reflector, includes hardware
91
+ ",43,4
92
+ 16,"H.I.D. High Bay (20 ft above work plane) 5 W/ft2 (54 W/m2), 252FC, 5 Fixtures per 1000 ft2",rs-means,Assembly,291919,"12,13,14,15,60",ft2,"0.025,0.8,0.005,0.005,0.005","Wire 600V #10 in raceway
93
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
94
+ Steel Outlet boxes, set flush in concrete 4 "" deep
95
+ Steel Outlet boxes, on framing
96
+ Metal Halide 1000 W bulb Surface Mount, aluminum reflector, includes hardware
97
+ ",54,5
98
+ 17,"H.I.D. Low Bay (16 ft above work plane) 1 W/ft2 (10.8 W/m2), 28FC, 4 Fixtures per 1000 ft2",rs-means,Assembly,291920,"12,13,14,15,61",ft2,"0.01,0.328,0.004,0.004,0.004","Wire 600V #10 in raceway
99
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
100
+ Steel Outlet boxes, set flush in concrete 4 "" deep
101
+ Steel Outlet boxes, on framing
102
+ Metal Halide 250W lamps Type J Low Bay Surface Mount, aluminum reflector 28FC, includes hardware
103
+ ",10.8,4
104
+ 18,"H.I.D. Low Bay (16 ft above work plane) 2 W/ft2 (21.5 W/m2), 48FC, 7 Fixtures per 1000 ft2",rs-means,Assembly,291921,"12,13,14,15,61",ft2,"0.02,0.656,0.007,0.007,0.007","Wire 600V #10 in raceway
105
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
106
+ Steel Outlet boxes, set flush in concrete 4 "" deep
107
+ Steel Outlet boxes, on framing
108
+ Metal Halide 250W lamps Type J Low Bay Surface Mount, aluminum reflector 28FC, includes hardware
109
+ ",21.5,7
110
+ 19,"H.I.D. Low Bay (16 ft above work plane) 4 W/ft2 (43 W/m2), 95FC, 14 Fixtures per 1000 ft2",rs-means,Assembly,291922,"12,13,14,15,61",ft2,"0.04,1.312,0.014,0.014,0.014","Wire 600V #10 in raceway
111
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
112
+ Steel Outlet boxes, set flush in concrete 4 "" deep
113
+ Steel Outlet boxes, on framing
114
+ Metal Halide 250W lamps Type J Low Bay Surface Mount, aluminum reflector 28FC, includes hardware
115
+ ",43,14
116
+ 20,"H.I.D. Low Bay (16 ft above work plane) 5 W/ft2 (54 W/m2), 122FC, 18 Fixtures per 1000 ft2",rs-means,Assembly,291923,"12,13,14,15,61",ft2,"0.05,1.64,0.018,0.018,0.018","Wire 600V #10 in raceway
117
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
118
+ Steel Outlet boxes, set flush in concrete 4 "" deep
119
+ Steel Outlet boxes, on framing
120
+ Metal Halide 250W lamps Type J Low Bay Surface Mount, aluminum reflector 28FC, includes hardware
121
+ ",54,18
122
+ 21,"LED Lighting 23 W 2 x4 troffer recess mounted 400 Lux, 12 Fixtures/1000 Ft2 for max. 8 ft ceiling",rs-means,Assembly,291904,"10,13,14,15,104",ft2,"0.003,0.128,0.012,0.012,0.012","Wire 600V #14 Stranded THWN-THHN
123
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
124
+ Steel Outlet boxes, set flush in concrete 4 "" deep
125
+ Steel Outlet boxes, on framing
126
+ Interior LED fixtures, troffer, recess mounted, 37 Watts, 3200 Lumens, 2' x 4', incl lamps, mounting hardware and connections, replaces 2 T8s
127
+ ",3,12
128
+ 22,"LED Lighting 23 W 2 x4 troffer recess mounted 188 Lux, 6 Fixtures/1000 Ft2 for max. 8 foot ceilings",rs-means,Assembly,291904,"10,13,14,15,104",ft2,"0.003,0.128,0.006,0.006,0.006","Wire 600V #14 Stranded THWN-THHN
129
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
130
+ Steel Outlet boxes, set flush in concrete 4 "" deep
131
+ Steel Outlet boxes, on framing
132
+ Interior LED fixtures, troffer, recess mounted, 37 Watts, 3200 Lumens, 2' x 4', incl lamps, mounting hardware and connections, replaces 2 T8s
133
+ ",1.6,6
134
+ 23,"LED Lighting 23 W 2 x4 troffer recess mounted 400 Lux, 20 Fixtures/1000 Ft2 for max. 15 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,104",ft2,"0.003,0.128,0.02,0.02,0.02","Wire 600V #14 Stranded THWN-THHN
135
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
136
+ Steel Outlet boxes, set flush in concrete 4 "" deep
137
+ Steel Outlet boxes, on framing
138
+ Interior LED fixtures, troffer, recess mounted, 37 Watts, 3200 Lumens, 2' x 4', incl lamps, mounting hardware and connections, replaces 2 T8s
139
+ ",5,20
140
+ 24,"LED Lighting 23 W 2 x4 troffer recess mounted 200 Lux, 9 Fixtures/1000 Ft2 for max. 15 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,104",ft2,"0.003,0.128,0.009,0.009,0.009","Wire 600V #14 Stranded THWN-THHN
141
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
142
+ Steel Outlet boxes, set flush in concrete 4 "" deep
143
+ Steel Outlet boxes, on framing
144
+ Interior LED fixtures, troffer, recess mounted, 37 Watts, 3200 Lumens, 2' x 4', incl lamps, mounting hardware and connections, replaces 2 T8s
145
+ ",2.26,9
146
+ 25,"LED Lighting 23 W 2 x4 troffer recess mounted 500 Lux, 16 Fixtures/1000 Ft2 for max. 8 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,104",ft2,"0.003,0.128,0.016,0.016,0.016","Wire 600V #14 Stranded THWN-THHN
147
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
148
+ Steel Outlet boxes, set flush in concrete 4 "" deep
149
+ Steel Outlet boxes, on framing
150
+ Interior LED fixtures, troffer, recess mounted, 37 Watts, 3200 Lumens, 2' x 4', incl lamps, mounting hardware and connections, replaces 2 T8s
151
+ ",4,16
152
+ 26,"LED Lighting 23 W 2 x4 troffer recess mounted 600 Lux, 20 Fixtures/1000 Ft2 for max. 8 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,104",ft2,"0.003,0.128,0.02,0.02,0.02","Wire 600V #14 Stranded THWN-THHN
153
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
154
+ Steel Outlet boxes, set flush in concrete 4 "" deep
155
+ Steel Outlet boxes, on framing
156
+ Interior LED fixtures, troffer, recess mounted, 37 Watts, 3200 Lumens, 2' x 4', incl lamps, mounting hardware and connections, replaces 2 T8s
157
+ ",5,20
158
+ 27,"LED Lighting 23 W 2 x4 troffer recess mounted 1000 Lux, 36 Fixtures/1000 Ft2 for max. 8 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,104",ft2,"0.003,0.128,0.036,0.036,0.036","Wire 600V #14 Stranded THWN-THHN
159
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
160
+ Steel Outlet boxes, set flush in concrete 4 "" deep
161
+ Steel Outlet boxes, on framing
162
+ Interior LED fixtures, troffer, recess mounted, 37 Watts, 3200 Lumens, 2' x 4', incl lamps, mounting hardware and connections, replaces 2 T8s
163
+ ",9,36
164
+ 28,"LED Lighting 22 W strip LED suspended 350 Lux, 16 Fixtures/1000 Ft2 for max. 8 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,111",ft2,"0.003,0.128,0.016,0.016,0.016","Wire 600V #14 Stranded THWN-THHN
165
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
166
+ Steel Outlet boxes, set flush in concrete 4 "" deep
167
+ Steel Outlet boxes, on framing
168
+ Interior LED fixtures, strip, surface mounted, 37 Watts, 3500K, one light bar 4' long, incl lamps, mounting hardware and connections
169
+ ",4,16
170
+ 29,"LED Lighting 22 W strip LED suspended 150 Lux, 6 Fixtures/1000 Ft2 for max. 8 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,111",ft2,"0.003,0.128,0.006,0.006,0.006","Wire 600V #14 Stranded THWN-THHN
171
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
172
+ Steel Outlet boxes, set flush in concrete 4 "" deep
173
+ Steel Outlet boxes, on framing
174
+ Interior LED fixtures, strip, surface mounted, 37 Watts, 3500K, one light bar 4' long, incl lamps, mounting hardware and connections
175
+ ",2.5,6
176
+ 30,"LED Lighting 25 W LED suspended 300 Lux, 12 Fixtures/1000 Ft2 for max. 8 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,114",ft2,"0.003,0.128,0.012,0.012,0.012","Wire 600V #14 Stranded THWN-THHN
177
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
178
+ Steel Outlet boxes, set flush in concrete 4 "" deep
179
+ Steel Outlet boxes, on framing
180
+ Interior LED fixtures, linear, suspended mounted, 37 watt, one light bar 4' long, incl lamps, mounting hardware and connections
181
+ ",3.3,12
182
+ 31,"LED Lighting 25 W LED suspended 400 Lux, 16 Fixtures/1000 Ft2 for max. 8 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,114",ft2,"0.003,0.128,0.016,0.016,0.016","Wire 600V #14 Stranded THWN-THHN
183
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
184
+ Steel Outlet boxes, set flush in concrete 4 "" deep
185
+ Steel Outlet boxes, on framing
186
+ Interior LED fixtures, linear, suspended mounted, 37 watt, one light bar 4' long, incl lamps, mounting hardware and connections
187
+ ",4.3,16
188
+ 32,"LED Lighting 25 W LED suspended 500 Lux, 20 Fixtures/1000 Ft2 for max. 8 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,114",ft2,"0.003,0.128,0.02,0.02,0.02","Wire 600V #14 Stranded THWN-THHN
189
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
190
+ Steel Outlet boxes, set flush in concrete 4 "" deep
191
+ Steel Outlet boxes, on framing
192
+ Interior LED fixtures, linear, suspended mounted, 37 watt, one light bar 4' long, incl lamps, mounting hardware and connections
193
+ ",5.2,20
194
+ 33,"LED Lighting 25 W LED suspended 600 Lux, 25 Fixtures/1000 Ft2 for max. 8 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,114",ft2,"0.003,0.128,0.025,0.025,0.025","Wire 600V #14 Stranded THWN-THHN
195
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
196
+ Steel Outlet boxes, set flush in concrete 4 "" deep
197
+ Steel Outlet boxes, on framing
198
+ Interior LED fixtures, linear, suspended mounted, 37 watt, one light bar 4' long, incl lamps, mounting hardware and connections
199
+ ",6.5,25
200
+ 34,"LED Lighting 25 W LED suspended 800 Lux, 36 Fixtures/1000 Ft2 for max. 8 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,114",ft2,"0.003,0.128,0.036,0.036,0.036","Wire 600V #14 Stranded THWN-THHN
201
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
202
+ Steel Outlet boxes, set flush in concrete 4 "" deep
203
+ Steel Outlet boxes, on framing
204
+ Interior LED fixtures, linear, suspended mounted, 37 watt, one light bar 4' long, incl lamps, mounting hardware and connections
205
+ ",11.8,36
206
+ 35,"LED Lighting 25 W LED suspended 1000 Lux, 42 Fixtures/1000 Ft2 for max. 8 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,114",ft2,"0.003,0.128,0.042,0.042,0.042","Wire 600V #14 Stranded THWN-THHN
207
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
208
+ Steel Outlet boxes, set flush in concrete 4 "" deep
209
+ Steel Outlet boxes, on framing
210
+ Interior LED fixtures, linear, suspended mounted, 37 watt, one light bar 4' long, incl lamps, mounting hardware and connections
211
+ ",14.8,42
212
+ 36,"LED Lighting 25 W LED suspended 1600 Lux, 64 Fixtures/1000 Ft2 for max. 8 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,114",ft2,"0.003,0.128,0.064,0.064,0.064","Wire 600V #14 Stranded THWN-THHN
213
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
214
+ Steel Outlet boxes, set flush in concrete 4 "" deep
215
+ Steel Outlet boxes, on framing
216
+ Interior LED fixtures, linear, suspended mounted, 37 watt, one light bar 4' long, incl lamps, mounting hardware and connections
217
+ ",17.4,64
218
+ 37,"LED Lighting 25 W LED suspended 300 Lux, 16 Fixtures/1000 Ft2 for max. 15 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,114",ft2,"0.003,0.128,0.016,0.016,0.016","Wire 600V #14 Stranded THWN-THHN
219
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
220
+ Steel Outlet boxes, set flush in concrete 4 "" deep
221
+ Steel Outlet boxes, on framing
222
+ Interior LED fixtures, linear, suspended mounted, 37 watt, one light bar 4' long, incl lamps, mounting hardware and connections
223
+ ",4.8,16
224
+ 38,"LED Lighting 25 W LED suspended 150 Lux, 9 Fixtures/1000 Ft2 for max. 15 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,114",ft2,"0.003,0.128,0.009,0.009,0.009","Wire 600V #14 Stranded THWN-THHN
225
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
226
+ Steel Outlet boxes, set flush in concrete 4 "" deep
227
+ Steel Outlet boxes, on framing
228
+ Interior LED fixtures, linear, suspended mounted, 37 watt, one light bar 4' long, incl lamps, mounting hardware and connections
229
+ ",2.7,9
230
+ 39,"LED Lighting 25 W LED suspended 500 Lux, 25 Fixtures/1000 Ft2 for max. 15 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,114",ft2,"0.003,0.128,0.025,0.025,0.025","Wire 600V #14 Stranded THWN-THHN
231
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
232
+ Steel Outlet boxes, set flush in concrete 4 "" deep
233
+ Steel Outlet boxes, on framing
234
+ Interior LED fixtures, linear, suspended mounted, 37 watt, one light bar 4' long, incl lamps, mounting hardware and connections
235
+ ",7.6,25
236
+ 40,"LED Lighting 25 W LED suspended 250 Lux, 16 Fixtures/1000 Ft2 for max. 15 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,114",ft2,"0.003,0.128,0.016,0.016,0.016","Wire 600V #14 Stranded THWN-THHN
237
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
238
+ Steel Outlet boxes, set flush in concrete 4 "" deep
239
+ Steel Outlet boxes, on framing
240
+ Interior LED fixtures, linear, suspended mounted, 37 watt, one light bar 4' long, incl lamps, mounting hardware and connections
241
+ ",5.25,16
242
+ 41,"LED Lighting 25 W LED suspended 600 Lux, 36 Fixtures/1000 Ft2 for max. 15 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,114",ft2,"0.003,0.128,0.036,0.036,0.036","Wire 600V #14 Stranded THWN-THHN
243
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
244
+ Steel Outlet boxes, set flush in concrete 4 "" deep
245
+ Steel Outlet boxes, on framing
246
+ Interior LED fixtures, linear, suspended mounted, 37 watt, one light bar 4' long, incl lamps, mounting hardware and connections
247
+ ",10.36,36
248
+ 42,"LED Lighting 87 W LED suspended 1000 Lux, 16 Fixtures/1000 Ft2 for max. 15 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,116",ft2,"0.003,0.128,0.016,0.016,0.016","Wire 600V #14 Stranded THWN-THHN
249
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
250
+ Steel Outlet boxes, set flush in concrete 4 "" deep
251
+ Steel Outlet boxes, on framing
252
+ Interior LED fixtures, linear, suspended mounted, 74 watt, two light bar 4' long, incl lamps, mounting hardware and connections
253
+ ",15,16
254
+ 43,"LED Lighting 87 W LED suspended 1600 Lux, 28 Fixtures/1000 Ft2 for max. 15 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,116",ft2,"0.003,0.128,0.028,0.028,0.028","Wire 600V #14 Stranded THWN-THHN
255
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
256
+ Steel Outlet boxes, set flush in concrete 4 "" deep
257
+ Steel Outlet boxes, on framing
258
+ Interior LED fixtures, linear, suspended mounted, 74 watt, two light bar 4' long, incl lamps, mounting hardware and connections
259
+ ",22,28
260
+ 44,"LED Lighting 22 W strip LED suspended 150 Lux, 6 Fixtures/1000 Ft2 for max. 15 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,111",ft2,"0.003,0.128,0.006,0.006,0.006","Wire 600V #14 Stranded THWN-THHN
261
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
262
+ Steel Outlet boxes, set flush in concrete 4 "" deep
263
+ Steel Outlet boxes, on framing
264
+ Interior LED fixtures, strip, surface mounted, 37 Watts, 3500K, one light bar 4' long, incl lamps, mounting hardware and connections
265
+ ",2.8,6
266
+ 45,"LED Lighting 22 W strip LED suspended 350 Lux, 20 Fixtures/1000 Ft2 for max. 15 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,111",ft2,"0.003,0.128,0.02,0.02,0.02","Wire 600V #14 Stranded THWN-THHN
267
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
268
+ Steel Outlet boxes, set flush in concrete 4 "" deep
269
+ Steel Outlet boxes, on framing
270
+ Interior LED fixtures, strip, surface mounted, 37 Watts, 3500K, one light bar 4' long, incl lamps, mounting hardware and connections
271
+ ",5,20
272
+ 46,"LED Lighting 130 W High Bay LED suspended round 500 Lux, 4 Fixtures/1000 Ft2 for max. 20 ft. ceilings",rs-means,Assembly,291904,"10,13,4,14,15,118",ft2,"0.003,0.128,0.004, 0.004,0.004,0.004","Wire 600V #14 Stranded THWN-THHN
273
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
274
+ Fixture Hanger 0.75 in diameter 6 ft long
275
+ Steel Outlet boxes, set flush in concrete 4 "" deep
276
+ Steel Outlet boxes, on framing
277
+ Interior LED fixtures, high bay, surface mounted, round, 150 watt
278
+ ",6.8,4
279
+ 47,"LED Lighting 74 W High Bay LED suspended round 400 Lux, 9 Fixtures/1000 Ft2 for max. 20 ft. ceilings",rs-means,Assembly,291904,"10,13,4,14,15,116",ft2,"0.003,0.128,0.009,0.009,0.009,0.009","Wire 600V #14 Stranded THWN-THHN
280
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
281
+ Fixture Hanger 0.75 in diameter 6 ft long
282
+ Steel Outlet boxes, set flush in concrete 4 "" deep
283
+ Steel Outlet boxes, on framing
284
+ Interior LED fixtures, linear, suspended mounted, 74 watt, two light bar 4' long, incl lamps, mounting hardware and connections
285
+ ",8,9
286
+ 48,"LED Lighting 74 W High Bay LED suspended round 250 Lux, 6 Fixtures/1000 Ft2 for max. 20 ft. ceilings",rs-means,Assembly,291904,"10,13,4,14,15,116",ft2,"0.003,0.128,0.006,0.006,0.006,0.006","Wire 600V #14 Stranded THWN-THHN
287
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
288
+ Fixture Hanger 0.75 in diameter 6 ft long
289
+ Steel Outlet boxes, set flush in concrete 4 "" deep
290
+ Steel Outlet boxes, on framing
291
+ Interior LED fixtures, linear, suspended mounted, 74 watt, two light bar 4' long, incl lamps, mounting hardware and connections
292
+ ",6.6,6
293
+ 49,"LED Lighting 74 W High Bay LED suspended round 150 Lux, 4 Fixtures/1000 Ft2 for max. 20 ft. ceilings",rs-means,Assembly,291904,"10,13,4,14,15,116",ft2,"0.003,0.128,0.004,0.004,0.004,0.004","Wire 600V #14 Stranded THWN-THHN
294
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
295
+ Fixture Hanger 0.75 in diameter 6 ft long
296
+ Steel Outlet boxes, set flush in concrete 4 "" deep
297
+ Steel Outlet boxes, on framing
298
+ Interior LED fixtures, linear, suspended mounted, 74 watt, two light bar 4' long, incl lamps, mounting hardware and connections
299
+ ",4.6,4
300
+ 50,"LED Lighting 74 W High Bay LED suspended round 1500 Lux, 36 Fixtures/1000 Ft2 for max. 20 ft. ceilings",rs-means,Assembly,291904,"10,13,4,14,15,116",ft2,"0.003,0.128,0.036,0.036,0.036,0.036","Wire 600V #14 Stranded THWN-THHN
301
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
302
+ Fixture Hanger 0.75 in diameter 6 ft long
303
+ Steel Outlet boxes, set flush in concrete 4 "" deep
304
+ Steel Outlet boxes, on framing
305
+ Interior LED fixtures, linear, suspended mounted, 74 watt, two light bar 4' long, incl lamps, mounting hardware and connections
306
+ ",23.6,36
307
+ 51,"LED Lighting 74 W High Bay LED suspended round 1000 Lux, 25 Fixtures/1000 Ft2 for max. 20 ft. ceilings",rs-means,Assembly,291904,"10,13,4,14,15,116",ft2,"0.003,0.128,0.025,0.025,0.025,0.025","Wire 600V #14 Stranded THWN-THHN
308
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
309
+ Fixture Hanger 0.75 in diameter 6 ft long
310
+ Steel Outlet boxes, set flush in concrete 4 "" deep
311
+ Steel Outlet boxes, on framing
312
+ Interior LED fixtures, linear, suspended mounted, 74 watt, two light bar 4' long, incl lamps, mounting hardware and connections
313
+ ",18.9,25
314
+ 52,"LED Lighting 74 W High Bay LED suspended round 800 Lux, 20 Fixtures/1000 Ft2 for max. 20 ft. ceilings",rs-means,Assembly,291904,"10,13,4,14,15,116",ft2,"0.003,0.128,0.02,0.02,0.02,0.02","Wire 600V #14 Stranded THWN-THHN
315
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
316
+ Fixture Hanger 0.75 in diameter 6 ft long
317
+ Steel Outlet boxes, set flush in concrete 4 "" deep
318
+ Steel Outlet boxes, on framing
319
+ Interior LED fixtures, linear, suspended mounted, 74 watt, two light bar 4' long, incl lamps, mounting hardware and connections
320
+ ",16.8,20
321
+ 53,"LED Lighting 74 W High Bay LED suspended round 600 Lux, 16 Fixtures/1000 Ft2 for max. 20 ft. ceilings",rs-means,Assembly,291904,"10,13,4,14,15,116",ft2,"0.003,0.128,0.016,0.016,0.016,0.016","Wire 600V #14 Stranded THWN-THHN
322
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
323
+ Fixture Hanger 0.75 in diameter 6 ft long
324
+ Steel Outlet boxes, set flush in concrete 4 "" deep
325
+ Steel Outlet boxes, on framing
326
+ Interior LED fixtures, linear, suspended mounted, 74 watt, two light bar 4' long, incl lamps, mounting hardware and connections
327
+ ",11.2,16
328
+ 54,"LED Lighting 74 W High Bay LED surface mount garage 500 Lux, 12 Fixtures/1000 Ft2 for max. 20 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,128",ft2,"0.003,0.128,0.012,0.012,0.012","Wire 600V #14 Stranded THWN-THHN
329
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
330
+ Steel Outlet boxes, set flush in concrete 4 "" deep
331
+ Steel Outlet boxes, on framing
332
+ Interior LED fixtures, garage, surface mounted, 103 watts
333
+ ",7.7,12
334
+ 55,"LED Lighting 54 W High Bay LED suspended 4 ft. 2-bar 300 Lux, 16 Fixtures/1000 Ft2 for max. 20 ft. ceilings",rs-means,Assembly,291904,"10,13,4,14,15,116",ft2,"0.003,0.128,0.016,0.016,0.016,0.016","Wire 600V #14 Stranded THWN-THHN
335
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
336
+ Fixture Hanger 0.75 in diameter 6 ft long
337
+ Steel Outlet boxes, set flush in concrete 4 "" deep
338
+ Steel Outlet boxes, on framing
339
+ Interior LED fixtures, linear, suspended mounted, 74 watt, two light bar 4' long, incl lamps, mounting hardware and connections
340
+ ",9.4,16
341
+ 56,"LED Lighting 74 W High Bay LED surface mount garage 500 Lux, 6 Fixtures/1000 Ft2 for max. 10 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,128",ft2,"0.003,0.128,0.006,0.006,0.006","Wire 600V #14 Stranded THWN-THHN
342
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
343
+ Steel Outlet boxes, set flush in concrete 4 "" deep
344
+ Steel Outlet boxes, on framing
345
+ Interior LED fixtures, garage, surface mounted, 103 watts
346
+ ",4.2,6
347
+ 57,"LED Lighting 13 W strip LED suspended 291 Lux, 20 Fixtures/1000 Ft2 for max. 8.5 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,284",ft2,"0.003,0.128,0.006,0.006,0.02","Wire 600V #14 Stranded THWN-THHN
348
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
349
+ Steel Outlet boxes, set flush in concrete 4 "" deep
350
+ Steel Outlet boxes, on framing
351
+ LED 13 watt dimmable warm white
352
+ ",2.8,6
353
+ 58,"LED Lighting 13 W strip LED suspended 291 Lux, 25 Fixtures/1000 Ft2 for max. 8.5 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,284",ft2,"0.003,0.128,0.006,0.006,0.025","Wire 600V #14 Stranded THWN-THHN
354
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
355
+ Steel Outlet boxes, set flush in concrete 4 "" deep
356
+ Steel Outlet boxes, on framing
357
+ LED 13 watt dimmable warm white
358
+ ",2.8,6
359
+ 59,"LED Lighting 13 W strip LED suspended 254 Lux, 16 Fixtures/1000 Ft2 for max. 8.5 ft. ceilings",rs-means,Assembly,291904,"10,13,14,15,284",ft2,"0.003,0.128,0.006,0.006,0.016","Wire 600V #14 Stranded THWN-THHN
360
+ Metal conduit. 0.5 in diamater, 11 coupling per 100 LF
361
+ Steel Outlet boxes, set flush in concrete 4 "" deep
362
+ Steel Outlet boxes, on framing
363
+ LED 13 watt dimmable warm white
364
+ ",2.8,6