Modul 3 - SmallScaleFading - WCS - REVISI
Modul 3 - SmallScaleFading - WCS - REVISI
Modul 3
Small Scale Fading
a.
b.
c.
Subject
Multipath Components
Radio Signals Arriving from different directions to receiver
Component 1
Component 2
Component N
Multipath Components
At a receiver point
Multipath Propagation
In general, the received signal at the receiver point is the sum of the direct
signal and the number of signals reflected from various objects. In mobile
communication, reflection will be caused by:
Surface terrain
Buildings
Moving objects as an example vehicle
Wave reflection magnitude and phase will change, depending on the
reflection coefficient, the wave trajectory, and also depending on the angle of
arrival of the wave. Thus, the direct signal and reflected signal will vary in
terms of:
Amplitude, depending on the magnitude of reflection coefficient
Phase, depending on the phase change of reflection and the
path distance difference between the direct wave and the
reflected wave
The worst condition occurs when the direct wave and reflection wave has
the same magnitude and different phases 180o. In such conditions, between
the direct wave and the reflected waves will occur eliminate each other
(complete cancellation)
Modul 3 Small Scale Fading
Multipath Propagation
o
Phase difference of 180 occur if there are differences in the path distance
traveled by the waves as follows:
(2n 1)
d
2
The best condition is achieved if the direct wave and reflection wave has the
same phase or a multiple of 360o (In Phase Combination). Difference distance
direct wave and reflection on this condition can be expressed as follows:
d n
where:
n
= 1,2, 3, etct
= wave length
Amplitudo
Frekuensi
Waktu
Parameters:
probability of fades
duration of fades
bandwidth of fades
10
11
Maximum excess delay digitize into N groups of paths, each path separated
by an interval of .
The model used to analyze signals with BW < 1/(2).
The total power received is the sum of all multipath components, if the
components can be resolved / processed.
If the signal BW <<BW multipath channel can be overcome
If the signal BW>> BW al multipath channel can not be overcome
SIRCIM (Simulation of Indoor Radio Channel IMpulse response)
SMRCIM (Simulation of Mobile Radio Channel IMpulse response.)
Modul 3 Small Scale Fading
12
x(t)
y(d,t)
h(d,t)
y (d , t ) x ( t ) h (d , t )
x ()h (d, t )d
y( v.t , t )
x ()h (v.t, t )d
y( t ) x ( t ) h ( v.t , t )
x ()h (v.t, t )d
13
e r t
N
k 1
a k cos2f 0 t k
Where,
f0 = carrier frequency
N = number of track multipath
ak , k = amplitude and phase of the kth
multipath component-k
e r t
N
k 1
a k cos2f 0 t k
Recall :
13
14
e r t cos2f 0 t
a
k 1 k
cos k sin 2f 0 t
a sin
k 1 k
Y
k
r
e r t X cos2f 0 t Y sin 2f 0 t
Asuming :
N Large N (many paths) theoretically infinite, practically > 6
k uniformly distributed in (0 to 2)
ak respectively can be compared (no one is quite dominant)
X and Y are mutually independent identical distributed Gaussian
Identically Independently Distributed (IID)
Then :
Sinyal Envelope r X 2 Y 2
10/10/2012
Modul 3 Small Scale Fading
RAYLEIGH distibuted!!
14
15
Mobile Radio
Propagation
r
r2
2 exp
2
p r
2
0
0 r
r 0
16
r
r2
2 exp 2
pr
2
0 r
Probability
Density
p(r)
r 0
Threshold
Where,
Amplitude (r)
= rms value of the received signal before envelope detection
2 states the average power of the envelope detection
Then, the probability that the signal envelope does not exceed a specified value
R, can be derived as follows :
R
R2
P(R ) Pr r R pr dr 1 exp 2
2
0
10/10/2012
Modul 3 Small Scale Fading
17
rmean
Er r pr dr
1.2533
2
0
E r E r r pr dr
2
r
2 0.4292 2
2
rmedian
pr dr r
median
1.177
10/10/2012
Modul 3 Small Scale Fading
17
18
reflections
TX
e r t C cos 2f 0 t
Where
a
k 1
RX
cos2f 0 t k
10/10/2012
Modul 3 Small Scale Fading
18
19
r
r 2 C2
2 exp
2
pr
2
. I Cr
A 0, r
r 0
C
K 2
2
or , in dB
10/10/2012
Modul 3 Small Scale Fading
C2
K dB 10 log 2
2
19
20
K Values
10/10/2012
Modul 3 Small Scale Fading
20
21
FLAT FADING
Klasifikasi
Small Scale
Fading
Berdasarkan
atas multipath
Time Delay
Spread
FREQUENCY
SELECTIVE FADING
BW sinyal > BW koheren
Delay spread > periode simbol
SMALL SCALE
FADING
Berdasarkan
atas Doppler
Spread
FAST FADING
Doppler spread >>
Coherence time < periode
simbol
Variasi kanal lebih cepat dari
variasi sinyal baseband
SLOW FADING
Doppler spread <<
Coherence time > periode
simbol
Variasi kanal lebih lambat dari
variasi sinyal baseband
22
Modul 3
4 Small Scale Fading
N = 34;
N0 = (N/2 - 1)/2;
alpha = pi/4;
xc = zeros(len,1);
xs = zeros(len,1);
sc = sqrt(2)*cos(alpha);
ss = sqrt(2)*sin(alpha);
ts = 0:len-1;
ts = ts'.*T + round(rand(1,1)*10000)*T;
wd = 2*pi*fd;
xc = sc.*cos(wd.*ts);
xs = ss.*cos(wd.*ts);
for lx =1:N0
wn = wd*cos(2*pi*lx/N);
xc = xc + (2*cos(pi*lx/N0)).*cos(wn.*ts);
xs = xs + (2*sin(pi*lx/N0)).*cos(wn.*ts);
end;
y = (xc + i.*xs)./sqrt(N0+1);
%plot fading signal
figure(1);
plot(ts*T,abs(y));
title('Fading Signals')
xlabel('time (sec)')
ylabel('amplitude')
23