0
0
Embedded-cHow-ToBeginner · 4 min read

How to Reduce Noise on PCB Power Supply: Simple Techniques

To reduce noise on a PCB power supply, use decoupling capacitors close to power pins, implement a solid ground plane, and add LC filters or ferrite beads to block high-frequency noise. Proper PCB layout with short, wide traces and separation of analog and digital grounds also helps minimize noise.
📐

Syntax

Here are common components and layout techniques used to reduce noise on PCB power supplies:

  • Decoupling Capacitors: Place small capacitors (e.g., 0.1µF) near IC power pins to filter high-frequency noise.
  • Ground Plane: Use a continuous copper layer as a ground reference to reduce interference.
  • LC Filters: Combine inductors (L) and capacitors (C) to block noise on power lines.
  • Ferrite Beads: Add these to power lines to suppress high-frequency noise.
  • PCB Layout: Keep power traces short and wide; separate analog and digital grounds.
plaintext
/* Example schematic snippet for decoupling capacitor placement */
Power_Pin ---||--- GND
           0.1uF

/* LC filter example */
Power_Source ---L---+--- Load
                   |
                   C
                   |
                  GND
💻

Example

This example shows a simple PCB power supply layout snippet with decoupling capacitors and an LC filter to reduce noise.

plaintext
/* PCB Power Supply Noise Reduction Example */

// Place 0.1uF ceramic capacitor close to IC power pin
IC_VCC ---||--- GND
          0.1uF

// Add LC filter on power input
Power_In ---L1---+--- IC_VCC
                 |
                 C1
                 |
                GND

// L1 = 10uH inductor
// C1 = 10uF electrolytic capacitor
Output
Power supply noise is reduced by filtering high-frequency noise with L1 and C1, and stabilizing IC power with the 0.1uF capacitor.
⚠️

Common Pitfalls

Common mistakes when trying to reduce noise on PCB power supplies include:

  • Placing decoupling capacitors far from IC power pins, reducing their effectiveness.
  • Using thin or long power traces that increase resistance and inductance, causing voltage drops and noise.
  • Not separating analog and digital grounds, which can cause noise coupling.
  • Ignoring the ground plane or having fragmented ground layers, which increases interference.
  • Overlooking the need for proper filtering components like ferrite beads or LC filters.
plaintext
/* Wrong way: decoupling capacitor far from IC */
IC_VCC -------------------||---------------- GND
                          0.1uF

/* Right way: capacitor close to IC power pin */
IC_VCC ---||--- GND
          0.1uF
📊

Quick Reference

TechniquePurposeTip
Decoupling CapacitorsFilter high-frequency noise near ICsUse 0.1µF ceramic capacitors close to power pins
Ground PlaneProvide low impedance return pathUse continuous copper layer for ground
LC FiltersBlock noise on power linesCombine inductors and capacitors at power input
Ferrite BeadsSuppress high-frequency noisePlace on power lines feeding sensitive circuits
PCB LayoutMinimize noise couplingKeep power traces short and separate analog/digital grounds

Key Takeaways

Place decoupling capacitors close to IC power pins to filter noise effectively.
Use a solid ground plane to reduce interference and provide a stable reference.
Add LC filters or ferrite beads on power lines to block high-frequency noise.
Keep power traces short and wide to reduce resistance and inductance.
Separate analog and digital grounds to prevent noise coupling.