Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Delta Modulator Quantization Noise

Status
Not open for further replies.

Matata

Newbie level 1
Joined
Apr 28, 2011
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,287
Hello,

I am trying to implement a behavioral model of a delta modulator in Matlab, consisting of an ideal comparator and a summing unit in the feedback path. Unfortunately the spectrum is not flat as expected and I get peaks at odd harmonics of the signal frequency (cf. attachment).
Does this behavior occur because the quantization noise is not white but correlated or where else does this come from?

Thanks a lot in advance!

Main program:
Code:
clear all;
close all;
clf;

N=17;              % Number of signal periods per Window
NT=2048;           % Number of samples per signal period
Nfft=N*NT;         % FFT-size (samples per window)
             

ampl=50;           % signal amplitude
Tsig=0.25;         % signal period in sec
fsig=1/Tsig;       % signal frequency

t0=Tsig/NT;        % sampling period (resolution in time domain)
fs=1/t0            % sampling frequency
T=N*Tsig;          % size of window (time domain) 
f0=1/T;            % Resolution in frequency domain

t=[0:Nfft-1]'*t0;  % time vector
f=[0:Nfft-1]'*f0;  % f-Vektor


%------------------------

feedbackgain=1;

pulse=zeros(Nfft,1);
sum_pulses=zeros(Nfft,1);    % reconstructed signal
iloop=zeros(Nfft,1);         % loop current 

Iin=ampl*sin(2*pi*fsig*t);   % input current

for i=1:Nfft
   if (i>1)
       iloop(i)=Iin(i)-sum_pulses(i-1)*feedbackgain; 
   else
       iloop(i)=Iin(i);     
   end
   [pulse(i)]=deltamodulator(iloop(i));
   if (i>1)
       sum_pulses(i)=sum_pulses(i-1)+pulse(i);
   else
       sum_pulses(i)=pulse(i);       
   end
end


figure(1)
subplot(311), plot(t,Iin);
title(['Input signal']);

subplot(312), plot(t,iloop);
title(['loop current']);

subplot(313)
plot(t,sum_pulses)
title(['reconstructed signal']);
xlabel(['time/s']);


figure(2)
R=fft(sum_pulses);
Prr=R.*conj(R);
plot(f,10*log10(Prr/max(Prr)));
title(['PSD, signal frequency= ',num2str(Tsig), 'Hz ,sampling frequency= ', num2str(fs),'Hz']);
xlabel(['frequency/Hz']);
ylabel(['dB']);

Deltamodulator:
Code:
function dm=deltamodulator(x)
   if(x>=0)
      pulse=1;
   else
      pulse=-1;
   end
%encoder
dm = pulse;
 

Attachments

  • spectrum.jpg
    spectrum.jpg
    25.9 KB · Views: 61

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top