Bird
0
0
PCB Designbi_tool~10 mins

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

Choose your learning style9 modes available
Sample Data

This table shows integrated circuits (ICs) with their power pins, voltage levels, distance to their decoupling capacitors, and capacitor values used for decoupling.

CellValue
A1Component
B1Pin
C1Voltage (V)
D1Distance to Capacitor (mm)
E1Capacitor Value (uF)
A2IC1
B2VCC
C23.3
D25
E20.1
A3IC2
B3VCC
C35
D310
E30.01
A4IC3
B4VCC
C41.8
D43
E40.1
Formula Trace
IF(D2<=5, "Good placement", "Too far")
Step 1: D2<=5
Step 2: 5<=5
Step 3: IF(TRUE, "Good placement", "Too far")
Cell Reference Map
    A       B       C       D       E
1 |Component|Pin    |Voltage |Distance|Capacitor
  |         |       |(V)     |to Cap  |Value
2 |IC1      |VCC    |3.3     |5      |0.1
3 |IC2      |VCC    |5       |10     |0.01
4 |IC3      |VCC    |1.8     |3      |0.1

Formula references cell D2 (distance for IC1)
The formula checks the distance value in cell D2 to decide if the capacitor placement is good or too far.
Result
    A       B       C       D       E       F
1 |Component|Pin    |Voltage |Distance|Capacitor|Placement
  |         |       |(V)     |to Cap  |Value    |
2 |IC1      |VCC    |3.3     |5      |0.1      |Good placement
3 |IC2      |VCC    |5       |10     |0.01     |Too far
4 |IC3      |VCC    |1.8     |3      |0.1      |Good placement

Placement result shown for IC1, IC2, and IC3 based on distance
The formula result 'Good placement' or 'Too far' is shown in column F for each IC, indicating if the capacitor is placed close enough.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula check in cell D2?
AIf the voltage is greater than 5 V
BIf the capacitor value is 0.1 uF
CIf the capacitor distance is less than or equal to 5 mm
DIf the pin is VCC
Key Result
IF(condition, value_if_true, value_if_false) returns one of two values based on a logical test.