Cable Tray Fill Calculator Formula

Understand the math behind the cable tray fill calculator. Each variable explained with a worked example.

Formulas Used

Tray Fill

fill_pct = tray_area > 0 ? total_cable_area / tray_area * 100 : 0

Tray Cross-Section

tray_area_out = tray_area

Max Cables at 40% Fill

max_cables = single_cable_area > 0 ? floor(tray_area * 0.40 / single_cable_area) : 0

Variables

VariableDescriptionDefault
tray_widthTray Width(in)12
tray_depthUsable Depth(in)4
num_cablesNumber of Cables20
cable_odCable Outside Diameter(in)0.75
tray_areaDerived value= tray_width * tray_depthcalculated
single_cable_areaDerived value= pi * pow(cable_od / 2, 2)calculated
total_cable_areaDerived value= num_cables * single_cable_areacalculated

How It Works

Cable Tray Fill

Fill % = (Number of Cables x Cable Area) / Tray Area x 100

NEC Article 392 limits fill for cable trays. For multiconductor cables in a solid-bottom tray, total cable area must not exceed the tray cross-section area (the depth restriction acts as the limit). A practical target of 40% fill allows room for future additions and airflow.

Worked Example

20 cables (0.75 in OD) in a 12 x 4 inch tray.

tray_width = 12tray_depth = 4num_cables = 20cable_od = 0.75
  1. 01Tray area = 12 x 4 = 48 sq in
  2. 02Cable area each = pi x 0.375 squared = 0.442 sq in
  3. 03Total cable area = 20 x 0.442 = 8.84 sq in
  4. 04Fill = 8.84 / 48 x 100 = 18.4%
  5. 05Well within limits.

Ready to run the numbers?

Open Cable Tray Fill Calculator