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.
Understand how to plan and visualize routing paths on a two-layer printed circuit board (PCB) to optimize signal flow and minimize interference.
| Net ID | Start Point | End Point | Layer | Length (mm) | Via Count |
|---|---|---|---|---|---|
| Net1 | U1 Pin1 | R1 Pin2 | Top | 15 | 0 |
| Net2 | U2 Pin3 | C1 Pin1 | Bottom | 20 | 1 |
| Net3 | U3 Pin5 | J1 Pin1 | Top | 10 | 0 |
| Net4 | R2 Pin1 | U4 Pin2 | Bottom | 25 | 2 |
| Net5 | C2 Pin2 | U5 Pin4 | Top | 18 | 1 |
Total Nets = COUNTROWS('PCB_Nets')Total Vias = SUM('PCB_Nets'[Via Count])Length by Layer = SUMMARIZE('PCB_Nets', 'PCB_Nets'[Layer], "Total Length", SUM('PCB_Nets'[Length (mm)]))+----------------------+----------------------+ | Total Nets Routed | Total Vias Used | | [ 5 ] | [ 4 ] | +----------------------+----------------------+ | | | Length of Nets by Layer (Bar Chart) | | | +----------------------------------------------+ | | | Detailed Net Routes (Table) | | | +----------------------------------------------+
A layer filter allows selecting either 'Top', 'Bottom', or 'All' layers.
If you add a filter for Layer = 'Top', which components update and what are their new values?