Bird
0
0
PCB Designbi_tool~8 mins

Route planning for two-layer board in PCB Design - Dashboard Guide

Choose your learning style9 modes available
Dashboard Mode - Route planning for two-layer board
Goal

Understand how to plan and visualize routing paths on a two-layer printed circuit board (PCB) to optimize signal flow and minimize interference.

Sample Data: PCB Net Connections
Net IDStart PointEnd PointLayerLength (mm)Via Count
Net1U1 Pin1R1 Pin2Top150
Net2U2 Pin3C1 Pin1Bottom201
Net3U3 Pin5J1 Pin1Top100
Net4R2 Pin1U4 Pin2Bottom252
Net5C2 Pin2U5 Pin4Top181
Dashboard Components
  • KPI Card: Total Nets Routed - Counts all nets in the data.
    Formula: Total Nets = COUNTROWS('PCB_Nets')
    Result: 5
  • KPI Card: Total Vias Used - Sum of all vias across nets.
    Formula: Total Vias = SUM('PCB_Nets'[Via Count])
    Result: 4
  • Bar Chart: Length of Nets by Layer - Shows total length of nets on Top and Bottom layers.
    Formula: Length by Layer = SUMMARIZE('PCB_Nets', 'PCB_Nets'[Layer], "Total Length", SUM('PCB_Nets'[Length (mm)]))
    Data: Top = 43 mm, Bottom = 45 mm
  • Table: Detailed Net Routes - Lists each net with start, end, layer, length, and vias.
    Shows all rows from sample data.
Dashboard Layout
+----------------------+----------------------+
| Total Nets Routed    | Total Vias Used      |
|       [ 5 ]          |       [ 4 ]          |
+----------------------+----------------------+
|                                              |
|          Length of Nets by Layer (Bar Chart) |
|                                              |
+----------------------------------------------+
|                                              |
|             Detailed Net Routes (Table)      |
|                                              |
+----------------------------------------------+
Interactivity

A layer filter allows selecting either 'Top', 'Bottom', or 'All' layers.

  • When a layer is selected, the bar chart updates to show lengths only for that layer.
  • The detailed net routes table filters to show only nets on the selected layer.
  • KPI cards update: Total Nets Routed and Total Vias Used reflect counts and sums for the filtered layer.
Self Check

If you add a filter for Layer = 'Top', which components update and what are their new values?

  • Total Nets Routed: 3 (Nets 1, 3, 5)
  • Total Vias Used: 1 (Via counts 0 + 0 + 1)
  • Length of Nets by Layer: Bar chart shows only Top layer total length = 43 mm
  • Detailed Net Routes: Table shows only nets on Top layer (Net1, Net3, Net5)
Key Result
Dashboard shows routing details and via usage for nets on a two-layer PCB with layer-based filtering.