ENGN8637, Semster-1, 2018 Project Description Project 1: Bit Interleaved Modulation

Size: px
Start display at page:

Download "ENGN8637, Semster-1, 2018 Project Description Project 1: Bit Interleaved Modulation"

Transcription

1 ENGN867, Semster-1, 2018 Project Description Project 1: Bit Interleaved Modulation Gerard Borg Research School of Engineering, ANU updated on 18/March/2018 1

2 1 Introduction Bit-interleaved coded modulation (BICM) module is a core module of DVB-T2. In this module, raw data bits are first channel coded into codewords, then interleaved, and finally modulated using rotated and Q-delayed modulation. Modulated signals are sent through imperfect channels. The received signal is demodulated and deinterleaved to obtain the codewords, which are then decoded to obtain the raw data bits. In this project, you will use the C programming language to implement the interleaving and modulation parts of the BICM module. There are three components in this implementation: 1. Transmitter, which consists of: Interleaver: it transforms a bit sequence into a bit matrix; Modulator: it transforms a set of bits into a complex symbol which it then rotates and Q-delays; 2. Channel simulator: it corrupts the complex symbols by changing their phase/amplitude and adding noise;. Receiver, which consists of: Demodulator: it reverses the Q-delay and then demaps the complex symbols back to bits either by using maximum likelihood or soft-demapping; De-interleaver: it transforms the bit matrix back to bit sequence. Therefore, we expect three C programs: one each for the transmitter, receiver and channel. In addition, in a separate exercise we will also require a separate routine for the soft-demapper algorithm. We can call these: 1. transmitter.c 2. receiver.c. channel.c 4. softdemapper.c In Sections 2 to 8, we will further specify the inputs and outputs of each function, respectively. Related references will be provided to help you understand the functionality of each function. You will then develop your own algorithms to implement the functions. Then in Section 9, we will ask you research questions, which you will investigate through literature review and simulations as well. Before we move on to these technical sections, it is beneficial to first define more accurately the problem and to clarify the notations and terminology. More importantly, we will differentiate the parameter configuration each group will apply, so that the final results from each group will be different. 2

3 2 The BICM Subsystem Fig. 1 shows the overall block diagram of the DVB-T2 system with the subset of the Bit Interleaved Coded Modulation blocks that we will develop encircled in red. In this project we do not consider the error correction blocks. Our aim is to transmit, receive and play a BICM encoded mpeg2-ts transport stream over a simulated wireless link. To do this we need the speed of the C programming language. Figure 1: Overall block diagram of DVB-T2 showing the BICM sub-modules to be implemented in the project.

4 System Specification.1 Notations and Terminology The following specifications refer to the system in Fig. 2. The different systems are (a) transmitter and (b) channel. There are three versions of the receiver shown. The version in (c) is an advanced receiver showing the BCH and LDPC decoders. It shows how soft information passes from the LDPC decoder to the soft-demapper. Version (c) is not implemented in the project. In the project we consider versions (d) and (e). In (d) and (e) the soft-demapper is provided with an external input log-likelihood prior to check its effect on BER. For bit detection, the slicer can either be after the deinterleaver in (d) or from a maximum likelihood demapper as shown in (e). Data in parity interleaver bit interleaver column twist bit to cell word de-multiplexer Mapping bits into constellations Modulator c c p c b C X Cell rotation and cyclic Q-delay X d (a) Y=HX d +W Channel simulator H (b) Data out BCH slicer LDPC v de-interleaver bit de-interleaver v b cell to bit word multiplexer V soft demapper Demodulator Q-delay reversion (c) parity interleaver column twist bit to cell word de-multiplexer Mapping bits into constellations L pr Data out slicer v de-interleaver bit de-interleaver v b cell to bit word multiplexer V soft demapper Demodulator Q-delay reversion (d) L pr Data out v de-interleaver bit de-interleaver v b cell to bit word multiplexer V Maximum Likelihood demapper Demodulator Q-delay reversion (e) L pr Figure 2: The DVB-T2 modulator / demodulator subsystem. You should first follow the standard [1] to make sure that you can locate and define the inputs and outputs of the various blocks. 4

5 Notation Description c N ldpc R c L pr c p c b C X X θ X d H W Y V v b v the binary LDPC codeword to be interleaved the length of c the code rate of c the a priori log-likelihood ratio (LLR) information of c the codeword after parity interleaving the codeword after bit interleaving the bit matrix after de-multiplexing a rotated constellation symbol, which is a complex number the set of symbols generated from C the rotation angle (anti-clockwise) the set of Q-delayed symbols from X a fading channel coefficient, which is a complex number an AWGN noise instance, which is a complex number the received symbol of X d after channel the bit matrix after de-mapping the codeword after multiplexing the demapped LDPC codeword.2 Parameter Configuration for Each Engineering Group The following table defines the system parameters you consider according to the group you join. Group ID N ldpc R c Modulation Group ID N ldpc R c Modulation A QAM E QAM B QAM F QAM C QAM G QAM D QAM H QAM I QAM J QAM K QAM Note that LDNC with N ldpc = and are referred to as normal and short LDPC, respectively. Please refer to Table 6 of the standard [1] for a complete table of parameter settings.

6 4 Interleaver The input of the interleaver is an LDPC codeword c that contains N ldpc bits. The first K ldpc = N ldpc R c bits are data bits, and the remaining N ldpc K ldpc bits are parity-check bits. Since LDPC encoding is not involved in this project, c is represented by a random binary sequence of length N ldpc. Then c will be interleaved in three steps: 1. Parity interleaving: the N ldpc K ldpc parity-check bits are interleaved, whilst the K ldpc data bits are unchanged. The output is denoted by c p. Please refer to Section 6.1. of the standard [1] and Section..2 of the thesis [2] for details; 2. Column twist: c p is written column-wise into a matrix, and is then read out row-wise. The outcome is denoted by c b. Please refer to Section 6.1. of the standard [1] and Section..2 of the thesis [2] for details;. Bit to Cell Word De-multiplexing: It reshapes c b into a matrix, the rows of which are then swapped. The outcome is denoted by C. The bits in each column of C will be modulated into one or two constellation symbols. Please refer to Section of the standard [1] and Section..2 of the thesis [2] 1 for details. The net effect of the interleaver is to take c as an input and generate C as an output. However it makes sense to divide this task into three individual C-modules which may be called parityinterleave(), columnt wist() and bittocelldemultiplex() which are located in C-program, transmitter.c. The zip-file at http : //users.cecs.anu.edu.au/ Gerard.Borg/anu/tutorials/tute 4.zip shows how to structure C-code. Modulator The input of the modulator is the bit matrix C. Bits in C are read out column-wise. Every M bits is modulated into a constellation cell X, where M is the constellation order (e.g., M = 4 for 16QAM as 16 = 2 4 ). Each constellation symbol is a complex number which can be represented as a pair of double precision numbers in C-language. The output is a vector X of length N cell = N ldpc /M. The imaginary part of X will be then delayed. Specifically, the modulator has two components: 1. Rotated constellation: it is obtained by rotating the classic constellation anti-clockwise by θ degrees. You will need to calculate the new value of each constellation cell. The mapping outcome is a vector X of complex numbers, each taking a form of X(j) = X I (j)+i X Q (j). Please refer to section 6. of the standard [1] and to section.. of the thesis [2] for the value of θ. 1 There is a typo in Table.6 of the thesis: N substream of 64QAM is 12, not 16. 6

7 2. Q-delay: The Q component of each X(j) in X, i.e., X Q (j), is circularly delayed by one cell to form a new vector X d. For example, X d (j) = X I (j) +i X Q (j 1) for all j > 0. Please refer to section 6. of the standard [1] and section.. of the thesis [2] for details. Ultimately the modulator takes C and θ as inputs (we will use this function to find the optimal value of θ),andoutputsx d. HoweveragainthistaskshouldbedividedintoC-modules,bittoConstellationMapper() and rotateqdelay(). which are also located in C-program, transmitter.c. 6 Channel Simulator The channel will corrupt each cell in X d independently into a cell Y, which is of the form: Y = HX d +W, where W is white Gaussian noise. In this project, you need to simulate two types of channels: 1. AWGN channel: H = 1 2. Uncorrelated single path Rayleigh fading channel (USRC): H is a complex Gaussian distributed channel coefficient. The Y (resp. H) of all cells in X d constitute a vector Y (resp. H). Please refer to Section 2.2 of the thesis [2] for the generation of W and H under a given SNR. You can write a single C function channel.c that takes X d and SNR as inputs, and outputs different Y and H depending on the channel type. Be careful how you take into account the SNR. 7 Demodulator There are three inputs for the demodulator: 1. The received cell vector Y ; 2. The channel coefficient vector H;. The a priori LLR information L pr = [L pr (0),L pr (1), L pr (N ldpc 1)] of all the N ldpc bits. You should interleave L in the same way as c to pair the LLR with the bits carried by each constellation cell. As the counterpart of the modulator, the demodulator also works in two steps: 1. Q-delay reversion: the delayed Q components are shifted back. Note that simply shifting the Q components of Y will NOT yield correct demodulation. Explain the reason and design a solution; 7

8 2. Demapping: there are two options: (a) Maximum likelihood demapping: hard decisions on bit values are made based on the minimum distance principle. The outcome is a binary matrix V that estimates C; (b) Soft demapping: a soft decision on each bit is made based on the received cell as well as the a priori LLR information of other bits in the same cell. The soft decision outcome is called the posterior LLR. Please refer to Section..4 of the thesis [2] for details. After soft decisions have been made for all bits, hard decisions are made based on the sign of the soft decisions. The outcome is a binary matrix V that estimates C. 8 Deinterleaver The deinterleaver is the reversion of the interleaver. You should develop a C function, deinterleaver.c that deinterleaves V to v, to estimate c. This is also located in C-program, receiver.c. 9 Soft versus Maximum-Liklihood Demapping We will implement a complete transceiver loop starting at data bits entering trasnmitter.c,propagating through the simulated channel channel.c and outputted with bit errors from receiver.c. We are not going to implement a complete loop involving LDPC soft-decoder with soft-demapping. For the demapper you will develop two C programs. The first is harddemapper.c that takes Y, H and outputs V using a maximum likelihood decision. The second is softdemapper.c that takes Y, H, and L as inputs, and outputs V, The program harddemapper.c is used by receiver.c. The program receiver.c should be able to detect the data bits transmitter by trasnmitter.c corrupted by the channel. It should produce zero BER for SNR 1. We will ask you to find appropriate values of L in Section 10. Be careful how you treat the Ls. Fig. demonstrates how these fit into the FEC blocks. 10 Research Questions Now you have successfully built a C-implementation of bit interleaved modulation. We will use it to test the system s BER performance versus the SNR, where BER is the ratio between the number of error bits in v and N ldpc. This section contains some research questions that you should solve and discuss in your group project. To solve them, you should conduct both analytical studies and simulations. 8

9 decoded data out to BCH slicer Ldc_post LDPC decoder Ldc_prior de-interleaver cell to bit word multiplexer Ldm_ext V = Ldm_post Constellation demapper R-Qdelay Y H Ldc_ext parity interleaver column twist bit to cell word de-multiplexer L = Ldm_prior Figure : Details of the soft demapper including the FEC blocks The value and impact of L pr When soft demapping is applied, the a priori LLR of the bits we feed to the demodulator are from the LDPC decoder. But since received cells must be demodulated first, we should initially set L pr = 0 for every bit. Our first question is: What is the difference between maximum-likelihood hard demapping and soft demapping with L pr = 0? Do they result in different BER) performance? Now assume we have correct LLR information (thanks to a genie) available. In other words, we let L pr (i) > 0 if bit-i is 0 and let L pr (i) < 0 if bit-i is 1. The question is: What is the impact of the amplitude of L pr on BER? Both analytical explanations and simulation results should be provided to verify your answer to the above questions. Note: you should use the optimal rotation angle θ in this subsection. Please refer to Section 6. of the standard [1] for details The optimal rotation angle θ What is the optimal value of θ? To answer this question, you should first find out at least one research paper on this topic, and then rephrase its approach in your own words. You should then conduct simulations that test the BER performance under different values of θ. It suffices to pick about 10 values between 0 and 2θ optimal inclusive. 9

10 10. The gain over classic methods In this subsection, we visualize the gain of interleaving and rotated + Q-delayed modulation. There are two questions: For classic modulation without rotation and Q-delay, does genie-aided (i.e., correct L pr provided) soft-demapping offer lower BER than maximum-likelihood demodulation? With rotated and Q-delayed modulation applied and genie-aided soft-demapping applied, does bit interleaving reduce BER? If yes, what is the reason? If not, why do we still apply it? 11 Conclusion Following this project description, you will be able to implement a self-contained transceiver that applies bit-interleaved modulation. This transceiver will has lower BER than classic ones. You will be able to verify this improvement both analytically and experimentally. References [1] DVB Document A122, Frame Structure, channel coding and modulation for a second generation digital terrestrial television broadcasting system (DVB-T2), June [2] M. Yu, A study of DVB-T2 standard with physical layer transceiver design and implementation, MPhil Thesis, Australian National University,

On Performance Improvements with Odd-Power (Cross) QAM Mappings in Wireless Networks

On Performance Improvements with Odd-Power (Cross) QAM Mappings in Wireless Networks San Jose State University From the SelectedWorks of Robert Henry Morelos-Zaragoza April, 2015 On Performance Improvements with Odd-Power (Cross) QAM Mappings in Wireless Networks Quyhn Quach Robert H Morelos-Zaragoza

More information

Digital Television Lecture 5

Digital Television Lecture 5 Digital Television Lecture 5 Forward Error Correction (FEC) Åbo Akademi University Domkyrkotorget 5 Åbo 8.4. Error Correction in Transmissions Need for error correction in transmissions Loss of data during

More information

A Study of DVB-T2 Standard with Physical Layer Transceiver Design and Implementation

A Study of DVB-T2 Standard with Physical Layer Transceiver Design and Implementation A Study of DVB-T2 Standard with Physical Layer Transceiver Design and Implementation Mingchao Yu July 2011 A thesis submitted for the degree of Master of Philosophy of the Australian National University

More information

Ultra high speed optical transmission using subcarrier-multiplexed four-dimensional LDPCcoded

Ultra high speed optical transmission using subcarrier-multiplexed four-dimensional LDPCcoded Ultra high speed optical transmission using subcarrier-multiplexed four-dimensional LDPCcoded modulation Hussam G. Batshon 1,*, Ivan Djordjevic 1, and Ted Schmidt 2 1 Department of Electrical and Computer

More information

A REVIEW OF CONSTELLATION SHAPING AND BICM-ID OF LDPC CODES FOR DVB-S2 SYSTEMS

A REVIEW OF CONSTELLATION SHAPING AND BICM-ID OF LDPC CODES FOR DVB-S2 SYSTEMS A REVIEW OF CONSTELLATION SHAPING AND BICM-ID OF LDPC CODES FOR DVB-S2 SYSTEMS Ms. A. Vandana PG Scholar, Electronics and Communication Engineering, Nehru College of Engineering and Research Centre Pampady,

More information

Advanced channel coding : a good basis. Alexandre Giulietti, on behalf of the team

Advanced channel coding : a good basis. Alexandre Giulietti, on behalf of the team Advanced channel coding : a good basis Alexandre Giulietti, on behalf of the T@MPO team Errors in transmission are fowardly corrected using channel coding e.g. MPEG4 e.g. Turbo coding e.g. QAM source coding

More information

ENGN8637 Physical Layer Development of DVB-T2 Lecture 3 DVB-T2 Overview: Channel Modelling Part I

ENGN8637 Physical Layer Development of DVB-T2 Lecture 3 DVB-T2 Overview: Channel Modelling Part I ENGN8637 Physical Layer Development of DVB-T2 DVB-T2 Overview: Channel Modelling Part I Lecturer: Gerard Borg Gerard.bor@anu.edu.au Research School of Engineering Why study channel first? We already know

More information

Soft Detection of Modulation Diversity Schemes for Next Generation Digital Terrestrial Television

Soft Detection of Modulation Diversity Schemes for Next Generation Digital Terrestrial Television Soft Detection of Modulation Diversity Schemes for Next Generation Digital Terrestrial Television Alberto Vigato, Stefano Tomasin, Lorenzo Vangelista, Nevio Benvenuto and Vittoria Mignone Department of

More information

Low Complexity Decoding of Bit-Interleaved Coded Modulation for M-ary QAM

Low Complexity Decoding of Bit-Interleaved Coded Modulation for M-ary QAM Low Complexity Decoding of Bit-Interleaved Coded Modulation for M-ary QAM Enis Aay and Ender Ayanoglu Center for Pervasive Communications and Computing Department of Electrical Engineering and Computer

More information

MIMO-BICM WITH IMPERFECT CHANNEL STATE INFORMATION: EXIT CHART ANALYSIS AND LDPC CODE OPTIMIZATION

MIMO-BICM WITH IMPERFECT CHANNEL STATE INFORMATION: EXIT CHART ANALYSIS AND LDPC CODE OPTIMIZATION MIMO-BICM WITH IMPERFECT CHANNEL STATE INFORMATION: EXIT CHART ANALYSIS AND LDPC CODE OPTIMIZATION Clemens Novak, Gottfried Lechner, and Gerald Matz Institut für Nachrichtentechnik und Hochfrequenztechnik,

More information

Bit-Interleaved Coded Modulation: Low Complexity Decoding

Bit-Interleaved Coded Modulation: Low Complexity Decoding Bit-Interleaved Coded Modulation: Low Complexity Decoding Enis Aay and Ender Ayanoglu Center for Pervasive Communications and Computing Department of Electrical Engineering and Computer Science The Henry

More information

A Novel of Low Complexity Detection in OFDM System by Combining SLM Technique and Clipping and Scaling Method Jayamol Joseph, Subin Suresh

A Novel of Low Complexity Detection in OFDM System by Combining SLM Technique and Clipping and Scaling Method Jayamol Joseph, Subin Suresh A Novel of Low Complexity Detection in OFDM System by Combining SLM Technique and Clipping and Scaling Method Jayamol Joseph, Subin Suresh Abstract In order to increase the bandwidth efficiency and receiver

More information

Quasi-Orthogonal Space-Time Block Coding Using Polynomial Phase Modulation

Quasi-Orthogonal Space-Time Block Coding Using Polynomial Phase Modulation Florida International University FIU Digital Commons Electrical and Computer Engineering Faculty Publications College of Engineering and Computing 4-28-2011 Quasi-Orthogonal Space-Time Block Coding Using

More information

Testing The Effective Performance Of Ofdm On Digital Video Broadcasting

Testing The Effective Performance Of Ofdm On Digital Video Broadcasting The 1 st Regional Conference of Eng. Sci. NUCEJ Spatial ISSUE vol.11,no.2, 2008 pp 295-302 Testing The Effective Performance Of Ofdm On Digital Video Broadcasting Ali Mohammed Hassan Al-Bermani College

More information

MATLAB SIMULATION OF DVB-H TRANSMISSION UNDER DIFFERENT TRANSMISSION CONDITIONS

MATLAB SIMULATION OF DVB-H TRANSMISSION UNDER DIFFERENT TRANSMISSION CONDITIONS MATLAB SIMULATION OF DVB-H TRANSMISSION UNDER DIFFERENT TRANSMISSION CONDITIONS Ladislav Polák, Tomáš Kratochvíl Department of Radio Electronics, Brno University of Technology Purkyňova 118, 612 00 BRNO

More information

Study of Turbo Coded OFDM over Fading Channel

Study of Turbo Coded OFDM over Fading Channel International Journal of Engineering Research and Development e-issn: 2278-067X, p-issn: 2278-800X, www.ijerd.com Volume 3, Issue 2 (August 2012), PP. 54-58 Study of Turbo Coded OFDM over Fading Channel

More information

Lab/Project Error Control Coding using LDPC Codes and HARQ

Lab/Project Error Control Coding using LDPC Codes and HARQ Linköping University Campus Norrköping Department of Science and Technology Erik Bergfeldt TNE066 Telecommunications Lab/Project Error Control Coding using LDPC Codes and HARQ Error control coding is an

More information

Low Complexity Iterative MIMO Receivers for DVB-NGH Using Soft MMSE Demapping and Quantized Log-Likelihood Ratios

Low Complexity Iterative MIMO Receivers for DVB-NGH Using Soft MMSE Demapping and Quantized Log-Likelihood Ratios Low Complexity Iterative MIMO Receivers for DVB-NGH Using Soft MMSE Demapping and Quantized Log-Likelihood Ratios Author: David E. Vargas Paredero Director 1: David Gómez Barquero Director 2: Gerald Matz

More information

Amplitude and Phase Distortions in MIMO and Diversity Systems

Amplitude and Phase Distortions in MIMO and Diversity Systems Amplitude and Phase Distortions in MIMO and Diversity Systems Christiane Kuhnert, Gerd Saala, Christian Waldschmidt, Werner Wiesbeck Institut für Höchstfrequenztechnik und Elektronik (IHE) Universität

More information

Error Correcting Codes for Cooperative Broadcasting

Error Correcting Codes for Cooperative Broadcasting San Jose State University SJSU ScholarWorks Faculty Publications Electrical Engineering 11-30-2010 Error Correcting Codes for Cooperative Broadcasting Robert H. Morelos-Zaragoza San Jose State University,

More information

Comparison of BER for Various Digital Modulation Schemes in OFDM System

Comparison of BER for Various Digital Modulation Schemes in OFDM System ISSN: 2278 909X Comparison of BER for Various Digital Modulation Schemes in OFDM System Jaipreet Kaur, Hardeep Kaur, Manjit Sandhu Abstract In this paper, an OFDM system model is developed for various

More information

Performance of Combined Error Correction and Error Detection for very Short Block Length Codes

Performance of Combined Error Correction and Error Detection for very Short Block Length Codes Performance of Combined Error Correction and Error Detection for very Short Block Length Codes Matthias Breuninger and Joachim Speidel Institute of Telecommunications, University of Stuttgart Pfaffenwaldring

More information

Novel BICM HARQ Algorithm Based on Adaptive Modulations

Novel BICM HARQ Algorithm Based on Adaptive Modulations Novel BICM HARQ Algorithm Based on Adaptive Modulations Item Type text; Proceedings Authors Kumar, Kuldeep; Perez-Ramirez, Javier Publisher International Foundation for Telemetering Journal International

More information

Adaptive communications techniques for the underwater acoustic channel

Adaptive communications techniques for the underwater acoustic channel Adaptive communications techniques for the underwater acoustic channel James A. Ritcey Department of Electrical Engineering, Box 352500 University of Washington, Seattle, WA 98195 Tel: (206) 543-4702,

More information

Performance Optimization of Hybrid Combination of LDPC and RS Codes Using Image Transmission System Over Fading Channels

Performance Optimization of Hybrid Combination of LDPC and RS Codes Using Image Transmission System Over Fading Channels European Journal of Scientific Research ISSN 1450-216X Vol.35 No.1 (2009), pp 34-42 EuroJournals Publishing, Inc. 2009 http://www.eurojournals.com/ejsr.htm Performance Optimization of Hybrid Combination

More information

SIMULATIONS OF ERROR CORRECTION CODES FOR DATA COMMUNICATION OVER POWER LINES

SIMULATIONS OF ERROR CORRECTION CODES FOR DATA COMMUNICATION OVER POWER LINES SIMULATIONS OF ERROR CORRECTION CODES FOR DATA COMMUNICATION OVER POWER LINES Michelle Foltran Miranda Eduardo Parente Ribeiro mifoltran@hotmail.com edu@eletrica.ufpr.br Departament of Electrical Engineering,

More information

Low-Complexity LDPC-coded Iterative MIMO Receiver Based on Belief Propagation algorithm for Detection

Low-Complexity LDPC-coded Iterative MIMO Receiver Based on Belief Propagation algorithm for Detection Low-Complexity LDPC-coded Iterative MIMO Receiver Based on Belief Propagation algorithm for Detection Ali Haroun, Charbel Abdel Nour, Matthieu Arzel and Christophe Jego Outline Introduction System description

More information

Closing the Gap to the Capacity of APSK: Constellation Shaping and Degree Distributions

Closing the Gap to the Capacity of APSK: Constellation Shaping and Degree Distributions Closing the Gap to the Capacity of APSK: Constellation Shaping and Degree Distributions Xingyu Xiang and Matthew C. Valenti Lane Department of Computer Science and Electrical Engineering West Virginia

More information

Noncoherent Digital Network Coding Using Multi-tone CPFSK Modulation

Noncoherent Digital Network Coding Using Multi-tone CPFSK Modulation Noncoherent Digital Network Coding Using Multi-tone CPFSK Modulation Terry Ferrett, Matthew C. Valenti, and Don Torrieri West Virginia University, Morgantown, WV, USA. U.S. Army Research Laboratory, Adelphi,

More information

Capacity-Approaching Bandwidth-Efficient Coded Modulation Schemes Based on Low-Density Parity-Check Codes

Capacity-Approaching Bandwidth-Efficient Coded Modulation Schemes Based on Low-Density Parity-Check Codes IEEE TRANSACTIONS ON INFORMATION THEORY, VOL. 49, NO. 9, SEPTEMBER 2003 2141 Capacity-Approaching Bandwidth-Efficient Coded Modulation Schemes Based on Low-Density Parity-Check Codes Jilei Hou, Student

More information

Revision of Lecture Eleven

Revision of Lecture Eleven Revision of Lecture Eleven Previous lecture we have concentrated on carrier recovery for QAM, and modified early-late clock recovery for multilevel signalling as well as star 16QAM scheme Thus we have

More information

Basics of Error Correcting Codes

Basics of Error Correcting Codes Basics of Error Correcting Codes Drawing from the book Information Theory, Inference, and Learning Algorithms Downloadable or purchasable: http://www.inference.phy.cam.ac.uk/mackay/itila/book.html CSE

More information

LDPC FEC PROPOSAL FOR EPOC. Richard S. Prodan Broadcom Corporation

LDPC FEC PROPOSAL FOR EPOC. Richard S. Prodan Broadcom Corporation LDPC FEC PROPOSAL FOR EPOC Richard S. Prodan Broadcom Corporation 1 LDPC FEC CODES Single rate long LDPC code for all constellations No outer code No bit interleaver Codeword size: 15800 bits 2.5% reduction

More information

1. INTRODUCTION II. SPREADING USING WALSH CODE. International Journal of Advanced Networking & Applications (IJANA) ISSN:

1. INTRODUCTION II. SPREADING USING WALSH CODE. International Journal of Advanced Networking & Applications (IJANA) ISSN: Analysis of DWT OFDM using Rician Channel and Comparison with ANN based OFDM Geeta S H1, Smitha B2, Shruthi G, Shilpa S G4 Department of Computer Science and Engineering, DBIT, Bangalore, Visvesvaraya

More information

Removing Error Floor for Bit Interleaved Coded Modulation MIMO Transmission with Iterative Detection

Removing Error Floor for Bit Interleaved Coded Modulation MIMO Transmission with Iterative Detection Removing Error Floor for Bit Interleaved Coded Modulation MIMO Transmission with Iterative Detection Alexander Boronka, Nabil Sven Muhammad and Joachim Speidel Institute of Telecommunications, University

More information

Power Efficiency of LDPC Codes under Hard and Soft Decision QAM Modulated OFDM

Power Efficiency of LDPC Codes under Hard and Soft Decision QAM Modulated OFDM Advance in Electronic and Electric Engineering. ISSN 2231-1297, Volume 4, Number 5 (2014), pp. 463-468 Research India Publications http://www.ripublication.com/aeee.htm Power Efficiency of LDPC Codes under

More information

Simulation Modal of DVB-S2 using without and with Filter

Simulation Modal of DVB-S2 using without and with Filter Simulation Modal of DVB-S2 using without and with Filter Prakash Patel 1, Dr. Snehlata Kothari 2, Dr. Dipesh Kamdar 3 Research Scholar, Department of Electronics and Communication Engineering, Pacific

More information

Performance comparison of convolutional and block turbo codes

Performance comparison of convolutional and block turbo codes Performance comparison of convolutional and block turbo codes K. Ramasamy 1a), Mohammad Umar Siddiqi 2, Mohamad Yusoff Alias 1, and A. Arunagiri 1 1 Faculty of Engineering, Multimedia University, 63100,

More information

A Novel and Efficient Mapping of 32-QAM Constellation for BICM-ID Systems

A Novel and Efficient Mapping of 32-QAM Constellation for BICM-ID Systems Wireless Pers Commun DOI 10.1007/s11277-014-1848-2 A Novel and Efficient Mapping of 32-QAM Constellation for BICM-ID Systems Hassan M. Navazi Ha H. Nguyen Springer Science+Business Media New York 2014

More information

Implementation of Different Interleaving Techniques for Performance Evaluation of CDMA System

Implementation of Different Interleaving Techniques for Performance Evaluation of CDMA System Implementation of Different Interleaving Techniques for Performance Evaluation of CDMA System Anshu Aggarwal 1 and Vikas Mittal 2 1 Anshu Aggarwal is student of M.Tech. in the Department of Electronics

More information

MIMO Iterative Receiver with Bit Per Bit Interference Cancellation

MIMO Iterative Receiver with Bit Per Bit Interference Cancellation MIMO Iterative Receiver with Bit Per Bit Interference Cancellation Laurent Boher, Maryline Hélard and Rodrigue Rabineau France Telecom R&D Division, 4 rue du Clos Courtel, 3552 Cesson-Sévigné Cedex, France

More information

Layered Space-Time Codes

Layered Space-Time Codes 6 Layered Space-Time Codes 6.1 Introduction Space-time trellis codes have a potential drawback that the maximum likelihood decoder complexity grows exponentially with the number of bits per symbol, thus

More information

Turbo Codes for Pulse Position Modulation: Applying BCJR algorithm on PPM signals

Turbo Codes for Pulse Position Modulation: Applying BCJR algorithm on PPM signals Turbo Codes for Pulse Position Modulation: Applying BCJR algorithm on PPM signals Serj Haddad and Chadi Abou-Rjeily Lebanese American University PO. Box, 36, Byblos, Lebanon serj.haddad@lau.edu.lb, chadi.abourjeily@lau.edu.lb

More information

Constellation Shaping for LDPC-Coded APSK

Constellation Shaping for LDPC-Coded APSK Constellation Shaping for LDPC-Coded APSK Matthew C. Valenti Lane Department of Computer Science and Electrical Engineering West Virginia University U.S.A. Mar. 14, 2013 ( Lane Department LDPCof Codes

More information

The Optimal Employment of CSI in COFDM-Based Receivers

The Optimal Employment of CSI in COFDM-Based Receivers The Optimal Employment of CSI in COFDM-Based Receivers Akram J. Awad, Timothy O Farrell School of Electronic & Electrical Engineering, University of Leeds, UK eenajma@leeds.ac.uk Abstract: This paper investigates

More information

Interference Mitigation in MIMO Interference Channel via Successive Single-User Soft Decoding

Interference Mitigation in MIMO Interference Channel via Successive Single-User Soft Decoding Interference Mitigation in MIMO Interference Channel via Successive Single-User Soft Decoding Jungwon Lee, Hyukjoon Kwon, Inyup Kang Mobile Solutions Lab, Samsung US R&D Center 491 Directors Pl, San Diego,

More information

Noncoherent Digital Network Coding using M-ary CPFSK Modulation

Noncoherent Digital Network Coding using M-ary CPFSK Modulation Noncoherent Digital Network Coding using M-ary CPFSK Modulation Terry Ferrett 1 Matthew Valenti 1 Don Torrieri 2 1 West Virginia University 2 U.S. Army Research Laboratory November 9th, 2011 1 / 31 Outline

More information

Volume 2, Issue 9, September 2014 International Journal of Advance Research in Computer Science and Management Studies

Volume 2, Issue 9, September 2014 International Journal of Advance Research in Computer Science and Management Studies Volume 2, Issue 9, September 2014 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online at: www.ijarcsms.com

More information

EE 435/535: Error Correcting Codes Project 1, Fall 2009: Extended Hamming Code. 1 Introduction. 2 Extended Hamming Code: Encoding. 1.

EE 435/535: Error Correcting Codes Project 1, Fall 2009: Extended Hamming Code. 1 Introduction. 2 Extended Hamming Code: Encoding. 1. EE 435/535: Error Correcting Codes Project 1, Fall 2009: Extended Hamming Code Project #1 is due on Tuesday, October 6, 2009, in class. You may turn the project report in early. Late projects are accepted

More information

Polar Codes with Integrated Probabilistic Shaping for 5G New Radio

Polar Codes with Integrated Probabilistic Shaping for 5G New Radio Polar Codes with Integrated Probabilistic Shaping for 5G New Radio Onurcan İşcan, Wen Xu Huawei Technologies Düsseldorf GmbH, German Research Center Riesstr. 25 80992 Munich, Germany Email: {Onurcan.Iscan,

More information

OFDM Code Division Multiplexing with Unequal Error Protection and Flexible Data Rate Adaptation

OFDM Code Division Multiplexing with Unequal Error Protection and Flexible Data Rate Adaptation OFDM Code Division Multiplexing with Unequal Error Protection and Flexible Data Rate Adaptation Stefan Kaiser German Aerospace Center (DLR) Institute of Communications and Navigation 834 Wessling, Germany

More information

Outline. Communications Engineering 1

Outline. Communications Engineering 1 Outline Introduction Signal, random variable, random process and spectra Analog modulation Analog to digital conversion Digital transmission through baseband channels Signal space representation Optimal

More information

Multiple Input Multiple Output Dirty Paper Coding: System Design and Performance

Multiple Input Multiple Output Dirty Paper Coding: System Design and Performance Multiple Input Multiple Output Dirty Paper Coding: System Design and Performance Zouhair Al-qudah and Dinesh Rajan, Senior Member,IEEE Electrical Engineering Department Southern Methodist University Dallas,

More information

ECE 5325/6325: Wireless Communication Systems Lecture Notes, Spring 2013

ECE 5325/6325: Wireless Communication Systems Lecture Notes, Spring 2013 ECE 5325/6325: Wireless Communication Systems Lecture Notes, Spring 2013 Lecture 18 Today: (1) da Silva Discussion, (2) Error Correction Coding, (3) Error Detection (CRC) HW 8 due Tue. HW 9 (on Lectures

More information

FINITE PRECISION ANALYSIS OF DEMAPPERS AND DECODERS FOR LDPC-CODED M-QAM SYSTEMS

FINITE PRECISION ANALYSIS OF DEMAPPERS AND DECODERS FOR LDPC-CODED M-QAM SYSTEMS Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 2, February 2014,

More information

An Iterative Noncoherent Relay Receiver for the Two-way Relay Channel

An Iterative Noncoherent Relay Receiver for the Two-way Relay Channel An Iterative Noncoherent Relay Receiver for the Two-way Relay Channel Terry Ferrett 1 Matthew Valenti 1 Don Torrieri 2 1 West Virginia University 2 U.S. Army Research Laboratory June 12th, 2013 1 / 26

More information

Receiver Design for Noncoherent Digital Network Coding

Receiver Design for Noncoherent Digital Network Coding Receiver Design for Noncoherent Digital Network Coding Terry Ferrett 1 Matthew Valenti 1 Don Torrieri 2 1 West Virginia University 2 U.S. Army Research Laboratory November 3rd, 2010 1 / 25 Outline 1 Introduction

More information

Performance and Complexity Tradeoffs of Space-Time Modulation and Coding Schemes

Performance and Complexity Tradeoffs of Space-Time Modulation and Coding Schemes Performance and Complexity Tradeoffs of Space-Time Modulation and Coding Schemes The MIT Faculty has made this article openly available. Please share how this access benefits you. Your story matters. Citation

More information

Bit Error Probability Computations for M-ary Quadrature Amplitude Modulation

Bit Error Probability Computations for M-ary Quadrature Amplitude Modulation KING ABDULLAH UNIVERSITY OF SCIENCE AND TECHNOLOGY ELECTRICAL ENGINEERING DEPARTMENT Bit Error Probability Computations for M-ary Quadrature Amplitude Modulation Ronell B. Sicat ID: 4000217 Professor Tareq

More information

A Simple Space-Frequency Coding Scheme with Cyclic Delay Diversity for OFDM

A Simple Space-Frequency Coding Scheme with Cyclic Delay Diversity for OFDM A Simple Space-Frequency Coding Scheme with Cyclic Delay Diversity for A Huebner, F Schuehlein, and M Bossert E Costa and H Haas University of Ulm Department of elecommunications and Applied Information

More information

Lecture #2. EE 471C / EE 381K-17 Wireless Communication Lab. Professor Robert W. Heath Jr.

Lecture #2. EE 471C / EE 381K-17 Wireless Communication Lab. Professor Robert W. Heath Jr. Lecture #2 EE 471C / EE 381K-17 Wireless Communication Lab Professor Robert W. Heath Jr. Preview of today s lecture u Introduction to digital communication u Components of a digital communication system

More information

On Bit-Wise Decoders for Coded Modulation. Mikhail Ivanov

On Bit-Wise Decoders for Coded Modulation. Mikhail Ivanov Thesis for the Degree of Licentiate of Engineering On Bit-Wise Decoders for Coded Modulation Mikhail Ivanov Communication Systems Group Department of Signals and Systems Chalmers University of Technology

More information

Contents Chapter 1: Introduction... 2

Contents Chapter 1: Introduction... 2 Contents Chapter 1: Introduction... 2 1.1 Objectives... 2 1.2 Introduction... 2 Chapter 2: Principles of turbo coding... 4 2.1 The turbo encoder... 4 2.1.1 Recursive Systematic Convolutional Codes... 4

More information

TSTE17 System Design, CDIO. General project hints. Behavioral Model. General project hints, cont. Lecture 5. Required documents Modulation, cont.

TSTE17 System Design, CDIO. General project hints. Behavioral Model. General project hints, cont. Lecture 5. Required documents Modulation, cont. TSTE17 System Design, CDIO Lecture 5 1 General project hints 2 Project hints and deadline suggestions Required documents Modulation, cont. Requirement specification Channel coding Design specification

More information

PAPER MIMO System with Relative Phase Difference Time-Shift Modulation for Rician Fading Environment

PAPER MIMO System with Relative Phase Difference Time-Shift Modulation for Rician Fading Environment IEICE TRANS. COMMUN., VOL.E91 B, NO.2 FEBRUARY 2008 459 PAPER MIMO System with Relative Phase Difference Time-Shift Modulation for Rician Fading Environment Kenichi KOBAYASHI, Takao SOMEYA, Student Members,

More information

UNIVERSITY OF SOUTHAMPTON

UNIVERSITY OF SOUTHAMPTON UNIVERSITY OF SOUTHAMPTON ELEC6014W1 SEMESTER II EXAMINATIONS 2007/08 RADIO COMMUNICATION NETWORKS AND SYSTEMS Duration: 120 mins Answer THREE questions out of FIVE. University approved calculators may

More information

Iterative Decoding for MIMO Channels via. Modified Sphere Decoding

Iterative Decoding for MIMO Channels via. Modified Sphere Decoding Iterative Decoding for MIMO Channels via Modified Sphere Decoding H. Vikalo, B. Hassibi, and T. Kailath Abstract In recent years, soft iterative decoding techniques have been shown to greatly improve the

More information

Coding & Signal Processing for Holographic Data Storage. Vijayakumar Bhagavatula

Coding & Signal Processing for Holographic Data Storage. Vijayakumar Bhagavatula Coding & Signal Processing for Holographic Data Storage Vijayakumar Bhagavatula Acknowledgements Venkatesh Vadde Mehmet Keskinoz Sheida Nabavi Lakshmi Ramamoorthy Kevin Curtis, Adrian Hill & Mark Ayres

More information

Convolutional Coding Using Booth Algorithm For Application in Wireless Communication

Convolutional Coding Using Booth Algorithm For Application in Wireless Communication Available online at www.interscience.in Convolutional Coding Using Booth Algorithm For Application in Wireless Communication Sishir Kalita, Parismita Gogoi & Kandarpa Kumar Sarma Department of Electronics

More information

An FPGA 1Gbps Wireless Baseband MIMO Transceiver

An FPGA 1Gbps Wireless Baseband MIMO Transceiver An FPGA 1Gbps Wireless Baseband MIMO Transceiver Center the Authors Names Here [leave blank for review] Center the Affiliations Here [leave blank for review] Center the City, State, and Country Here (address

More information

Performance Analysis for a Alamouti s STBC Encoded MRC Wireless Communication System over Rayleigh Fading Channel

Performance Analysis for a Alamouti s STBC Encoded MRC Wireless Communication System over Rayleigh Fading Channel International Journal of Scientific and Research Publications, Volume 3, Issue 9, September 2013 1 Performance Analysis for a Alamouti s STBC Encoded MRC Wireless Communication System over Rayleigh Fading

More information

Performance Analysis of OFDM System with QPSK for Wireless Communication

Performance Analysis of OFDM System with QPSK for Wireless Communication IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 11, Issue 3, Ver. I (May-Jun.2016), PP 33-37 www.iosrjournals.org Performance Analysis

More information

A Polling Based Approach For Delay Analysis of WiMAX/IEEE Systems

A Polling Based Approach For Delay Analysis of WiMAX/IEEE Systems A Polling Based Approach For Delay Analysis of WiMAX/IEEE 802.16 Systems Archana B T 1, Bindu V 2 1 M Tech Signal Processing, Department of Electronics and Communication, Sree Chitra Thirunal College of

More information

Combined Transmitter Diversity and Multi-Level Modulation Techniques

Combined Transmitter Diversity and Multi-Level Modulation Techniques SETIT 2005 3rd International Conference: Sciences of Electronic, Technologies of Information and Telecommunications March 27 3, 2005 TUNISIA Combined Transmitter Diversity and Multi-Level Modulation Techniques

More information

UNIFIED DIGITAL AUDIO AND DIGITAL VIDEO BROADCASTING SYSTEM USING ORTHOGONAL FREQUENCY DIVISION MULTIPLEXING (OFDM) SYSTEM

UNIFIED DIGITAL AUDIO AND DIGITAL VIDEO BROADCASTING SYSTEM USING ORTHOGONAL FREQUENCY DIVISION MULTIPLEXING (OFDM) SYSTEM UNIFIED DIGITAL AUDIO AND DIGITAL VIDEO BROADCASTING SYSTEM USING ORTHOGONAL FREQUENCY DIVISION MULTIPLEXING (OFDM) SYSTEM 1 Drakshayini M N, 2 Dr. Arun Vikas Singh 1 drakshayini@tjohngroup.com, 2 arunsingh@tjohngroup.com

More information

ATSC 3.0 Physical Layer Overview

ATSC 3.0 Physical Layer Overview ATSC 3.0 Physical Layer Overview Agenda Terminology Real world concerns Technology to combat those concerns Summary Basic Terminology What is OFDM? What is FEC? What is Shannon s Theorem? What does BER

More information

An Improved Design of Gallager Mapping for LDPC-coded BICM-ID System

An Improved Design of Gallager Mapping for LDPC-coded BICM-ID System 16 ELECTRONICS VOL. 2 NO. 1 JUNE 216 An Improved Design of Gallager Mapping for LDPC-coded BICM-ID System Lin Zhou Weicheng Huang Shengliang Peng Yan Chen and Yucheng He Abstract Gallager mapping uses

More information

Performance Analysis of n Wireless LAN Physical Layer

Performance Analysis of n Wireless LAN Physical Layer 120 1 Performance Analysis of 802.11n Wireless LAN Physical Layer Amr M. Otefa, Namat M. ElBoghdadly, and Essam A. Sourour Abstract In the last few years, we have seen an explosive growth of wireless LAN

More information

AN EFFICIENT LINK PERFOMANCE ESTIMATION TECHNIQUE FOR MIMO-OFDM SYSTEMS

AN EFFICIENT LINK PERFOMANCE ESTIMATION TECHNIQUE FOR MIMO-OFDM SYSTEMS AN EFFICIENT LINK PERFOMANCE ESTIMATION TECHNIQUE FOR MIMO-OFDM SYSTEMS 1 K. A. Narayana Reddy, 2 G. Madhavi Latha, 3 P.V.Ramana 1 4 th sem, M.Tech (Digital Electronics and Communication Systems), Sree

More information

Introduction to Error Control Coding

Introduction to Error Control Coding Introduction to Error Control Coding 1 Content 1. What Error Control Coding Is For 2. How Coding Can Be Achieved 3. Types of Coding 4. Types of Errors & Channels 5. Types of Codes 6. Types of Error Control

More information

Performance Evaluation of different α value for OFDM System

Performance Evaluation of different α value for OFDM System Performance Evaluation of different α value for OFDM System Dr. K.Elangovan Dept. of Computer Science & Engineering Bharathidasan University richirappalli Abstract: Orthogonal Frequency Division Multiplexing

More information

ECE 5325/6325: Wireless Communication Systems Lecture Notes, Spring 2013

ECE 5325/6325: Wireless Communication Systems Lecture Notes, Spring 2013 ECE 5325/6325: Wireless Communication Systems Lecture Notes, Spring 2013 Lecture 18 Today: (1) da Silva Discussion, (2) Error Correction Coding, (3) Error Detection (CRC) HW 8 due Tue. HW 9 (on Lectures

More information

A low cost soft mapper for turbo equalization with high order modulation

A low cost soft mapper for turbo equalization with high order modulation University of Wollongong Research Online Faculty of Engineering and Information Sciences - Papers: Part A Faculty of Engineering and Information Sciences 2012 A low cost soft mapper for turbo equalization

More information

Chapter 2 Channel Equalization

Chapter 2 Channel Equalization Chapter 2 Channel Equalization 2.1 Introduction In wireless communication systems signal experiences distortion due to fading [17]. As signal propagates, it follows multiple paths between transmitter and

More information

Improved concatenated (RS-CC) for OFDM systems

Improved concatenated (RS-CC) for OFDM systems Improved concatenated (RS-CC) for OFDM systems Mustafa Dh. Hassib 1a), JS Mandeep 1b), Mardina Abdullah 1c), Mahamod Ismail 1d), Rosdiadee Nordin 1e), and MT Islam 2f) 1 Department of Electrical, Electronics,

More information

Reduced Complexity of QRD-M Detection Scheme in MIMO-OFDM Systems

Reduced Complexity of QRD-M Detection Scheme in MIMO-OFDM Systems Advanced Science and echnology Letters Vol. (ASP 06), pp.4- http://dx.doi.org/0.457/astl.06..4 Reduced Complexity of QRD-M Detection Scheme in MIMO-OFDM Systems Jong-Kwang Kim, Jae-yun Ro and young-kyu

More information

Performance Evaluation of Bit Division Multiplexing combined with Non-Uniform QAM

Performance Evaluation of Bit Division Multiplexing combined with Non-Uniform QAM Performance Evaluation of Bit Division Multiplexing combined with Non-Uniform QAM Hugo Méric Inria Chile - NIC Chile Research Labs Santiago, Chile Email: hugo.meric@inria.cl José Miguel Piquer NIC Chile

More information

Block Processing Linear Equalizer for MIMO CDMA Downlinks in STTD Mode

Block Processing Linear Equalizer for MIMO CDMA Downlinks in STTD Mode Block Processing Linear Equalizer for MIMO CDMA Downlinks in STTD Mode Yan Li Yingxue Li Abstract In this study, an enhanced chip-level linear equalizer is proposed for multiple-input multiple-out (MIMO)

More information

Optimization of a Coded-Modulation System with Shaped Constellation

Optimization of a Coded-Modulation System with Shaped Constellation Optimization of a Coded-Modulation System with Shaped Constellation by Xingyu Xiang Dissertation submitted to the College of Engineering and Mineral Resources at West Virginia University in partial fulfillment

More information

Diversity Analysis of Coded OFDM in Frequency Selective Channels

Diversity Analysis of Coded OFDM in Frequency Selective Channels Diversity Analysis of Coded OFDM in Frequency Selective Channels 1 Koshy G., 2 Soumya J. W. 1 PG Scholar, 2 Assistant Professor, Communication Engineering, Mahatma Gandhi University Caarmel Engineering

More information

Rekha S.M, Manoj P.B. International Journal of Engineering and Advanced Technology (IJEAT) ISSN: , Volume-2, Issue-6, August 2013

Rekha S.M, Manoj P.B. International Journal of Engineering and Advanced Technology (IJEAT) ISSN: , Volume-2, Issue-6, August 2013 Comparing the BER Performance of WiMAX System by Using Different Concatenated Channel Coding Techniques under AWGN, Rayleigh and Rician Fading Channels Rekha S.M, Manoj P.B Abstract WiMAX (Worldwide Interoperability

More information

Fourier Transform Time Interleaving in OFDM Modulation

Fourier Transform Time Interleaving in OFDM Modulation 2006 IEEE Ninth International Symposium on Spread Spectrum Techniques and Applications Fourier Transform Time Interleaving in OFDM Modulation Guido Stolfi and Luiz A. Baccalá Escola Politécnica - University

More information

Effect of Satellite System Impairments on a Multilevel Coding System for Satellite Broadcasting

Effect of Satellite System Impairments on a Multilevel Coding System for Satellite Broadcasting Effect of Satellite System Impairments on a Multilevel Coding System for Satellite Broadcasting Aharon Vargas 1, Cédric Keip 1, Wolfgang H. Gerstacker 2, and Marco Breiling 1 1 Fraunhofer Institute for

More information

LDPC Coded OFDM with Alamouti/SVD Diversity Technique

LDPC Coded OFDM with Alamouti/SVD Diversity Technique LDPC Coded OFDM with Alamouti/SVD Diversity Technique Jeongseok Ha, Apurva. Mody, Joon Hyun Sung, John R. Barry, Steven W. McLaughlin and Gordon L. Stüber School of Electrical and Computer Engineering

More information

Performance of Channel Coded Noncoherent Systems: Modulation Choice, Information Rate, and Markov Chain Monte Carlo Detection

Performance of Channel Coded Noncoherent Systems: Modulation Choice, Information Rate, and Markov Chain Monte Carlo Detection Performance of Channel Coded Noncoherent Systems: Modulation Choice, Information Rate, and Markov Chain Monte Carlo Detection Rong-Rong Chen, Member, IEEE, Ronghui Peng, Student Member, IEEE 1 Abstract

More information

STUDY OF THE PERFORMANCE OF THE LINEAR AND NON-LINEAR NARROW BAND RECEIVERS FOR 2X2 MIMO SYSTEMS WITH STBC MULTIPLEXING AND ALAMOTI CODING

STUDY OF THE PERFORMANCE OF THE LINEAR AND NON-LINEAR NARROW BAND RECEIVERS FOR 2X2 MIMO SYSTEMS WITH STBC MULTIPLEXING AND ALAMOTI CODING International Journal of Electrical and Electronics Engineering Research Vol.1, Issue 1 (2011) 68-83 TJPRC Pvt. Ltd., STUDY OF THE PERFORMANCE OF THE LINEAR AND NON-LINEAR NARROW BAND RECEIVERS FOR 2X2

More information

White Paper FEC In Optical Transmission. Giacomo Losio ProLabs Head of Technology

White Paper FEC In Optical Transmission. Giacomo Losio ProLabs Head of Technology White Paper FEC In Optical Transmission Giacomo Losio ProLabs Head of Technology 2014 FEC In Optical Transmission When we introduced the DWDM optics, we left out one important ingredient that really makes

More information

Goa, India, October Question: 4/15 SOURCE 1 : IBM. G.gen: Low-density parity-check codes for DSL transmission.

Goa, India, October Question: 4/15 SOURCE 1 : IBM. G.gen: Low-density parity-check codes for DSL transmission. ITU - Telecommunication Standardization Sector STUDY GROUP 15 Temporary Document BI-095 Original: English Goa, India, 3 7 October 000 Question: 4/15 SOURCE 1 : IBM TITLE: G.gen: Low-density parity-check

More information

Physical Layer: Modulation, FEC. Wireless Networks: Guevara Noubir. S2001, COM3525 Wireless Networks Lecture 3, 1

Physical Layer: Modulation, FEC. Wireless Networks: Guevara Noubir. S2001, COM3525 Wireless Networks Lecture 3, 1 Wireless Networks: Physical Layer: Modulation, FEC Guevara Noubir Noubir@ccsneuedu S, COM355 Wireless Networks Lecture 3, Lecture focus Modulation techniques Bit Error Rate Reducing the BER Forward Error

More information

DVB-S2 Modulator with ACM features

DVB-S2 Modulator with ACM features SIXTH FRAMEWORK PROGRAMME Integrated Multi-layer Optimization in broadband DVB-S.2 SAtellite Networks FP6-027457 Deliverable D9-F DVB-S2 Modulator with ACM features Contractual Date of Delivery to the

More information