FPGA Central - World's 1st FPGA / CPLD Portal

FPGA Central

World's 1st FPGA Portal

 

Go Back   FPGA Groups > NewsGroup > DSP

DSP comp.dsp newsgroup, mailing list

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-21-2006, 02:57 PM
pratik13
Guest
 
Posts: n/a
Default Effect of OverSampling

I'm new to DSP and also this group.
My question is "what can be the negative effect of Oversamling in terms o
Destortion in original signal?". As in undersampling two spectrum ar
overlapped and we may not be able to get original signal.. is that an
kind of effect in oversampling?


Reply With Quote
  #2 (permalink)  
Old 06-21-2006, 04:22 PM
steve
Guest
 
Posts: n/a
Default Re: Effect of OverSampling

pratik13 wrote:
> I'm new to DSP and also this group.
> My question is "what can be the negative effect of Oversamling in terms of
> Destortion in original signal?". As in undersampling two spectrum are
> overlapped and we may not be able to get original signal.. is that any
> kind of effect in oversampling?


I don't know in theory if there is, but oversampling requires the
consumption of extra resources, faster a/d, faster processor, more
power, more time, more money, also the performance of a given a/d
generally degrades at higher sampling rates (becomes more non-linear),
and requires more talent to make the board work (layout becomes more
critical), together these may cancel out any performance increase you
were expecting.

Reply With Quote
  #3 (permalink)  
Old 06-21-2006, 04:35 PM
Jerry Avins
Guest
 
Posts: n/a
Default Re: Effect of OverSampling

pratik13 wrote:
> I'm new to DSP and also this group.
> My question is "what can be the negative effect of Oversamling in terms of
> Destortion in original signal?". As in undersampling two spectrum are
> overlapped and we may not be able to get original signal.. is that any
> kind of effect in oversampling?


The only drawback is the need for extra computation. Up to a point, it
can make some computations easier.

The original signal is what it is. If it contains distortion, that will
be reproduced.

Jerry
--
Engineering is the art of making what you want from things you can get.
ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ
Reply With Quote
  #4 (permalink)  
Old 06-22-2006, 03:17 PM
Brad Griffis
Guest
 
Posts: n/a
Default Re: Effect of OverSampling

pratik13 wrote:
> I'm new to DSP and also this group.
> My question is "what can be the negative effect of Oversamling in terms of
> Destortion in original signal?". As in undersampling two spectrum are
> overlapped and we may not be able to get original signal.. is that any
> kind of effect in oversampling?
>
>


As you probably learned early in your DSP work, you can only sample data
with the highest frequency equal to half of your sampling rate. In
order to achieve/guarantee this you typically need an anti-aliasing
filter (i.e. an analog filter in front of the A/D). By oversampling the
signal you can have a simpler, cheaper anti-aliasing filter and then
implement a "brick wall filter" digitally which is cheap these days.

On a related note this technique is built into sigma-delta converters.
They do 1-bit sampling at a very fast rate, typically referred to as the
modulation frequency. That data is then put through a digital filter to
get the "normal" 16- or 24-bit data at the "sampling frequency" you're
accustomed to seeing. Generally that digital filter will get rid of any
frequencies above half the modulation frequency leaving you with a
alias-free output. So in the case of sigma-delta converters you
generally don't need an anti-aliasing filter as long as you don't have
signal energy above half the modulation frequency.

Brad
Reply With Quote
  #5 (permalink)  
Old 06-22-2006, 03:38 PM
steve
Guest
 
Posts: n/a
Default Re: Effect of OverSampling


Brad Griffis wrote:

> On a related note this technique is built into sigma-delta converters.
> They do 1-bit sampling at a very fast rate, typically referred to as the
> modulation frequency. That data is then put through a digital filter to
> get the "normal" 16- or 24-bit data at the "sampling frequency" you're
> accustomed to seeing. Generally that digital filter will get rid of any
> frequencies above half the modulation frequency leaving you with a
> alias-free output. So in the case of sigma-delta converters you
> generally don't need an anti-aliasing filter as long as you don't have
> signal energy above half the modulation frequency.
>
> Brad


So using a low speed sigma-delta converter (say 1Khz conversion rate
with 64Khz modulation frequency) would be similar in performance to
using a higher speed SAR converter (say 64Khz) with oversampling/brick
wall filter (assuming equivalent anti-aliasing filter)?

I have read various technical notes concerning sigma-delta converters
and can't really figure them out so I am unable to answer that question
for myself.

steve

Reply With Quote
  #6 (permalink)  
Old 06-23-2006, 01:10 AM
Brad Griffis
Guest
 
Posts: n/a
Default Re: Effect of OverSampling

steve wrote:
> Brad Griffis wrote:
>
>> On a related note this technique is built into sigma-delta converters.
>> They do 1-bit sampling at a very fast rate, typically referred to as the
>> modulation frequency. That data is then put through a digital filter to
>> get the "normal" 16- or 24-bit data at the "sampling frequency" you're
>> accustomed to seeing. Generally that digital filter will get rid of any
>> frequencies above half the modulation frequency leaving you with a
>> alias-free output. So in the case of sigma-delta converters you
>> generally don't need an anti-aliasing filter as long as you don't have
>> signal energy above half the modulation frequency.
>>
>> Brad

>
> So using a low speed sigma-delta converter (say 1Khz conversion rate
> with 64Khz modulation frequency) would be similar in performance to
> using a higher speed SAR converter (say 64Khz) with oversampling/brick
> wall filter (assuming equivalent anti-aliasing filter)?
>
> I have read various technical notes concerning sigma-delta converters
> and can't really figure them out so I am unable to answer that question
> for myself.
>
> steve
>


The "performance" involves a lot of things, i.e. you'd look at the
linearity through INL/DNL in addition to things like ENoB. From a
signal processing perspective you've got the right idea. A sigma delta
converter usually has graphs showing what the frequency response of the
digital filter looks like. In SD converters for applications like audio
that will generally look close to a brick wall filter with the cutoff at
half the modulation frequency.

Keep in mind that you're only getting 1-bit data at the modulation
frequency so it takes a lot of oversampling for the filtered data to
turn into say 16-bits. Also, because you have a digital filter there is
some settling time involved. For applications where you have a bunch of
channels muxed into one converter you're generally better off with a SAR
converter because you have to wait the specified settling time each time
you change inputs to the converter.

Brad
Reply With Quote
  #7 (permalink)  
Old 06-23-2006, 02:55 AM
Jerry Avins
Guest
 
Posts: n/a
Default Re: Effect of OverSampling

Brad Griffis wrote:

> ... For applications where you have a bunch of
> channels muxed into one converter you're generally better off with a SAR
> converter because you have to wait the specified settling time each time
> you change inputs to the converter.


Also for servos and such where delay leads to instability.

Jerry
--
Engineering is the art of making what you want from things you can get.
ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ
Reply With Quote
  #8 (permalink)  
Old 06-23-2006, 04:16 PM
Ikaro
Guest
 
Posts: n/a
Default One possible side effect...

Another possible negative side effect of oversampling not mention so
far is regarding spectral resolution.

If you are dealing with finite storage (ie, memory), you will get
better resolution by sampling at a lower frequency but for a longer
period of time, as opposed to sampling at the highest frequency avaible
for the shortest period of time. Since the spectral resolution is a
function of both the number of samples and the sampling frequency,
sampling at a lower frequency for a given number of points will yield
better spectral resolution.


-Ikaro


pratik13 wrote:
> I'm new to DSP and also this group.
> My question is "what can be the negative effect of Oversamling in terms of
> Destortion in original signal?". As in undersampling two spectrum are
> overlapped and we may not be able to get original signal.. is that any
> kind of effect in oversampling?


Reply With Quote
  #9 (permalink)  
Old 06-24-2006, 03:20 PM
emre
Guest
 
Posts: n/a
Default Re: One possible side effect...

I am afraid this information may be misleading for the novice. It is stil
worth emphasizing that as long as the fixed variable is duration (instea
of the number of signal samples), hence number of samples increase
proportional to oversampling, there will be no loss of spectra
resolution.

>Another possible negative side effect of oversampling not mention so
>far is regarding spectral resolution.
>
>If you are dealing with finite storage (ie, memory), you will get
>better resolution by sampling at a lower frequency but for a longer
>period of time, as opposed to sampling at the highest frequency avaible
>for the shortest period of time. Since the spectral resolution is a
>function of both the number of samples and the sampling frequency,
>sampling at a lower frequency for a given number of points will yield
>better spectral resolution.
>
>
>-Ikaro




Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
oversampling serializer? Muzaffer Kal FPGA 4 07-11-2008 04:34 PM
OFDM and oversampling 6.20 DSP 8 05-24-2006 07:47 PM
Oversampling and the FFT JohnReno DSP 5 04-05-2006 11:56 PM
Odd Oversampling ALuPin VHDL 9 04-20-2005 09:06 AM
Odd Oversampling ALuPin FPGA 12 04-20-2005 09:06 AM


All times are GMT +1. The time now is 01:29 AM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright 2008 @ FPGA Central. All rights reserved