BER calculation. Vahid Meghdadi reference: Wireless Communications by Andrea Goldsmith. January SER and BER over Gaussian channel
|
|
|
- Eleanore Patterson
- 9 years ago
- Views:
Transcription
1 BER calculation Vahid Meghdadi reference: Wireless Communications by Andrea Goldsmith January 8 SER and BER over Gaussian channel. BER for BPSK modulation In a BPSK system the received signal can be written as: y = x + n () where x { A, A}, n CN (, σ ) and σ = N. The real part of the above equation is y re = x + n re where n re N (, σ /) = N (, N /). In BPSK constellation d min = A and γ b is defined as E b /N and sometimes it is called SNR per bit. With this definition we have: So the bit error probability is: γ b := E b N = A N = d min 4N () P b = P {n > A} = A πσ / e This equation can be simplified using Q-function as: P b = Q d ( ) min dmin = Q = Q γb N N where the Q function is defined as:. BER for QPSK Q(x) = π x x σ / (3) (4) e x dx (5) QPSK modulation consists of two BPSK modulation on in-phase and quadrature components of the signal. The corresponding constellation is presented on figure. The BER of each branch is the same as BPSK: P b = Q γb (6)
2 Figure : QPSK constellation The symbol probability of error (SER) is the probability of either branch has a bit error: P s = [ Q γb ] (7) Since the symbol energy is split between the two in-phase and quadrature components, γ s = γ b and we have: P s = [ Q ( γ s )] (8) We can use the union bound to give an upper bound for SER of QPSK. Regarding figure, condition that the symbol zero is sent, the probability of error is bounded by the sum of probabilities of, and 3. We can write: P s Q(d / N ) + Q(d / N ) + Q(d 3 / N ) (9) = Q(A/ N ) + Q( A/ N ) () Since γ s = γ b = A /N, we can write: P s Q( γ s ) + Q( γ s ) 3Q( γ s ) () Using the tight approximation of Q function for z : Q(z) z π e z / () we obtain: P s 3 πγs e.5γs (3) Using Gray coding and assuming that for high signal to noise ratio the errors occur only for the nearest neighbor, P b can be approximated from P s by P b P s /.
3 Figure : MPSK constellation.3 BER for MPSK signaling For MPSK signaling we can calculate easily an approximation of SER using nearest neighbor approximation. Using figure, the symbol error probability can be approximated by: ( ) ( dmin A sin π ) M P s Q = Q = Q γs sin(π/m) (4) N N This approximation is only good for high SNR..4 BER for QAM constellation The SER for a rectangular M-QAM (6-QAM, 64-QAM, 56-QAM etc) with size L = M can be calculated by considering two M-PAM on in-phase and quadrature components (see figure 3 for 6-QAM constellation). The error probability of QAM symbol is obtained by the error probability of each branch (M-PAM) and is given by: P s = ( ) (sqrtm ) sqrtm Q 3γs (5) M If we use the nearest neighbor approximation for an M-QAM rectangular constellation, there are 4 nearest neighbors with distance d min. So the SER for high SNR can be approximated by: c (6) In order to calculate the mean energy per transmitted symbol, it can be seen that E s = M A i (7) M i= 3
4 Figure 3: 6-QAM constellation Modulation P s (γ s ) P b (γ b ) BPSK P b = Q γ b QPSK P s Q ( ) γs P b Q γ b MPSK P s Q ( γ s sin ( )) π M P b log M Q ( γ b log M sin ( )) π M M-QAM P s 4Q 3γs M P b 4 log M Q 3γb log M M Table : Approximate symbol and bit error probabilities for coherent modulation Using the fact that A i = (a i + b i ) and a i and b i {i L} for i =,..., L. After some simple calculations we obtain: E s = d min L L (i L) (8) i= For example for 6-QAM and d min = the E s =. For 64-QAM and d min = the E s =..5 conclusion The approximations or exact values for SER has the following form: P s (γ s ) α M Q βm γ s (9) where α M and β M depend on the type of approximation and the modulation type. In the table the values for α M and β M are semmerized for common modulations. We can also note that the bit error probability has the same form as for SER. It is: P b (γ b ) ˆα M Q ˆβ M γ b () where ˆα M = α M / log M and ˆβ M = β M / log M. Note: γ s = E s /N, γ b = E b /N, γ b = 4 γs log M and P b Ps log M.
5 .6 Appendix In this appendix the reference curve for AWGN channel is presented in figure 4. As we expected, the results for BPQK and QPSK are the same. Gaussian Channel BPSK QPSK 8PSK 6QAM 3 BER E b /N (db) Figure 4: BER over AWGN channel for BPSK, QPSK, 8PSK and 6QAM The following matlab program illustrates the BER calculations for BPSK over an AWGN channel. %BPSK BER const=[ -]; size=; iter_max=; EbN_min=; EbN_max=; SNR=[];BER=[]; for EbN = EbN_min:EbN_max EbN_lin=.^(.*EbN); noise_var=.5/(ebn_lin); % s^=n/ iter = ; err = ; while (iter <iter_max && err <), bits=randsrc(,size,[ ]); s=const(bits+); x = s + sqrt(noise_var)*randn(,size); bit_hat=(-sign(x)+)/; err = err + sum(bits ~= bit_hat); iter = iter + ; 5
6 end SNR =[SNR EbN]; BER = [BER err/(size*iter)]; end semilogy(snr,ber);grid;xlabel( E_bN_ );ylabel( BER ); title( BPSK over AWGN channel ); The following program uses some advanced functions of matlab to evaluate the symbol error rate for QPSK modulation: M = 4; % Alphabet size EbN_min=;EbN_max=;step=; SNR=[];SER=[]; for EbN = EbN_min:step:EbN_max SNR_dB=EbN + 3; %for QPSK Eb/N=.5*Es/N=.5*SNR x = randint(,,m); y=modulate(modem.qammod(m),x); ynoisy = awgn(y,snr_db, measured ); z=demodulate(modem.qamdemod(m),ynoisy); [num,rt]= symerr(x,z); SNR=[SNR EbN]; SER=[SER rt]; end; semilogy(snr,ser);grid;titel( Symbol error rate for QPSK over AWGN ); xlabel( E_b/N_ );ylabel( SER ); SER and BER over fading channel. PDF-based approach for binary signal A fading channel can be considered as an AWGN with a variable gain. The gain itself is considered as a RV with a given pdf. So the average BER can be calculated by averaging BER for instantaneous SNR over the distribution of SNR: P b (E) = P b (E γ)p γ (γ)dγ The BER is expressed by a Q-function as seen in previous chapter: P b (E) = where g = for the case of coherent BPSK. Q( gγ)p γ (γ)dγ () Example. Rayleigh fading channel with coherent detection: The received signal in a Rayleigh fading channel is of the form: y = hx + w () Digital Communication over Fading Channel by Simon and Alouini 6
7 where h is the channel attenuation with normal distribution h CN (, ) and n is a white additive noise w CN (, N ). The coherent receiver constructs the following metric from the received signal: h y = h x + h w (3) Using BPSK modulation and since the information are real, only the real part of the equation is of interest. So the following sufficient statistic is used for decision at the receiver. { } h R h y = h x + n (4) The noise n has the same statistics as Rw because h / h = exp(jθ) with θ uniformly distributed in (, π), therefore n CN (, N /). This equation shows that we have a normal AWGN channel with the signal scaled by h. The bit error probability as seen before for this case, given h, will be: P b = Q h γ b Now, we compute the SER by averaging this BER over the distribution of h. Since h is complex Gaussian, the distribution of r = h will be exponential with: P r (r) = d ( P (h dr r + h i < r) ) ( = d π ) r dr π/ e x xdxdθ = d ( e r ) dr = e r U(r) Therefore the signal-to-noise-ratio distribution γ = h γ b will be: p γ (γ) = γ b e γ/γ b The error probability can be calculated by: P b = Q( γ)p γ (γ)dγ = Q( γ) γ b e γ/γ b dγ Using the following form of Q-function and MGF function, the integral can eb calculated. π/ x Q(x) = exp( π sin θ )dθ p b = ( ) γb + γ b 7
8 Example. Consider a SIMO system with L receive antennas. Each branch has a SNR per bit of γ l and therefore the SNR at the output of MRC combiner is γ t = L l= γ l. Suppose a Rayleigh channel, the pdf of SNR for each channel will be (supposing i.i.d. channels): p γl (γ l ) = γ e γ l/ γ At the output of combiner, the SNR follows the distribution of chi-square (or gamma) with L degrees of freedom: p γt (γ t ) = (L )! γ L γl t e γt/ γ The average probability can be calculated using the integration by part and resulting in the following formula: ( µ P b (E) = ) L L l= ( L + l l ) ( + µ ) l. MGF-based approach.. Binary PSK We can use the other representation of Q-function to simplify the calculations. Q(x) = x ) exp ( y dy = π π Therefore the equation (5) can be written as: P b (E {γ l } L l=) = π π/ π/ exp( gγ t sin φ )dφ = π/ π ) exp ( x sin dθ θ L l= exp( gγ l sin )dφ (5) φ This form of Q-function is more convenient because it allows us to average first over the individual distributions of γ l and then perform the integral over φ. L P b (E) =... P b ({γ l } L l=) p γl (γ l )dγ dγ...dγ L (6) Using (5) in (6) and changing the order of integration gives: P b (E) = π π/ l= l= L ( M γl g ) sin dφ (7) φ 8
9 .. MPSK For MPSK signaling the SER given all the SNRs is: where g = sin (π/m). P s (E {γ l } L l=) = π P s (E {γ l } L l=) = π (M )π/m (M )π/m ( exp gγ ) t sin dφ (8) φ L l= ( exp gγ ) l sin dφ (9) φ 9
Digital Modulation. David Tipper. Department of Information Science and Telecommunications University of Pittsburgh. Typical Communication System
Digital Modulation David Tipper Associate Professor Department of Information Science and Telecommunications University of Pittsburgh http://www.tele.pitt.edu/tipper.html Typical Communication System Source
M-ary Symbol Error Outage Over Nakagami-m Fading Channels in Shadowing Environments
1 M-ary Symbol Error Outage Over Nakagami-m Fading Channels in Shadowing Environments Philippe Mary, Mischa Dohler, Jean-Marie Gorce, Guillaume Villemaud and Marylin Arndt P. Mary, M. Arndt are with France
IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 55, NO. 1, JANUARY 2007 341
IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 55, NO. 1, JANUARY 2007 341 Multinode Cooperative Communications in Wireless Networks Ahmed K. Sadek, Student Member, IEEE, Weifeng Su, Member, IEEE, and K.
PHASE ESTIMATION ALGORITHM FOR FREQUENCY HOPPED BINARY PSK AND DPSK WAVEFORMS WITH SMALL NUMBER OF REFERENCE SYMBOLS
PHASE ESTIMATION ALGORITHM FOR FREQUENCY HOPPED BINARY PSK AND DPSK WAVEFORMS WITH SMALL NUM OF REFERENCE SYMBOLS Benjamin R. Wiederholt The MITRE Corporation Bedford, MA and Mario A. Blanco The MITRE
Performance analysis of bandwidth efficient coherent modulation schemes with L-fold MRC and SC in Nakagami-m fading channels
Title Performance analysis of bandwidth efficient coherent modulation schemes with L-fold MRC and SC in Nakagami-m fading channels Author(s) Lo, CM; Lam, WH Citation Ieee International Symposium On Personal,
BER Performance Analysis of SSB-QPSK over AWGN and Rayleigh Channel
Performance Analysis of SSB-QPSK over AWGN and Rayleigh Channel Rahul Taware ME Student EXTC Department, DJSCOE Vile-Parle (W) Mumbai 056 T. D Biradar Associate Professor EXTC Department, DJSCOE Vile-Parle
Implementation of Digital Signal Processing: Some Background on GFSK Modulation
Implementation of Digital Signal Processing: Some Background on GFSK Modulation Sabih H. Gerez University of Twente, Department of Electrical Engineering [email protected] Version 4 (February 7, 2013)
Chap#5 (Data communication)
Chap#5 (Data communication) Q#1: Define analog transmission. Normally, analog transmission refers to the transmission of analog signals using a band-pass channel. Baseband digital or analog signals are
Contents. A Error probability for PAM Signals in AWGN 17. B Error probability for PSK Signals in AWGN 18
Contents 5 Signal Constellations 3 5.1 Pulse-amplitude Modulation (PAM).................. 3 5.1.1 Performance of PAM in Additive White Gaussian Noise... 4 5.2 Phase-shift Keying............................
Selection of data modulation techniques in spread spectrum systems using modified processing gain definition
HAIT Journal of Science and Engineering, Series: Engineering 2 (1), pp. xxx-xxx Copyright c 2004 Holon Academic Institute of Technology Selection of data modulation techniques in spread spectrum systems
Achievable Secrecy Rates in Physical Layer Secure Systems with a Helping Interferer
International Conference on Computing, Networking and Communications, Communications and Information Security Symposium Achievable Secrecy Rates in Physical Layer Secure Systems with a Helping Interferer
Log-Likelihood Ratio-based Relay Selection Algorithm in Wireless Network
Recent Advances in Electrical Engineering and Electronic Devices Log-Likelihood Ratio-based Relay Selection Algorithm in Wireless Network Ahmed El-Mahdy and Ahmed Walid Faculty of Information Engineering
MODULATION Systems (part 1)
Technologies and Services on Digital Broadcasting (8) MODULATION Systems (part ) "Technologies and Services of Digital Broadcasting" (in Japanese, ISBN4-339-62-2) is published by CORONA publishing co.,
EE4367 Telecom. Switching & Transmission. Prof. Murat Torlak
Path Loss Radio Wave Propagation The wireless radio channel puts fundamental limitations to the performance of wireless communications systems Radio channels are extremely random, and are not easily analyzed
Appendix D Digital Modulation and GMSK
D1 Appendix D Digital Modulation and GMSK A brief introduction to digital modulation schemes is given, showing the logical development of GMSK from simpler schemes. GMSK is of interest since it is used
Diversity and Degrees of Freedom in Wireless Communications
1 Diversity and Degrees of Freedom in Wireless Communications Mahesh Godavarti Altra Broadband Inc., [email protected] Alfred O. Hero-III Dept. of EECS, University of Michigan [email protected]
Lezione 6 Communications Blockset
Corso di Tecniche CAD per le Telecomunicazioni A.A. 2007-2008 Lezione 6 Communications Blockset Ing. Marco GALEAZZI 1 What Is Communications Blockset? Communications Blockset extends Simulink with a comprehensive
ADVANCED APPLICATIONS OF ELECTRICAL ENGINEERING
Development of a Software Tool for Performance Evaluation of MIMO OFDM Alamouti using a didactical Approach as a Educational and Research support in Wireless Communications JOSE CORDOVA, REBECA ESTRADA
Implementing Digital Wireless Systems. And an FCC update
Implementing Digital Wireless Systems And an FCC update Spectrum Repacking Here We Go Again: The FCC is reallocating 600 MHz Frequencies for Wireless Mics 30-45 MHz (8-m HF) 174-250 MHz (VHF) 450-960 MHz
Public Switched Telephone System
Public Switched Telephone System Structure of the Telephone System The Local Loop: Modems, ADSL Structure of the Telephone System (a) Fully-interconnected network. (b) Centralized switch. (c) Two-level
Comparison of Network Coding and Non-Network Coding Schemes for Multi-hop Wireless Networks
Comparison of Network Coding and Non-Network Coding Schemes for Multi-hop Wireless Networks Jia-Qi Jin, Tracey Ho California Institute of Technology Pasadena, CA Email: {jin,tho}@caltech.edu Harish Viswanathan
Chapter 1 Introduction
Chapter 1 Introduction 1. Shannon s Information Theory 2. Source Coding theorem 3. Channel Coding Theory 4. Information Capacity Theorem 5. Introduction to Error Control Coding Appendix A : Historical
Capacity Limits of MIMO Channels
Tutorial and 4G Systems Capacity Limits of MIMO Channels Markku Juntti Contents 1. Introduction. Review of information theory 3. Fixed MIMO channels 4. Fading MIMO channels 5. Summary and Conclusions References
Part I: Frequency Offset Acquisition and Tracking Algorithms Mohamed K. Nezami Mnemonics Inc. 3900 Dow Rd, Melbourne, FL 32934
Part I: Frequency Offset Acquisition and Tracking Algorithms Mohamed K. Nezami Mnemonics Inc. 3900 Dow Rd, Melbourne, FL 32934 I. Introduction Wireless receivers process signals that bear information as
5 Capacity of wireless channels
CHAPTER 5 Capacity of wireless channels In the previous two chapters, we studied specific techniques for communication over wireless channels. In particular, Chapter 3 is centered on the point-to-point
Communication on the Grassmann Manifold: A Geometric Approach to the Noncoherent Multiple-Antenna Channel
IEEE TRANSACTIONS ON INFORMATION THEORY, VOL. 48, NO. 2, FEBRUARY 2002 359 Communication on the Grassmann Manifold: A Geometric Approach to the Noncoherent Multiple-Antenna Channel Lizhong Zheng, Student
1 Multi-channel frequency division multiplex frequency modulation (FDM-FM) emissions
Rec. ITU-R SM.853-1 1 RECOMMENDATION ITU-R SM.853-1 NECESSARY BANDWIDTH (Question ITU-R 77/1) Rec. ITU-R SM.853-1 (1992-1997) The ITU Radiocommunication Assembly, considering a) that the concept of necessary
Lecture 8: Signal Detection and Noise Assumption
ECE 83 Fall Statistical Signal Processing instructor: R. Nowak, scribe: Feng Ju Lecture 8: Signal Detection and Noise Assumption Signal Detection : X = W H : X = S + W where W N(, σ I n n and S = [s, s,...,
BEST RELAY SELECTION METHOD FOR DETECT AND FORWARD AIDED COOPERATIVE WIRELESS NETWORK
BEST RELAY SELECTION METHOD FOR DETECT AND FORWARD AIDED COOPERATIVE WIRELESS NETWORK Nithin S. and M. Kannan Department of Electronics Engineering, Madras Institute of Technology, Anna University, Chennai,
PAPR and Bandwidth Analysis of SISO-OFDM/WOFDM and MIMO OFDM/WOFDM (Wimax) for Multi-Path Fading Channels
PAPR and Bandwidth Analysis of SISO-OFDM/WOFDM and MIMO OFDM/WOFDM (Wimax) for Multi-Path Fading Channels Ahsan Adeel Lecturer COMSATS Institute of Information Technology Islamabad Raed A. Abd-Alhameed
Statistics and System Performance Metrics for the Two Wave With Diffuse Power Fading Model
1 Statistics and System Performance Metrics for the Two Wave With Diffuse Power Fading Model Milind Rao, F. Javier Lopez-Martinez and Andrea Goldsmith Wireless Systems Lab, Electrical Engineering Department
The Effect of Network Cabling on Bit Error Rate Performance. By Paul Kish NORDX/CDT
The Effect of Network Cabling on Bit Error Rate Performance By Paul Kish NORDX/CDT Table of Contents Introduction... 2 Probability of Causing Errors... 3 Noise Sources Contributing to Errors... 4 Bit Error
Digital Video Broadcasting By Satellite
Digital Video Broadcasting By Satellite Matthew C. Valenti Lane Department of Computer Science and Electrical Engineering West Virginia University U.S.A. Apr. 2, 2012 ( Lane Department LDPCof Codes Computer
ISI Mitigation in Image Data for Wireless Wideband Communications Receivers using Adjustment of Estimated Flat Fading Errors
International Journal of Engineering and Management Research, Volume-3, Issue-3, June 2013 ISSN No.: 2250-0758 Pages: 24-29 www.ijemr.net ISI Mitigation in Image Data for Wireless Wideband Communications
Bit Error Rate Performance Analysis on Modulation Techniques of Wideband Code Division Multiple Access
22 Bit Error Rate Performance Analysis on Modulation Techniques of Wideband Code Division Multiple Access M. A. Masud, M. Samsuzzaman, M. A.Rahman Abstract - In the beginning of 21 st century there has
Scheduling and capacity estimation in LTE. Olav Østerbø, Telenor CD (Corporate Development) ITC-23, September 6-8, 2011, San Francisco
Scheduling and capacity estimation in LTE Olav Østerbø, Telenor CD (Corporate Development) Agenda Introduction Obtainable bitrate as function of SINR Radio channel propagation model Radio signal fading
%Part of Telecommunication simulations course, Spring 2006 %Harri Saarnisaari, CWC
%Part of Telecommunication simulations course, Spring 2006 %Harri Saarnisaari, CWC %We simulate uncoded BER of BPSK modulated data as a function of SNR %-in an AWGN channel %-in a Rayleigh fading channel
Intro to Practical Digital Communications
Intro to Practical Digital Communications Lecture 2 Vladimir Stojanović 6.973 Communication System Design Spring 2006 Massachusetts Institute of Technology Discrete data transmission Messages are encoded
Performance Improvement of DS-CDMA Wireless Communication Network with Convolutionally Encoded OQPSK Modulation Scheme
International Journal of Advances in Engineering & Technology, Mar 0. IJAET ISSN: 3-963 Performance Improvement of DS-CDMA Wireless Communication Networ with Convolutionally Encoded OQPSK Modulation Scheme
MODULATION AND DETECTION TECHNIQUES FOR DWDM SYSTEMS*
MODULATION AND DETECTION TECHNIQUES FOR DWDM SYSTEMS* Invited Paper Joseph M. Kahn 1 and Keang-Po Ho 2 1 Stanford University, Department of Electrical Engineering, Stanford, CA 94305 USA, e-mail: [email protected];
Department of Electrical and Computer Engineering Ben-Gurion University of the Negev. LAB 1 - Introduction to USRP
Department of Electrical and Computer Engineering Ben-Gurion University of the Negev LAB 1 - Introduction to USRP - 1-1 Introduction In this lab you will use software reconfigurable RF hardware from National
CDMA Network Planning
CDMA Network Planning by AWE Communications GmbH www.awe-com.com Contents Motivation Overview Network Planning Module Air Interface Cell Load Interference Network Simulation Simulation Results by AWE Communications
Introduction to Detection Theory
Introduction to Detection Theory Reading: Ch. 3 in Kay-II. Notes by Prof. Don Johnson on detection theory, see http://www.ece.rice.edu/~dhj/courses/elec531/notes5.pdf. Ch. 10 in Wasserman. EE 527, Detection
CNR Requirements for DVB-T2 Fixed Reception Based on Field Trial Results
CNR Requirements for DVB-T2 Fixed Reception Based on Field Trial Results Iñaki Eizmendi, Gorka Berjon-Eriz, Manuel Vélez, Gorka Prieto, Amaia Arrinda This letter presents the C/N requirements for DVB-T2
AN INTRODUCTION TO DIGITAL MODULATION
AN INTRODUCTION TO DIGITAL MODULATION This article provides readers a simple overview of the various popular methods used in modulating a digital signal. The relative merits of each of these modulation
MIMO: What shall we do with all these degrees of freedom?
MIMO: What shall we do with all these degrees of freedom? Helmut Bölcskei Communication Technology Laboratory, ETH Zurich June 4, 2003 c H. Bölcskei, Communication Theory Group 1 Attributes of Future Broadband
A New Digital Communications Course Enhanced by PC-Based Design Projects*
Int. J. Engng Ed. Vol. 16, No. 6, pp. 553±559, 2000 0949-149X/91 $3.00+0.00 Printed in Great Britain. # 2000 TEMPUS Publications. A New Digital Communications Course Enhanced by PC-Based Design Projects*
Vector Signal Analyzer FSQ-K70
Product brochure Version 02.00 Vector Signal Analyzer FSQ-K70 July 2004 Universal demodulation, analysis and documentation of digital radio signals For all major mobile radio communication standards: GSM
Wireless Broadband Network Design Best Practices
Wireless Broadband Network Design Best Practices Myths and Truths Leonhard Korowajczuk [email protected] 10/16/2013 Copyright CelPlan Technologies Inc. 1 CelPlan Technologies Provides Planning, Design
What s The Difference Between Bit Rate And Baud Rate?
What s The Difference Between Bit Rate And Baud Rate? Apr. 27, 2012 Lou Frenzel Electronic Design Serial-data speed is usually stated in terms of bit rate. However, another oftquoted measure of speed is
1 Lecture Notes 1 Interference Limited System, Cellular. Systems Introduction, Power and Path Loss
ECE 5325/6325: Wireless Communication Systems Lecture Notes, Spring 2015 1 Lecture Notes 1 Interference Limited System, Cellular Systems Introduction, Power and Path Loss Reading: Mol 1, 2, 3.3, Patwari
Joint Optimization of Routing and Radio Configuration in Fixed Wireless Networks
Joint Optimization of Routing and Radio Configuration in Fixed Wireless Networks David Coudert, Napoleão Nepomuceno, Hervé Rivano Projet Mascotte, I3S(CNRS-UNSA) INRIA Réunion Mascotte, March 2009 MASCOTTE
Coding and decoding with convolutional codes. The Viterbi Algor
Coding and decoding with convolutional codes. The Viterbi Algorithm. 8 Block codes: main ideas Principles st point of view: infinite length block code nd point of view: convolutions Some examples Repetition
DVB-T. C/N in a static Rayleigh channel. C/N values for portable single and diversity reception. Measurement method.
C/N values for portable single and diversity reception Raul Schramm IRT It has been shown that the minimum C/N values for good-quality portable reception in a static Rayleigh channel as given in the ETSI
MIMO detector algorithms and their implementations for LTE/LTE-A
GIGA seminar 11.01.2010 MIMO detector algorithms and their implementations for LTE/LTE-A Markus Myllylä and Johanna Ketonen 11.01.2010 2 Outline Introduction System model Detection in a MIMO-OFDM system
DVB-T. The echo performance of. receivers. Theory of echo tolerance. Ranulph Poole BBC Research and Development
The echo performance of DVB-T Ranulph Poole BBC Research and Development receivers This article introduces a model to describe the way in which a single echo gives rise to an equivalent noise floor (ENF)
1. (Ungraded) A noiseless 2-kHz channel is sampled every 5 ms. What is the maximum data rate?
Homework 2 Solution Guidelines CSC 401, Fall, 2011 1. (Ungraded) A noiseless 2-kHz channel is sampled every 5 ms. What is the maximum data rate? 1. In this problem, the channel being sampled gives us the
Diversity and Multiplexing: A Fundamental Tradeoff in Multiple-Antenna Channels
IEEE TRANSACTIONS ON INFORMATION THEORY, VOL 49, NO 5, MAY 2003 1073 Diversity Multiplexing: A Fundamental Tradeoff in Multiple-Antenna Channels Lizhong Zheng, Member, IEEE, David N C Tse, Member, IEEE
Two Way Relaying Communications with OFDM and BICM/BICM-ID
Two Way Relaying Communications with OFDM and BICM/BICM-ID A Thesis Submitted to the College of Graduate Studies and Research in Partial Fulfilment of the Requirements for the Degree of Doctor of Philosophy
8 MIMO II: capacity and multiplexing
CHAPTER 8 MIMO II: capacity and multiplexing architectures In this chapter, we will look at the capacity of MIMO fading channels and discuss transceiver architectures that extract the promised multiplexing
A Performance Study of Wireless Broadband Access (WiMAX)
A Performance Study of Wireless Broadband Access (WiMAX) Maan A. S. Al-Adwany Department of Computer & Information Engineering, College of Electronics Engineering University of Mosul Mosul, Iraq [email protected]
Performance of Quasi-Constant Envelope Phase Modulation through Nonlinear Radio Channels
Performance of Quasi-Constant Envelope Phase Modulation through Nonlinear Radio Channels Qi Lu, Qingchong Liu Electrical and Systems Engineering Department Oakland University Rochester, MI 48309 USA E-mail:
Probability and Random Variables. Generation of random variables (r.v.)
Probability and Random Variables Method for generating random variables with a specified probability distribution function. Gaussian And Markov Processes Characterization of Stationary Random Process Linearly
QAM Demodulation. Performance Conclusion. o o o o o. (Nyquist shaping, Clock & Carrier Recovery, AGC, Adaptive Equaliser) o o. Wireless Communications
0 QAM Demodulation o o o o o Application area What is QAM? What are QAM Demodulation Functions? General block diagram of QAM demodulator Explanation of the main function (Nyquist shaping, Clock & Carrier
A WEB BASED TRAINING MODULE FOR TEACHING DIGITAL COMMUNICATIONS
A WEB BASED TRAINING MODULE FOR TEACHING DIGITAL COMMUNICATIONS Ali Kara 1, Cihangir Erdem 1, Mehmet Efe Ozbek 1, Nergiz Cagiltay 2, Elif Aydin 1 (1) Department of Electrical and Electronics Engineering,
Demonstration of a Software Defined Radio Platform for dynamic spectrum allocation.
Demonstration of a Software Defined Radio Platform for dynamic spectrum allocation. Livia Ruiz Centre for Telecommunications Value-Chain Research Institute of Microelectronic and Wireless Systems, NUI
10.2 Statistical Simulation of Multipath Fading Channels...268
Statistical Simulation of Multipath Fading Channels for Mobile Wireless Digital Communication Systems David Luengo and Luca Martino Contents Abstract...66. Introduction to Mobile Wireless Communication
Performance of Multicast MISO-OFDM Systems
Performance of Multicast MISO-OFDM Systems Didier Le Ruyet Electronics and Communications Lab CNAM, 292 rue Saint Martin 75141, Paris, France Email: leruyet@cnamfr Berna Özbek Electrical and Electronics
Capacity of the Multiple Access Channel in Energy Harvesting Wireless Networks
Capacity of the Multiple Access Channel in Energy Harvesting Wireless Networks R.A. Raghuvir, Dinesh Rajan and M.D. Srinath Department of Electrical Engineering Southern Methodist University Dallas, TX
Mobile Digital TV (DVB-H/SH) and 2 nd Generation DVB Systems (DVB-S2/C2/T2)
Digital Television and Radio Systems (NDTV) Laboratory Exercise no. 9 Mobile Digital TV (DVB-H/SH) and 2 nd Generation DVB Systems (DVB-S2/C2/T2) The purpose of this laboratory exercise is to obtain overview
Adjacent Channel Interference. Adaptive Modulation and Coding. Advanced Mobile Phone System. Automatic Repeat Request. Additive White Gaussian Noise
Apéndice A. Lista de s ACI AM AMC AMPS ARQ AWGN BB BER BPSK BPF BW CCK CD CDMA CDPD COFDM CRL CSI CWTS Adjacent Channel Interference Amplitude Modulation Adaptive Modulation and Coding Advanced Mobile
Radar Systems Engineering Lecture 6 Detection of Signals in Noise
Radar Systems Engineering Lecture 6 Detection of Signals in Noise Dr. Robert M. O Donnell Guest Lecturer Radar Systems Course 1 Detection 1/1/010 Block Diagram of Radar System Target Radar Cross Section
Multihopping for OFDM based Wireless Networks
Multihopping for OFDM based Wireless Networks Jeroen Theeuwes, Frank H.P. Fitzek, Carl Wijting Center for TeleInFrastruktur (CTiF), Aalborg University Neils Jernes Vej 12, 9220 Aalborg Øst, Denmark phone:
Voice services over Adaptive Multi-user Orthogonal Sub channels An Insight
TEC Voice services over Adaptive Multi-user Orthogonal Sub channels An Insight HP 4/15/2013 A powerful software upgrade leverages quaternary modulation and MIMO techniques to improve network efficiency
Introduction to RF Engineering. Andrew CLEGG
Introduction to RF Engineering Andrew CLEGG 1 Comparing the Lingo Radio Astronomers Speak a Unique Vernacular We are receiving interference from your transmitter at a level of 10 janskys What the ^#$&
Bachelor of Technology (Electronics and Communication Engineering)
A Project Report on Synchronization Techniques for OFDM In partial fulfillment of the requirements of Bachelor of Technology (Electronics and Communication Engineering) Submitted By Govind Singh Parihar
Time and Frequency Domain Equalization
Time and Frequency Domain Equalization Presented By: Khaled Shawky Hassan Under Supervision of: Prof. Werner Henkel Introduction to Equalization Non-ideal analog-media such as telephone cables and radio
Propagation Channel Emulator ECP_V3
Navigation simulators Propagation Channel Emulator ECP_V3 1 Product Description The ECP (Propagation Channel Emulator V3) synthesizes the principal phenomena of propagation occurring on RF signal links
AP CALCULUS AB 2008 SCORING GUIDELINES
AP CALCULUS AB 2008 SCORING GUIDELINES Question 1 Let R be the region bounded by the graphs of y = sin( π x) and y = x 4 x, as shown in the figure above. (a) Find the area of R. (b) The horizontal line
Measurements on DVB-S2 Transmitters
Measurements on DVB-S2 Transmitters Application Note Products: R&S FSQ R&S FSG R&S FSU R&S FSUP R&S FSMR R&S FSQ-K70 R&S FSQ-B72 R&S FSU-B73 This application note provides information about measurements
Jitter Measurements in Serial Data Signals
Jitter Measurements in Serial Data Signals Michael Schnecker, Product Manager LeCroy Corporation Introduction The increasing speed of serial data transmission systems places greater importance on measuring
INTER CARRIER INTERFERENCE CANCELLATION IN HIGH SPEED OFDM SYSTEM Y. Naveena *1, K. Upendra Chowdary 2
ISSN 2277-2685 IJESR/June 2014/ Vol-4/Issue-6/333-337 Y. Naveena et al./ International Journal of Engineering & Science Research INTER CARRIER INTERFERENCE CANCELLATION IN HIGH SPEED OFDM SYSTEM Y. Naveena
TCOM 370 NOTES 99-4 BANDWIDTH, FREQUENCY RESPONSE, AND CAPACITY OF COMMUNICATION LINKS
TCOM 370 NOTES 99-4 BANDWIDTH, FREQUENCY RESPONSE, AND CAPACITY OF COMMUNICATION LINKS 1. Bandwidth: The bandwidth of a communication link, or in general any system, was loosely defined as the width of
Project Report on Adaptive Resource Allocation Algorithm for Multiuser Mimo-Ofdm Systems:
EE-575 INFORMATION THEORY - SEM 092 Project Report on Adaptive Resource Allocation Algorithm for Multiuser Mimo-Ofdm Systems: Prepared By: Mohammed Akber Ali Student ID # G200806120. Page 1 Context Abstract
HD Radio FM Transmission System Specifications Rev. F August 24, 2011
HD Radio FM Transmission System Specifications Rev. F August 24, 2011 SY_SSS_1026s TRADEMARKS HD Radio and the HD, HD Radio, and Arc logos are proprietary trademarks of ibiquity Digital Corporation. ibiquity,
USB 3.0 Jitter Budgeting White Paper Revision 0.5
USB 3. Jitter Budgeting White Paper Revision.5 INTELLECTUAL PROPERTY DISCLAIMER THIS WHITE PAPER IS PROVIDED TO YOU AS IS WITH NO WARRANTIES WHATSOEVER, INCLUDING ANY WARRANTY OF MERCHANTABILITY, NON-INFRINGEMENT,
MIMO CHANNEL CAPACITY
MIMO CHANNEL CAPACITY Ochi Laboratory Nguyen Dang Khoa (D1) 1 Contents Introduction Review of information theory Fixed MIMO channel Fading MIMO channel Summary and Conclusions 2 1. Introduction The use
Fundamentals of Satellite Communications Part 3
Fundamentals of Satellite Communications Part 3 Modulation Techniques used in Satellite Communication Howard Hausman December, 2009 Fundamentals of Satellite Communications Part 3 Modulation Techniques
Coded Bidirectional Relaying in Wireless Networks
Coded Bidirectional Relaying in Wireless Networks Petar Popovski and Toshiaki Koike - Akino Abstract The communication strategies for coded bidirectional (two way) relaying emerge as a result of successful
RECOMMENDATION ITU-R F.1101 * Characteristics of digital fixed wireless systems below about 17 GHz
Rec. ITU-R F.1101 1 RECOMMENDATION ITU-R F.1101 * Characteristics of digital fixed wireless systems below about 17 GHz (Question ITU-R 135/9) (1994) The ITU Radiocommunication Assembly, considering a)
All About Pulse Modulation How Ultra Narrow Band Modulation works Updated 12/15//10
All About Pulse Modulation How Ultra Narrow Band Modulation works Updated 12/15//10 Pulse modulation is well known in many forms. In communications it first appeared as Morse Code, otherwise known as ON/OFF
