0
0
Raspberry-piHow-ToBeginner · 4 min read

How to Reduce EMI in Power Converters: Effective Techniques

To reduce EMI in power converters, use proper filtering components like capacitors and inductors, implement good PCB layout practices to minimize noise coupling, and apply shielding to block interference. Controlling switching speed and using snubber circuits also help lower EMI emissions effectively.
📐

Syntax

Reducing EMI in power converters involves applying several design techniques and components:

  • Filtering: Use capacitors and inductors to block high-frequency noise.
  • PCB Layout: Arrange components and traces to minimize loop areas and noise coupling.
  • Shielding: Use metal enclosures or conductive coatings to block EMI.
  • Switching Control: Adjust switching speed and waveform shape to reduce noise generation.
  • Snubber Circuits: Add resistors and capacitors to absorb voltage spikes.
circuit
/* Example of EMI filter component placement */
// Place a capacitor (C1) across input terminals
// Place an inductor (L1) in series with input line

// Snubber circuit example:
// Connect resistor (R1) and capacitor (C2) in series across switching device

// PCB layout tips:
// Keep high-current loops small
// Separate noisy and sensitive signals
// Use ground planes effectively
💻

Example

This example shows a simple EMI filter circuit for a DC-DC converter input stage. It uses an inductor and capacitor to reduce high-frequency noise.

circuit
/* Simple EMI Filter Circuit for Power Converter Input */

// Components:
// L1: 10uH inductor
// C1: 1uF ceramic capacitor

// Circuit connections:
// Input voltage -- L1 -- Converter input
// C1 connected from converter input to ground

// This filter blocks high-frequency noise from entering or leaving the converter.
Output
The filter reduces noise spikes above the cutoff frequency, improving EMI performance.
⚠️

Common Pitfalls

Common mistakes when trying to reduce EMI include:

  • Placing filter components far from noise sources, reducing effectiveness.
  • Poor PCB layout with large loop areas causing more noise radiation.
  • Ignoring grounding techniques, leading to ground loops and interference.
  • Using slow switching speeds without snubbers, causing voltage spikes.

Correcting these improves EMI reduction significantly.

circuit
/* Wrong way: Placing capacitor far from switching node */
// C1 connected far from switch terminal

/* Right way: Place capacitor close to switching node */
// C1 placed directly across switch terminals to reduce noise
📊

Quick Reference

Summary tips to reduce EMI in power converters:

  • Use LC filters at input and output.
  • Keep PCB trace loops small and short.
  • Implement solid ground planes and proper grounding.
  • Apply shielding enclosures if needed.
  • Control switching speed and add snubber circuits.

Key Takeaways

Use LC filters and snubber circuits to block and absorb EMI noise.
Design PCB layouts with minimal loop areas and good grounding to reduce noise coupling.
Control switching speed to limit high-frequency noise generation.
Apply shielding to prevent EMI radiation and susceptibility.
Place components close to noise sources for maximum EMI reduction.