Dashboard Mode - Wiring connections between components
Goal
Understand how wiring connections between components affect the overall PCB design and signal flow.
Understand how wiring connections between components affect the overall PCB design and signal flow.
| Component | Pin | Connected To | Wire Length (mm) | Signal Type |
|---|---|---|---|---|
| U1 | Pin1 | R1 Pin1 | 15 | Power |
| U1 | Pin2 | C1 Pin1 | 10 | Signal |
| R1 | Pin2 | U2 Pin1 | 20 | Signal |
| C1 | Pin2 | GND | 5 | Ground |
| U2 | Pin2 | LED1 Anode | 12 | Signal |
| LED1 | Cathode | GND | 8 | Ground |
=SUM([Wire Length (mm)])=SUMX(FILTER(Table, [Signal Type] = "Signal"), [Wire Length (mm)])=SUMX(FILTER(Table, [Signal Type] = "Power"), [Wire Length (mm)])=SUMX(FILTER(Table, [Signal Type] = "Ground"), [Wire Length (mm)])+----------------------+-----------------------+ | Total Wire Length | Signal Wire Length | | (KPI Card) | (KPI Card) | +----------------------+-----------------------+ | Power Wire Length | Ground Wire Length | | (KPI Card) | (KPI Card) | +----------------------------------------------+ | Wire Length by Component (Bar Chart) | +----------------------------------------------+ | Connection Table | +----------------------------------------------+
A filter for Signal Type allows users to select one or multiple signal types (Power, Signal, Ground). When applied:
This helps focus on specific wiring categories and analyze their impact on the PCB design.
Question: If you add a filter to show only Signal type wires, which components have wire lengths shown in the bar chart?
Answer: Components U1, R1, and U2 will show wire lengths because they have connections with Signal type wires.