Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Multirate DSP, part 3: ADC oversampling


Order this book today at www.elsevierdirect.com or by calling 1-800-545-2522 and receive an additional 20% discount. Use promotion code 92562 when ordering. Offer expires 06/30/2008. Valid only in North America.

Part 2 show how to change the sampling rate by a non-integer factor. It also looks at multistage decimation and polyphase filters. Part 4 shows how to undersample bandpass signals.


12.3 Oversampling of Analog-to-Digital Conversion
Oversampling of the analog signal has become popular in DSP industry to improve resolution of analog-to-digital conversion (ADC). Oversampling uses a sampling rate, which is much higher than the Nyquist rate. We can define an oversampling ratio as

fs/(2fmax) >> 1. (12.14)

The benefits from an oversampling ADC include:

  1. helping to design a simple analog anti-aliasing filter before ADC, and
  2. reducing the ADC noise floor with possible noise shaping so that a low-resolution ADC can be used.

12.3.1 Oversampling and Analog-to-Digital Conversion Resolution
To begin with developing the relation between oversampling and ADC resolution, we first summarize the regular ADC and some useful definitions discussed in Chapter 2:

Quantization noise power = σq2= Δ2/12 (12.15)

Quantization step = Δ = A/(2n) (12.16)

where

A = full range of the analog signal to be digitized
n = number of bits per sample (ADC resolution).

Substituting Equation (12.16) into Equation (12.15), we have:

Quantization noise power = σq2= (A2/12) × 2-2n. (12.17)

The power spectral density of the quantization noise with an assumption of uniform probability distribution is shown in Figure 12-23. Note that this assumption is true for quantizing a uniformly distributed signal in a full range with a sufficiently long duration. It is not generally true in practice. See research papers by Lipshitz et al. (1992) and Maher (1992). However, using the assumption will guide us for some useful results for oversampling systems.


Figure 12-23. Regular ADC system.

The quantization noise power is the area obtained from integrating the power spectral density function in the range of –fs/2 to fs/2. Now let us examine the oversampling ADC, where the sampling rate is much bigger than that of the regular ADC; that is fs >> 2fmax. The scheme is shown in Figure 12-24.


Figure 12-24. Oversampling ADC system.

As we can see, oversampling can reduce the level of noise power spectral density. After the decimation process with the decimation filter, only a portion of quantization noise power in the range from –fmax to fmax is kept in the DSP system. We call this an in-band frequency range. In Figure 12-24, the shaded area, which is the quantization noise power, is given by

Assuming that the regular ADC shown in Figure 12-23 and the oversampling ADC shown in Figure 12-24 are equivalent, we set their quantization noise powers to be the same to obtain

(A2/12) × 2–2n = ((2fmax)/fs) × (A2/12) × 2–2m. (12.19)

Equation (12.19) leads to two useful equations for applications:

n = m + 0.5 × log2 (fs/(2fmax)) (12.20) and

fs = 2fmax × 22(nm), (12.21)

where

fs = sampling rate in the oversampling DSP system
fmax = maximum frequency of the analog signal

m = number of bits per sample in the oversampling DSP system
n = number of bits per sample in the regular DSP system using the minimum sampling rate

From Equation (12.20) and given the number of bits (m) used in the oversampling scheme, we can determine the number of bits per sample equivalent to the regular ADC. On the other hand, given the number of bits in the oversampling ADC, we can determine the required oversampling rate so that the oversampling ADC is equivalent to the regular ADC with the larger number of bits per sample (n). Let us look at the following examples.

Example 12.7.
Given an oversampling audio DSP system with the following attributes, determine the oversampling rate to improve the ADC to 16-bit resolution:

  • Maximum audio input frequency of 20 kHz and
  • ADC resolution of 14 bits,

Solution: Based on the specifications, we have

fmax = 20 kHz, m = 14 bits, and n = 16 bits.

Using Equation (12.21) leads to

fs = 2fmax × 22(nm) = 2 × 20 × 22(16 – 14) = 640 kHz.

Since fs/(2fmax) = 24, we see that each doubling of the minimum sampling rate (2fmax = 40 kHz) will increase the resolution by a half bit.

Example 12.8.
Given an oversampling audio DSP system with the following attributes, determine the equivalent ADC resolution:

  • Maximum audio input frequency = 4 kHz
  • ADC resolution = 8 bits
  • Sampling rate = 80 MHz.

Solution: Since fmax = 4 kHz, fs = 80 kHz, and m = 8 bits, applying Equation (12.20) yields

n = m + 0.5 × log2 (fs/(2fmax)) = 8 + 0.5 × log2 (80000 kHz/(2 × 4 kHz)) ≈ 15 bits.


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.