-
Filter by Topic
Release
Popular Topics
- List all discussions
Impulse Response of a SAW Sensor
|
Thread index | Previous thread | Next thread | Start a new discussion |
November 13, 2012 9:53pm UTC
Impulse Response of a SAW Sensor
Hi,
I've been working on a SAW Simulation for several months, i've been good using frequency response analysis approaches however i want to understand how this paper works
www.google.com.eg/url?sa=t&...7_5hNS_kf-gTc0c6cg&cad=rja
I've replicated the geometry and the conditions i used a step of 0.1ns and a total runtime of 200ns i've deconvoluted the output using matlab using this code
I = ifft(fft(v)./fft(i) ,'symmetric')
y=I;
Vin = 0.5;
Samplingtime = 0.1e-9
L=length(y);
NFFT = 2^nextpow2(L);
Y = fft(y,NFFT)/L;
Fs = 1/(Samplingtime)
f = Fs/2*linspace(0,1,NFFT/2+1);
%plot(f,2*abs(Y(1:NFFT/2+1))); %Plots Spectrum
Vf=2*abs(Y(1:NFFT/2+1));
Vf= Vf./Vin;
title('Insertion Loss')
xlabel('Frequency (Hz)')
ylabel('Insertion Loss(dB)')
plot(f,20*log10(Vf)); %Plots Insertion Loss
however i still can't get the same results as in the paper any suggestions?
thanks
Reply | Reply with Quote | Send private message | Report Abuse
Rules and guidelines

