top of page
Search

DSP 14: Analog Filters for Data Conversion

  • Writer: John Montroy
    John Montroy
  • Jan 2, 2024
  • 2 min read

Updated: Mar 17, 2024

  • Covered:

  • Key Terms:

    • anti-aliasing filter

    • Chebyshev, Butterworth, Bessel

    • Sallen-Key Circuit

  • Questions:

    • How the heck does a Sallen-Key Circuit work?

    • What is a switched capacitor filter, exactly?

    • Is "anti-aliasing" here similar to the graphical antialiasing setting?


(Programming note: we're back! Took some time to see Hoi An and Da Nang with a friend. Happy 2024! May your luck be analog and your emotions only as convolved as you desire.)


 

So how do we actually remove frequencies above the Nyquist rate from the analog signal, in order to prevent aliasing? Well, we use an antialias filter! Note that we also use a reconstruction filter after the DAC, to compensate for conversion artifacts (I'm sure I'll learn more on this later):



We need to understand these hardware filters, especially if we aim to replace hardware filtering with software.


There are three kinds of filters:


  1. Chebyshev - best at roll-off

  2. Butterworth - best at passband ripple

  3. Bessel - best at step response and passband ripple


They can all be made from simple RC circuits, in particular the Sallen-Key Circuit, and all have different intended behaviors and trade-offs.


These circuits are great in theory, but difficult in practice (hard to put resistors on an integrated circuit), and so instead the switched capacitor filter is preferred, since it can be manufactured as an integrated circuit quite easily. Here, instead of the cutoff filter being related to capacitance, the cutoff filter is related to the clock frequency used to drive the switches.


Observe the following rolloffs per filter:



You'll notice the following characteristics per filter:


  1. Each filter has some rolloff in frequency, meaning you need some wiggle room in your Nyquist rate. If you want to keep everything below 5kHz, you can't just sample at 10kHz - you need to account for the rolloff of your chosen analog antialias filter! The Chebyshev filter performs best here.

  2. Each filter has some degree of passband ripple (the waviness in amplitude on the top of the passband), in particular the Chebyshev filter. The Butterworth and Bessel do well here - Bessel at the cost of roll-off.

  3. See below: each filter has some step response, e.g. how quickly and well the filter responds to a step increase in input. The Bessel filter does great; the other two overshoot and have some ringing frequencies:



Comments


bottom of page