Bird
0
0
PCB Designbi_tool~10 mins

Decoupling capacitor placement rules in PCB Design - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data shows different integrated circuits (ICs) with their recommended decoupling capacitor types, the maximum placement distance from the IC in millimeters, and the expected effectiveness of the decoupling.

CellValue
A1Component
B1Capacitor Type
C1Placement Distance (mm)
D1Effectiveness
A2IC1
B2Ceramic 0.1uF
C25
D2High
A3IC2
B3Tantalum 10uF
C315
D3Medium
A4IC3
B4Ceramic 1uF
C47
D4High
A5IC4
B5Electrolytic 100uF
C520
D5Low
Formula Trace
IF(C2<=10, "Place capacitor close for high effectiveness", "Place capacitor further with lower effectiveness")
Step 1: C2 <= 10
Step 2: TRUE
Step 3: IF(TRUE, "Place capacitor close for high effectiveness", "Place capacitor further with lower effectiveness")
Cell Reference Map
    A       B               C       D
1 |Component|Capacitor Type |Distance|Effectiveness
2 |   IC1   |Ceramic 0.1uF  |  5     | High

Arrow: Formula checks cell C2 for distance value.
The formula references cell C2 to decide the capacitor placement rule based on distance.
Result
    A       B               C       D       E
1 |Component|Capacitor Type |Distance|Effectiveness|Placement Rule
2 |   IC1   |Ceramic 0.1uF  |  5     | High       |Place capacitor close for high effectiveness
The result shows the placement rule message for IC1 based on the capacitor distance value.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula check to decide the placement rule?
AThe component name in cell A2
BThe capacitor type in cell B2
CThe capacitor placement distance in cell C2
DThe effectiveness in cell D2
Key Result
IF(distance <= threshold, "Place capacitor close for high effectiveness", "Place capacitor further with lower effectiveness")