1 / 36

EE 6332, Spring, 2014 Wireless Communication

EE 6332, Spring, 2014 Wireless Communication. Zhu Han Department of Electrical and Computer Engineering Class 4 Jan. 27 th , 2014. Outline. Review (important) RMS delay vs. coherent bandwidth Doppler spread vs. coherent time Slow Fading vs. Fast Fading

elpida
Download Presentation

EE 6332, Spring, 2014 Wireless Communication

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. EE 6332, Spring, 2014Wireless Communication Zhu Han Department of Electrical and Computer Engineering Class 4 Jan. 27th, 2014

  2. Outline • Review (important) • RMS delay vs. coherent bandwidth • Doppler spread vs. coherent time • Slow Fading vs. Fast Fading • Flat Fading vs. Frequency Selective Fading • Rayleigh and Ricean Distributions • Statistical Models

  3. Fading Distributions Describes how the received signal amplitude changes with time. Remember that the received signal is combination of multiple signals arriving from different directions, phases and amplitudes. With the received signal we mean the baseband signal, namely the envelope of the received signal (i.e. r(t)). It is a statistical characterization of the multipath fading. Two distributions Rayleigh Fading Ricean Fading

  4. Rayleigh Distributions Describes the received signal envelope distribution for channels, where all the components are non-LOS: i.e. there is no line-of–sight (LOS) component.

  5. Ricean Distributions Describes the received signal envelope distribution for channels where one of the multipath components is LOS component. i.e. there is one LOS component.

  6. Rayleigh Fading

  7. Rayleigh Fading

  8. Rayleigh Fading Distribution The Rayleigh distribution is commonly used to describe the statistical time varying nature of the received envelope of a flat fading signal, or the envelope of an individual multipath component. The envelope of the sum of two quadrature Gaussian noise signals obeys a Rayleigh distribution.  is the rms value of the received voltage before envelope detection, and 2 is the time-average power of the received signal before envelope detection.

  9. Rayleigh Fading Distribution The probability that the envelope of the received signal does not exceed a specified value of R is given by the CDF: rpeak= and p()=0.6065/

  10. Rayleigh PDF 0.6065/s mean = 1.2533s median = 1.177s variance = 0.4292s2 5s s 2s 3s 4s

  11. A typical Rayleigh fading envelope at 900MHz.

  12. Ricean Distribution When there is a stationary (non-fading) LOS signal present, then the envelope distribution is Ricean. The Ricean distribution degenerates to Rayleigh when the dominant component fades away.

  13. Ricean Fading Distribution When there is a dominant stationary signal component present, the small-scale fading envelope distribution is Ricean. The effect of a dominant signal arriving with many weaker multipath signals gives rise to the Ricean distribution. The Ricean distribution degenerates to a Rayleigh distribution when the dominant component fades away. The Ricean distribution is often described in terms of a parameter K which is defined as the ratio between the deterministic signal power and the variance of the multipath. K is known as the Ricean factor As A0, K  - dB, Ricean distribution degenerates to Rayleigh distribution.

  14. CDF Cumulative distribution for three small-scale fading measurements and their fit to Rayleigh, Ricean, and log-normal distributions.

  15. PDF Probability density function of Ricean distributions: K=-∞dB (Rayleigh) and K=6dB. For K>>1, the Ricean pdf is approximately Gaussian about the mean.

  16. Rice time series

  17. Nakagami Model Nakagami Model r: envelope amplitude Ω=<r2>: time-averaged power of received signal m: the inverse of normalized variance of r2 Get Rayleigh when m=1

  18. Small-scale fading mechanism Assume signals arrive from all angles in the horizontal plane 0<α<360 Signal amplitudes are equal, independent of α Assume further that there is no multipath delay: (flat fading assumption) Doppler shifts

  19. Small-scale fading: effect of Doppler in a multipath environment fm, the largest Doppler shift

  20. Carrier Doppler spectrum Spectrum Empirical investigations show results that deviate from this model Power Model Power goes to infinity at fc+/-fm

  21. Baseband Spectrum Doppler Faded Signal Cause baseband spectrum has a maximum frequency of 2fm

  22. Simulating Doppler/Small-scale fading

  23. Simulating Doppler fading Procedure

  24. Level Crossing Rate (LCR) Threshold (R) LCR is defined as the expected rate at which the Rayleigh fading envelope, normalized to the local rms signal level, crosses a specified threshold level R in a positive going direction. It is given by:

  25. Average Fade Duration Defined as the average period of time for which the received signal is below a specified level R. For Rayleigh distributed fading signal, it is given by:

  26. Fading Model: Gilbert-Elliot Model Fade Period Signal Amplitude Threshold Time t Bad (Fade) Good (Non-fade)

  27. Gilbert-Elliot Model 1/AFD Bad (Fade) Good (Non-fade) 1/ANFD The channel is modeled as a Two-State Markov Chain. Each state duration is memory-less and exponentially distributed. The rate going from Good to Bad state is: 1/AFD (AFD: Avg Fade Duration) The rate going from Bad to Good state is: 1/ANFD (ANFD: Avg Non-Fade Duration)

  28. Simulating 2-ray multipath a1 and a2 are independent Rayleigh fading 1 and 2 are uniformly distributed over [0,2)

  29. Simulating multipath with Doppler-induced Rayleigh fading

  30. Review

  31. Review

  32. Review

  33. Review

  34. Homework due 2/5 Communication toolbox TS, sample time, FD Doppler shift, K Rician factor, number of antenna NT=NR=2 awgn rayleighchan (TS, FD) ricianchan(TS, FD, K) stdchan: select 3 channels mimochan(NT, NR, TS, FD) Task 1: Plot channel characteristics for above channels Task 2: Plot BER for BPSK for above channels qammod and qamdemod berawgn berfading biterr

  35. Task 1 Example: ts = 0.1e-4; fd = 200; chan = stdchan(ts, fd, 'cost207TUx6'); chan.NormalizePathGains = 1; chan.StoreHistory = 1; y = filter(chan, ones(1,5e4)); plot(chan);

  36. Task 2 clear N = 10^6 % number of bits or symbols % Transmitter ip = rand(1,N)>0.5; % generating 0,1 with equal probability s = 2*ip-1; % BPSK modulation 0 -> -1; 1 -> 0 Eb_N0_dB = [-3:35]; % multiple Eb/N0 values for ii = 1:length(Eb_N0_dB) n = 1/sqrt(2)*[randn(1,N) + j*randn(1,N)]; % white gaussian noise, 0dB variance h = 1/sqrt(2)*[randn(1,N) + j*randn(1,N)]; % Rayleigh channel % Channel and noise Noise addition y = h.*s + 10^(-Eb_N0_dB(ii)/20)*n; % equalization yHat = y./h; % receiver - hard decision decoding ipHat = real(yHat)>0; % counting the errors nErr(ii) = size(find([ip- ipHat]),2); end simBer = nErr/N; % simulated ber theoryBerAWGN = 0.5*erfc(sqrt(10.^(Eb_N0_dB/10))); % theoretical ber EbN0Lin = 10.^(Eb_N0_dB/10); theoryBer = 0.5.*(1-sqrt(EbN0Lin./(EbN0Lin+1))); % plot close all figure semilogy(Eb_N0_dB,theoryBerAWGN,'cd-','LineWidth',2); hold on semilogy(Eb_N0_dB,theoryBer,'bp-','LineWidth',2); semilogy(Eb_N0_dB,simBer,'mx-','LineWidth',2); axis([-3 35 10^-5 0.5]) grid on legend('AWGN-Theory','Rayleigh-Theory', 'Rayleigh-Simulation'); xlabel('Eb/No, dB'); ylabel('Bit Error Rate'); title('BER for BPSK modulation in Rayleigh channel');

More Related