Admin. OFDM, Mobile Software Development Framework. Recap. Multiple Carrier Modulation. Benefit of Symbol Rate on ISI.

Size: px
Start display at page:

Download "Admin. OFDM, Mobile Software Development Framework. Recap. Multiple Carrier Modulation. Benefit of Symbol Rate on ISI."

Transcription

1 Admin. OFDM, Mobile Software Development Framework Homework to be posted by Friday Start to think about project 9/7/01 Y. Richard Yang 1 Recap Inter-Symbol Interference (ISI) Handle band limit ISI Handle multipath ISI Viterbi problems: Its complexity grows exponentially with D (the number of multipaths taps relative to the symbol time) Q: how to reduce D? OFDM: Basic Idea Uses multiple carriers modulation (MCM) each carrier (called a subcarrier) uses a low symbol rate for N parallel subcarriers, the symbol time can be N times longer spread symbols across multiple subcarriers also gains frequency diversity 3 4 Benefit of Symbol Rate on ISI Multiple Carrier Modulation

2 Multiple Carrier Modulation (MCM): Problem Despite wave shaping, there can be leak from one subcarrier to another subcarrier i j Objective: Avoid subcarrier interference Interference of subcarrier i on subcarrier j i j Conventional design: guard bands to avoid interference among subcarriers Guard band wastes spectrum 7 Assume no pulse wave shaping, matched filter T sin(π f i t +φ i )sin(π f j t +φ j ) 0 T = 1 cos[π ( f i f j )t +φ i φ j ]+ cos[π ( f i + f j )t +φ i +φ j ) 0 Condition for the interference to be always 0? 8 Objective: Avoid subcarrier interference if integer number of cycles in [0, T] T cos[π ft +φ]dt = 0 0 # cycles in T is T * f => T * f = integer OFDM Key Idea: Orthogonal Subcarriers Each subcarrier frequency is chosen so that an integral number of cycles in a symbol period, i.e., subcarrier freq = k 1/T 9 They do not need to have the same phase, so long integral number of cycles in symbol time T! 10 OFDM Modulation Orthogonal Frequency Division Multiplexing OFDM allows overlapping subcarriers frequencies a 11 1

3 OFDM Implementation Take N symbols and place one symbol on each subcarrier (freq.) Freq 0 e jπ 0 f sc 0 e jπ 0 f scts e jπ 0 f sc Ts OFDM: Implementation Issue Hardware implementation can be expensive if we use one oscillator for each subcarrier Software implementation requires N multiplications per time output => N multi. per N outputs Freq N-1 e jπ () f sc 0 e jπ () f scts e jπ () f sc Ts Freq 0 e jπ 0 f sc 0 e jπ 0 f scts e jπ 0 f sc Ts Freq N-1 e jπ () f sc 0 e jπ () f scts e jπ () f sc Ts Q: complexity of the implementation strategy? OFDM: Key Idea out k = d n e jπ (nf sc )kts Assume N outputs per symbol time T, f sc =1/T out k = d n e jπ (nf sc )kts = d n e jπ (nf sc )k N = d n e jπ Consider data as coefficients in the frequency domain, use inverse Fourier transform to generate time-domain sequence T 1 N nkf sct = d n e jπ 1 N nk OFDM Implementation: FFT channel OFDM Implementation Parallel data streams are used as inputs to an IFFT IFFT does multiplexing and modulation in one step! Guard Interval: Removing ISI Orthogonal subcarriers remove intercarrier interference Slow symbol rate reduces inter-symbol interference, but may still have ISI Basic idea of GI: skip the first part damaged signal More details: Chap Gast 18 3

4 OFDM Guard Interval OFDM Implementation OFDM in 80.11a Other Multipath Techniques Subcarrier frequency spacing 31.5KHz 1/31.5KHz = 3.us 64 samples FFT 16 samples Guard Interval There are other techniques to handle multipath such as Rake Receiver See backup slides for some details getieee80/download/ 80.11a-1999.pdf 1 Summary of PHY @1.4Gbps Transmitter: Direct Sequence Symbol Wave Scramble DQPSK Mod Spread Spectrum Shaping To RF @Mbps Receiver: Decimation Despreading DQPSK Demod Descramble From RF To MAC (a) IEEE Convolutional Symbol Wave Scramble Interleaving QAM Mod IFFT GI Addition Transmitter: encoder Shaping To RF Demod + Viterbi Decimation Remove GI FFT Descramble Interleaving decoding From RF To MAC PHY (b) IEEE 80.11a/g 4Mbps

5 Big Picture Overview Applications Wireless/Mobile Application Development Framework Foundational Services: Communications, Location, Service Discovery, UI/Media, Power Management, Security 5 Mobile/Wireless software development framework for mobile wireless applications is a quite large topic We have already seen Gnuradio as an example framework We will cover more examples TinyOS, JME, Android, IOS Approach for designing/evaluating each software development framework: Focus on the key concepts introduced by each framework 6 Outline GNURadio: Design Objective A software development toolkit that provides signal processing blocks to implement software-defined radio systems. 7 8 Outline GNURadio Hardware Arch RF Frontend (Daugtherboard) Hardware Frontend ADC/DAC and Digital Frontend (USRP) Host Computer GNU Radio Software 9 5

6 Outline Software concepts Basic Software Concepts Block Flow graph 31 Basic Software Concepts classgr block.html gr_basic_block (name, in/out signature, msg queue) gr_block (Leaf block; key functions forecast/ general_work) Example: doc/howto-write-a-block.html gr_hier_block (container block; key functions: connect/disconnect/lock/unlock) gr_top_block (flow graph; start/stop/wait) Software/Execution Model Software model Python Application management (e.g., GUI) Flow graph construction Non-streaming code (e.g., MAC-layer) C++ Signal processing blocks Certain routines also coded in assembly q Execution model q Python thread for each top_block Discussion: benefits/issues of the hybrid software structure? Python Application development Flow graph construction C++ Signal processing blocks Summary: GNURadio Interesting/key software design techniques you learned from GNURadio? Outline Software concepts TinyOS

7 Design Goal Hardware A free and open source component based operating system and platform targeting wireless sensor networks (WSNs) Example app Environment monitoring, e.g., measure temperature, lighting values/events periodically transmit measurements/events to a base station forward data for other nodes that are out of range of the base station x 1.5 Assembled from off-the-shelf components 4Mhz, 8bit MCU (ATMEL) 51 bytes RAM, 8KB ROM Devices serial Port temperature sensor & light sensor 900Mhz Radio (RF monolithics) ft. range LED outputs 38 Schematic Diagram of a Mote Outline Software concepts TinyOS Software concepts Requirements on Software Dev. Framework TinyOS: Software Concept Flexible configuration of attached devices Small foot print devices have limited memory and power resources TinyOS: Generate customized OS + application for each given scenario support one application at a time but flexible reprogramming

8 Schematic Diagram TinyOS: Software Concepts A TinyOS consists of one or more components linked together software components motivated by hardware component Each component specifies that it provides some interfaces allows other components to control it also uses some interfaces control other components Interface Interface: Examples An interface declares a set of functions called commands that provider must implement another set of functions called events that the interface user must implement A uses interfaces I1 and I I1 I commands events commands events B provides I1 C provides I C provides I3 45 StdControl.nc interface StdControl { command result_t init(); command result_t start(); command result_t stop(); } ADC.nc interface ADC { async command result_t getdata(); } async command result_t getcontinuousdata(); event result_t dataready(uint 16_t data); Timer.nc interface Timer { command result_t start( char type, uint3_t interval); command result_t stop(); event result_t fired(); } 46 Backup Slides Rake Receiver

9 Multipath Diversity: Rake Receiver Multipath Diversity: Rake Receiver Instead of considering delay spread as an issue, use multipath signals to recover the original signal Used in IS-95 CDMA, 3G CDMA, and Invented by Price and Green in 1958 R. Price and P. E. Green, "A communication technique for multipath channels," Proc. of the IRE, pp , 1958 Use several "sub-receivers" each delayed slightly to tune in to the individual multipath components Each component is decoded independently, but at a later stage combined this could very well result in higher SNR in a multipath environment than in a "clean" environment LOS pulse multipath pulses Rake Receiver Blocks Rake Receiver: Matched Filter Correlator Finger 1 Finger Finger 3 Combiner Impulse response measurement Tracks and monitors peaks with a measurement rate depending on speeds of mobile station and on propagation environment Allocate fingers: largest peaks to RAKE fingers 51 5 Rake Receiver: Combiner Comparison [PAH95] The weighting coefficients are based on the power or the SNR from each correlator output If the power or SNR is small out of a particular finger, it will be assigned a smaller weight: Zm αm = M Zi i= 1 53 MCM is OFDM 54 9

CS434/534: Topics in Networked (Networking) Systems

CS434/534: Topics in Networked (Networking) Systems CS434/534: Topics in Networked (Networking) Systems Improve Wireless Capacity; Programmable Wireless Networks Yang (Richard) Yang Computer Science Department Yale University 208A Watson Email: yry@cs.yale.edu

More information

CS434/534: Topics in Networked (Networking) Systems

CS434/534: Topics in Networked (Networking) Systems CS434/534: Topics in Networked (Networking) Systems Wireless Foundation: Modulation and Demodulation Yang (Richard) Yang Computer Science Department Yale University 208A Watson Email: yry@cs.yale.edu http://zoo.cs.yale.edu/classes/cs434/

More information

EC 551 Telecommunication System Engineering. Mohamed Khedr

EC 551 Telecommunication System Engineering. Mohamed Khedr EC 551 Telecommunication System Engineering Mohamed Khedr http://webmail.aast.edu/~khedr 1 Mohamed Khedr., 2008 Syllabus Tentatively Week 1 Week 2 Week 3 Week 4 Week 5 Week 6 Week 7 Week 8 Week 9 Week

More information

Lecture 3: Wireless Physical Layer: Modulation Techniques. Mythili Vutukuru CS 653 Spring 2014 Jan 13, Monday

Lecture 3: Wireless Physical Layer: Modulation Techniques. Mythili Vutukuru CS 653 Spring 2014 Jan 13, Monday Lecture 3: Wireless Physical Layer: Modulation Techniques Mythili Vutukuru CS 653 Spring 2014 Jan 13, Monday Modulation We saw a simple example of amplitude modulation in the last lecture Modulation how

More information

Mohammad Hossein Manshaei 1393

Mohammad Hossein Manshaei 1393 Mohammad Hossein Manshaei manshaei@gmail.com 1393 1 PLCP format, Data Rates, OFDM, Modulations, 2 IEEE 802.11a: Transmit and Receive Procedure 802.11a Modulations BPSK Performance Analysis Convolutional

More information

Lecture 13. Introduction to OFDM

Lecture 13. Introduction to OFDM Lecture 13 Introduction to OFDM Ref: About-OFDM.pdf Orthogonal frequency division multiplexing (OFDM) is well-known to be effective against multipath distortion. It is a multicarrier communication scheme,

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

Outline / Wireless Networks and Applications Lecture 7: Physical Layer OFDM. Frequency-Selective Radio Channel. How Do We Increase Rates?

Outline / Wireless Networks and Applications Lecture 7: Physical Layer OFDM. Frequency-Selective Radio Channel. How Do We Increase Rates? Page 1 Outline 18-452/18-750 Wireless Networks and Applications Lecture 7: Physical Layer OFDM Peter Steenkiste Carnegie Mellon University RF introduction Modulation and multiplexing Channel capacity Antennas

More information

Practical issue: Group definition. TSTE17 System Design, CDIO. Quadrature Amplitude Modulation (QAM) Components of a digital communication system

Practical issue: Group definition. TSTE17 System Design, CDIO. Quadrature Amplitude Modulation (QAM) Components of a digital communication system 1 2 TSTE17 System Design, CDIO Introduction telecommunication OFDM principle How to combat ISI How to reduce out of band signaling Practical issue: Group definition Project group sign up list will be put

More information

ENHANCING BER PERFORMANCE FOR OFDM

ENHANCING BER PERFORMANCE FOR OFDM RESEARCH ARTICLE OPEN ACCESS ENHANCING BER PERFORMANCE FOR OFDM Amol G. Bakane, Prof. Shraddha Mohod Electronics Engineering (Communication), TGPCET Nagpur Electronics & Telecommunication Engineering,TGPCET

More information

Bit Error Rate Performance Evaluation of Various Modulation Techniques with Forward Error Correction Coding of WiMAX

Bit Error Rate Performance Evaluation of Various Modulation Techniques with Forward Error Correction Coding of WiMAX Bit Error Rate Performance Evaluation of Various Modulation Techniques with Forward Error Correction Coding of WiMAX Amr Shehab Amin 37-20200 Abdelrahman Taha 31-2796 Yahia Mobasher 28-11691 Mohamed Yasser

More information

CS434/534: Topics in Networked (Networking) Systems

CS434/534: Topics in Networked (Networking) Systems CS434/534: Topics in Networked (Networking) Systems Wireless Foundation: Diversity Design for Flat fading Yang (Richard) Yang Computer Science Department Yale University 208A Watson Email: yry@cs.yale.edu

More information

Multi-carrier Modulation and OFDM

Multi-carrier Modulation and OFDM 3/28/2 Multi-carrier Modulation and OFDM Prof. Luiz DaSilva dasilval@tcd.ie +353 896-366 Multi-carrier systems: basic idea Typical mobile radio channel is a fading channel that is flat or frequency selective

More information

OFDMA PHY for EPoC: a Baseline Proposal. Andrea Garavaglia and Christian Pietsch Qualcomm PAGE 1

OFDMA PHY for EPoC: a Baseline Proposal. Andrea Garavaglia and Christian Pietsch Qualcomm PAGE 1 OFDMA PHY for EPoC: a Baseline Proposal Andrea Garavaglia and Christian Pietsch Qualcomm PAGE 1 Supported by Jorge Salinger (Comcast) Rick Li (Cortina) Lup Ng (Cortina) PAGE 2 Outline OFDM: motivation

More information

Basic idea: divide spectrum into several 528 MHz bands.

Basic idea: divide spectrum into several 528 MHz bands. IEEE 802.15.3a Wireless Information Transmission System Lab. Institute of Communications Engineering g National Sun Yat-sen University Overview of Multi-band OFDM Basic idea: divide spectrum into several

More information

Technical Aspects of LTE Part I: OFDM

Technical Aspects of LTE Part I: OFDM Technical Aspects of LTE Part I: OFDM By Mohammad Movahhedian, Ph.D., MIET, MIEEE m.movahhedian@mci.ir ITU regional workshop on Long-Term Evolution 9-11 Dec. 2013 Outline Motivation for LTE LTE Network

More information

Receiver Designs for the Radio Channel

Receiver Designs for the Radio Channel Receiver Designs for the Radio Channel COS 463: Wireless Networks Lecture 15 Kyle Jamieson [Parts adapted from C. Sodini, W. Ozan, J. Tan] Today 1. Delay Spread and Frequency-Selective Fading 2. Time-Domain

More information

Orthogonal Frequency Division Multiplexing (OFDM) based Uplink Multiple Access Method over AWGN and Fading Channels

Orthogonal Frequency Division Multiplexing (OFDM) based Uplink Multiple Access Method over AWGN and Fading Channels Orthogonal Frequency Division Multiplexing (OFDM) based Uplink Multiple Access Method over AWGN and Fading Channels Prashanth G S 1 1Department of ECE, JNNCE, Shivamogga ---------------------------------------------------------------------***----------------------------------------------------------------------

More information

Chapter 5 OFDM. Office Hours: BKD Tuesday 14:00-16:00 Thursday 9:30-11:30

Chapter 5 OFDM. Office Hours: BKD Tuesday 14:00-16:00 Thursday 9:30-11:30 Chapter 5 OFDM 1 Office Hours: BKD 3601-7 Tuesday 14:00-16:00 Thursday 9:30-11:30 2 OFDM: Overview Let S 1, S 2,, S N be the information symbol. The discrete baseband OFDM modulated symbol can be expressed

More information

DESIGN, IMPLEMENTATION AND OPTIMISATION OF 4X4 MIMO-OFDM TRANSMITTER FOR

DESIGN, IMPLEMENTATION AND OPTIMISATION OF 4X4 MIMO-OFDM TRANSMITTER FOR DESIGN, IMPLEMENTATION AND OPTIMISATION OF 4X4 MIMO-OFDM TRANSMITTER FOR COMMUNICATION SYSTEMS Abstract M. Chethan Kumar, *Sanket Dessai Department of Computer Engineering, M.S. Ramaiah School of Advanced

More information

Mobile & Wireless Networking. Lecture 2: Wireless Transmission (2/2)

Mobile & Wireless Networking. Lecture 2: Wireless Transmission (2/2) 192620010 Mobile & Wireless Networking Lecture 2: Wireless Transmission (2/2) [Schiller, Section 2.6 & 2.7] [Reader Part 1: OFDM: An architecture for the fourth generation] Geert Heijenk Outline of Lecture

More information

EE359 Lecture 18 Outline

EE359 Lecture 18 Outline EE359 Lecture 18 Outline Announcements HW due Fri; last HW posted, due Friday 12/9 at 4 pm (no late HWs) MIMO decoder supplemental handout posted Lectures net week are Monday 12/5 12-1:20 (Thornton 102

More information

Part 3. Multiple Access Methods. p. 1 ELEC6040 Mobile Radio Communications, Dept. of E.E.E., HKU

Part 3. Multiple Access Methods. p. 1 ELEC6040 Mobile Radio Communications, Dept. of E.E.E., HKU Part 3. Multiple Access Methods p. 1 ELEC6040 Mobile Radio Communications, Dept. of E.E.E., HKU Review of Multiple Access Methods Aim of multiple access To simultaneously support communications between

More information

Comparative Study of OFDM & MC-CDMA in WiMAX System

Comparative Study of OFDM & MC-CDMA in WiMAX System IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 9, Issue 1, Ver. IV (Jan. 2014), PP 64-68 Comparative Study of OFDM & MC-CDMA in WiMAX

More information

Baseline Proposal for EPoC PHY Layer

Baseline Proposal for EPoC PHY Layer Baseline Proposal for EPoC PHY Layer AVI KLIGER, BROADCOM LEO MONTREUIL, BROADCOM ED BOYD, BROADCOM NOTE This presentation includes results based on an in house Channel Models When an approved Task Force

More information

Experimenting with Orthogonal Frequency-Division Multiplexing OFDM Modulation

Experimenting with Orthogonal Frequency-Division Multiplexing OFDM Modulation FUTEBOL Federated Union of Telecommunications Research Facilities for an EU-Brazil Open Laboratory Experimenting with Orthogonal Frequency-Division Multiplexing OFDM Modulation The content of these slides

More information

ELEC 546 Lecture #9. Orthogonal Frequency Division Multiplexing (OFDM): Basic OFDM System

ELEC 546 Lecture #9. Orthogonal Frequency Division Multiplexing (OFDM): Basic OFDM System ELEC 546 Lecture #9 Ortogonal Frequency Division Multiplexing (OFDM): Basic OFDM System Outline Motivations Diagonalization of Vector Cannels Transmission of one OFDM Symbol Transmission of sequence of

More information

2002 IEEE International Solid-State Circuits Conference 2002 IEEE

2002 IEEE International Solid-State Circuits Conference 2002 IEEE Outline 802.11a Overview Medium Access Control Design Baseband Transmitter Design Baseband Receiver Design Chip Details What is 802.11a? IEEE standard approved in September, 1999 12 20MHz channels at 5.15-5.35

More information

Multi-Carrier Systems

Multi-Carrier Systems Wireless Information Transmission System Lab. Multi-Carrier Systems 2006/3/9 王森弘 Institute of Communications Engineering National Sun Yat-sen University Outline Multi-Carrier Systems Overview Multi-Carrier

More information

Baseline Proposal for EPoC PHY Layer IEEE 802.3bn EPoC September 2012 AVI KLIGER, BROADCOM LEO MONTREUIL, BROADCOM ED BOYD, BROADCOM

Baseline Proposal for EPoC PHY Layer IEEE 802.3bn EPoC September 2012 AVI KLIGER, BROADCOM LEO MONTREUIL, BROADCOM ED BOYD, BROADCOM Baseline Proposal for EPoC PHY Layer IEEE 802.3bn EPoC September 2012 AVI KLIGER, BROADCOM LEO MONTREUIL, BROADCOM ED BOYD, BROADCOM NOTE This presentation includes results based on an inhouse Channel

More information

OFDM Systems For Different Modulation Technique

OFDM Systems For Different Modulation Technique Computing For Nation Development, February 08 09, 2008 Bharati Vidyapeeth s Institute of Computer Applications and Management, New Delhi OFDM Systems For Different Modulation Technique Mrs. Pranita N.

More information

Orthogonal Frequency Domain Multiplexing

Orthogonal Frequency Domain Multiplexing Chapter 19 Orthogonal Frequency Domain Multiplexing 450 Contents Principle and motivation Analogue and digital implementation Frequency-selective channels: cyclic prefix Channel estimation Peak-to-average

More information

Implementation and Comparative analysis of Orthogonal Frequency Division Multiplexing (OFDM) Signaling Rashmi Choudhary

Implementation and Comparative analysis of Orthogonal Frequency Division Multiplexing (OFDM) Signaling Rashmi Choudhary Implementation and Comparative analysis of Orthogonal Frequency Division Multiplexing (OFDM) Signaling Rashmi Choudhary M.Tech Scholar, ECE Department,SKIT, Jaipur, Abstract Orthogonal Frequency Division

More information

Chapter 2 Overview - 1 -

Chapter 2 Overview - 1 - Chapter 2 Overview Part 1 (last week) Digital Transmission System Frequencies, Spectrum Allocation Radio Propagation and Radio Channels Part 2 (today) Modulation, Coding, Error Correction Part 3 (next

More information

Evaluation of BER and PAPR by using Different Modulation Schemes in OFDM System

Evaluation of BER and PAPR by using Different Modulation Schemes in OFDM System International Journal of Computer Networks and Communications Security VOL. 3, NO. 7, JULY 2015, 277 282 Available online at: www.ijcncs.org E-ISSN 2308-9830 (Online) / ISSN 2410-0595 (Print) Evaluation

More information

Wireless Networks (PHY)

Wireless Networks (PHY) 802.11 Wireless Networks (PHY) Kate Ching-Ju Lin ( 林靖茹 ) Academia Sinica 2016.03.18 CSIE, NTU Reference 1. OFDM Tutorial online: http://home.iitj.ac.in/~ramana/ofdmtutorial.pdf 2. OFDM Wireless LWNs: A

More information

Performance Analysis of Concatenated RS-CC Codes for WiMax System using QPSK

Performance Analysis of Concatenated RS-CC Codes for WiMax System using QPSK Performance Analysis of Concatenated RS-CC Codes for WiMax System using QPSK Department of Electronics Technology, GND University Amritsar, Punjab, India Abstract-In this paper we present a practical RS-CC

More information

Improving Data Transmission Efficiency over Power Line Communication (PLC) System Using OFDM

Improving Data Transmission Efficiency over Power Line Communication (PLC) System Using OFDM Improving Data Transmission Efficiency over Power Line Communication (PLC) System Using OFDM Charles U. Ndujiuba 1, Samuel N. John 1, Oladimeji Ogunseye 2 1 Electrical & Information Engineering, Covenant

More information

ICI Mitigation for Mobile OFDM with Application to DVB-H

ICI Mitigation for Mobile OFDM with Application to DVB-H ICI Mitigation for Mobile OFDM with Application to DVB-H Outline Background and Motivation Coherent Mobile OFDM Detection DVB-H System Description Hybrid Frequency/Time-Domain Channel Estimation Conclusions

More information

Differential Modulation

Differential Modulation Data Detection and Channel Estimation of OFDM Systems Using Differential Modulation A Thesis Submitted to the College of Graduate Studies and Research In Partial Fulfillment of the Requirements For the

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

Performance Evaluation of Wireless Communication System Employing DWT-OFDM using Simulink Model

Performance Evaluation of Wireless Communication System Employing DWT-OFDM using Simulink Model Performance Evaluation of Wireless Communication System Employing DWT-OFDM using Simulink Model M. Prem Anand 1 Rudrashish Roy 2 1 Assistant Professor 2 M.E Student 1,2 Department of Electronics & Communication

More information

Orthogonal Frequency Division Multiplexing (OFDM)

Orthogonal Frequency Division Multiplexing (OFDM) Orthogonal Frequency Division Multiplexing (OFDM) Presenter: Engr. Dr. Noor M. Khan Professor Department of Electrical Engineering, Muhammad Ali Jinnah University, Islamabad Campus, Islamabad, PAKISTAN

More information

Performance Evaluation of OFDM System with Rayleigh, Rician and AWGN Channels

Performance Evaluation of OFDM System with Rayleigh, Rician and AWGN Channels Performance Evaluation of OFDM System with Rayleigh, Rician and AWGN Channels Abstract A Orthogonal Frequency Division Multiplexing (OFDM) scheme offers high spectral efficiency and better resistance to

More information

Wireless Networks (PHY): Design for Diversity

Wireless Networks (PHY): Design for Diversity Wireless Networks (PHY): Design for Diversity Y. Richard Yang 9/20/2012 Outline Admin and recap Design for diversity 2 Admin Assignment 1 questions Assignment 1 office hours Thursday 3-4 @ AKW 307A 3 Recap:

More information

Multipath can be described in two domains: time and frequency

Multipath can be described in two domains: time and frequency Multipath can be described in two domains: and frequency Time domain: Impulse response Impulse response Frequency domain: Frequency response f Sinusoidal signal as input Frequency response Sinusoidal signal

More information

Fundamentals of OFDM Communication Technology

Fundamentals of OFDM Communication Technology Fundamentals of OFDM Communication Technology Fuyun Ling Rev. 1, 04/2013 1 Outline Fundamentals of OFDM An Introduction OFDM System Design Considerations Key OFDM Receiver Functional Blocks Example: LTE

More information

Wireless PHY: Modulation and Demodulation

Wireless PHY: Modulation and Demodulation Wireless PHY: Modulation and Demodulation Y. Richard Yang 09/11/2012 Outline Admin and recap Amplitude demodulation Digital modulation 2 Admin Assignment 1 posted 3 Recap: Modulation Objective o Frequency

More information

Chapter 2 Overview - 1 -

Chapter 2 Overview - 1 - Chapter 2 Overview Part 1 (last week) Digital Transmission System Frequencies, Spectrum Allocation Radio Propagation and Radio Channels Part 2 (today) Modulation, Coding, Error Correction Part 3 (next

More information

With a lot of material from Rich Nicholls, CTL/RCL and Kurt Sundstrom, of unknown whereabouts

With a lot of material from Rich Nicholls, CTL/RCL and Kurt Sundstrom, of unknown whereabouts Signal Processing for OFDM Communication Systems Eric Jacobsen Minister of Algorithms, Intel Labs Communication Technology Laboratory/ Radio Communications Laboratory July 29, 2004 With a lot of material

More information

OFDMA and MIMO Notes

OFDMA and MIMO Notes OFDMA and MIMO Notes EE 442 Spring Semester Lecture 14 Orthogonal Frequency Division Multiplexing (OFDM) is a digital multi-carrier modulation technique extending the concept of single subcarrier modulation

More information

Jeffrey M. Gilbert, Ph.D. Manager of Advanced Technology Atheros Communications

Jeffrey M. Gilbert, Ph.D. Manager of Advanced Technology Atheros Communications 802.11a Wireless Networks: Principles and Performance Jeffrey M. Gilbert, Ph.D. Manager of Advanced Technology Atheros Communications May 8, 2002 IEEE Santa Clara Valley Comm Soc Atheros Communications,

More information

Design and Simulation of COFDM for High Speed Wireless Communication and Performance Analysis

Design and Simulation of COFDM for High Speed Wireless Communication and Performance Analysis Design and Simulation of COFDM for High Speed Wireless Communication and Performance Analysis Arun Agarwal ITER College, Siksha O Anusandhan University Department of Electronics and Communication Engineering

More information

Anju 1, Amit Ahlawat 2

Anju 1, Amit Ahlawat 2 Implementation of OFDM based Transreciever for IEEE 802.11A on FPGA Anju 1, Amit Ahlawat 2 1 Hindu College of Engineering, Sonepat 2 Shri Baba Mastnath Engineering College Rohtak Abstract This paper focus

More information

ECE5984 Orthogonal Frequency Division Multiplexing and Related Technologies Fall Mohamed Essam Khedr. Fading Channels

ECE5984 Orthogonal Frequency Division Multiplexing and Related Technologies Fall Mohamed Essam Khedr. Fading Channels ECE5984 Orthogonal Frequency Division Multiplexing and Related Technologies Fall 2007 Mohamed Essam Khedr Fading Channels Major Learning Objectives Upon successful completion of the course the student

More information

Introduction to OFDM Systems

Introduction to OFDM Systems Introduction to OFDM Systems Dr. Prapun Suksompong prapun@siit.tu.ac.th June 23, 2010 1 Outline 1. Overview of OFDM technique 2. Wireless Channel 3. Multi-carrier Transmission 4. Implementation: DFT and

More information

CHAPTER 4. DESIGN OF ADAPTIVE MODULATION SYSTEM BY USING 1/3 RATE TURBO CODER (SNR Vs BER)

CHAPTER 4. DESIGN OF ADAPTIVE MODULATION SYSTEM BY USING 1/3 RATE TURBO CODER (SNR Vs BER) 112 CHAPTER 4 DESIGN OF ADAPTIVE MODULATION SYSTEM BY USING 1/3 RATE TURBO CODER (SNR Vs BER) 4.1 NECESSITY FOR SYSTEM DESIGN The improved BER was achieved by inhibiting 1/3 rated Turbo coder instead of

More information

Advanced 3G & 4G Wireless Communication Prof. Aditya K. Jaganathan Department of Electrical Engineering Indian Institute of Technology, Kanpur

Advanced 3G & 4G Wireless Communication Prof. Aditya K. Jaganathan Department of Electrical Engineering Indian Institute of Technology, Kanpur (Refer Slide Time: 00:17) Advanced 3G & 4G Wireless Communication Prof. Aditya K. Jaganathan Department of Electrical Engineering Indian Institute of Technology, Kanpur Lecture - 32 MIMO-OFDM (Contd.)

More information

Performance Analysis of OFDM for Different Digital Modulation Schemes using Matlab Simulation

Performance Analysis of OFDM for Different Digital Modulation Schemes using Matlab Simulation J. Bangladesh Electron. 10 (7-2); 7-11, 2010 Performance Analysis of OFDM for Different Digital Modulation Schemes using Matlab Simulation Md. Shariful Islam *1, Md. Asek Raihan Mahmud 1, Md. Alamgir Hossain

More information

SC - Single carrier systems One carrier carries data stream

SC - Single carrier systems One carrier carries data stream Digital modulation SC - Single carrier systems One carrier carries data stream MC - Multi-carrier systems Many carriers are used for data transmission. Data stream is divided into sub-streams and each

More information

OFDM Transceiver using Verilog Proposal

OFDM Transceiver using Verilog Proposal OFDM Transceiver using Verilog Proposal PAUL PETHSOMVONG ZACH ASAL DEPARTMENT OF ELECTRICAL ENGINEERING BRADLEY UNIVERSITY PEORIA, ILLINOIS NOVEMBER 21, 2013 1 Project Outline Orthogonal Frequency Division

More information

Outline. What is GNU Radio? Basic Concepts Developing Applications

Outline. What is GNU Radio? Basic Concepts Developing Applications GNU Radio Outline What is GNU Radio? Basic Concepts Developing Applications 2 What is GNU Radio? Software toolkit for signal processing Software radio construction Rapid development USRP (Universal Software

More information

OFDM Transceiver with Gaussian and Alpha-Stable Noise. Presenter: Umber Noreen Supervisors: Ahcene Bounceur Laurent Clavier

OFDM Transceiver with Gaussian and Alpha-Stable Noise. Presenter: Umber Noreen Supervisors: Ahcene Bounceur Laurent Clavier OFDM Transceiver with Gaussian and Alpha-Stable Noise Presenter: Umber Noreen Supervisors: Ahcene Bounceur Laurent Clavier 1 Contents What is OFDM Why OFDM for Broadband Systems OFDM Transceiver Step by

More information

S.D.M COLLEGE OF ENGINEERING AND TECHNOLOGY

S.D.M COLLEGE OF ENGINEERING AND TECHNOLOGY VISHVESHWARAIAH TECHNOLOGICAL UNIVERSITY S.D.M COLLEGE OF ENGINEERING AND TECHNOLOGY A seminar report on Orthogonal Frequency Division Multiplexing (OFDM) Submitted by Sandeep Katakol 2SD06CS085 8th semester

More information

Performance Evaluation of STBC-OFDM System for Wireless Communication

Performance Evaluation of STBC-OFDM System for Wireless Communication Performance Evaluation of STBC-OFDM System for Wireless Communication Apeksha Deshmukh, Prof. Dr. M. D. Kokate Department of E&TC, K.K.W.I.E.R. College, Nasik, apeksha19may@gmail.com Abstract In this paper

More information

Survey on Effective OFDM Technology for 4G

Survey on Effective OFDM Technology for 4G Survey on Effective OFDM Technology for 4G Kanchan Vijay Patil, 2 R D Patane, Lecturer, 2 Professor, Electronics and Telecommunication, ARMIET, Shahpur, India 2 Terna college of engineering, Nerul, India

More information

Orthogonal frequency division multiplexing (OFDM)

Orthogonal frequency division multiplexing (OFDM) Orthogonal frequency division multiplexing (OFDM) OFDM was introduced in 1950 but was only completed in 1960 s Originally grew from Multi-Carrier Modulation used in High Frequency military radio. Patent

More information

An OFDM Transmitter and Receiver using NI USRP with LabVIEW

An OFDM Transmitter and Receiver using NI USRP with LabVIEW An OFDM Transmitter and Receiver using NI USRP with LabVIEW Saba Firdose, Shilpa B, Sushma S Department of Electronics & Communication Engineering GSSS Institute of Engineering & Technology For Women Abstract-

More information

Cognitive Radio Transmission Based on Chip-level Space Time Block Coded MC-DS-CDMA over Fast-Fading Channel

Cognitive Radio Transmission Based on Chip-level Space Time Block Coded MC-DS-CDMA over Fast-Fading Channel Journal of Scientific & Industrial Research Vol. 73, July 2014, pp. 443-447 Cognitive Radio Transmission Based on Chip-level Space Time Block Coded MC-DS-CDMA over Fast-Fading Channel S. Mohandass * and

More information

Performance Evaluation of IEEE STD d Transceiver

Performance Evaluation of IEEE STD d Transceiver IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735. Volume 6, Issue 2 (May. - Jun. 2013), PP 21-26 Performance Evaluation of IEEE STD 802.16d Transceiver

More information

Chapter 3 Introduction to OFDM-Based Systems

Chapter 3 Introduction to OFDM-Based Systems Chapter 3 Introduction to OFDM-Based Systems 3.1 Eureka 147 DAB System he Eureka 147 DAB [5] system has the following features: it has sound quality comparable to that of CD, it can provide maximal coverage

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

Wireless Medium Access Control and CDMA-based Communication Lesson 16 Orthogonal Frequency Division Medium Access (OFDM)

Wireless Medium Access Control and CDMA-based Communication Lesson 16 Orthogonal Frequency Division Medium Access (OFDM) Wireless Medium Access Control and CDMA-based Communication Lesson 16 Orthogonal Frequency Division Medium Access (OFDM) 1 4G File transfer at 10 Mbps High resolution 1024 1920 pixel hi-vision picture

More information

UNIVERSITY OF MICHIGAN DEPARTMENT OF ELECTRICAL ENGINEERING : SYSTEMS EECS 555 DIGITAL COMMUNICATION THEORY

UNIVERSITY OF MICHIGAN DEPARTMENT OF ELECTRICAL ENGINEERING : SYSTEMS EECS 555 DIGITAL COMMUNICATION THEORY UNIVERSITY OF MICHIGAN DEPARTMENT OF ELECTRICAL ENGINEERING : SYSTEMS EECS 555 DIGITAL COMMUNICATION THEORY Study Of IEEE P802.15.3a physical layer proposals for UWB: DS-UWB proposal and Multiband OFDM

More information

Performance of Orthogonal Frequency Division Multiplexing System Based on Mobile Velocity and Subcarrier

Performance of Orthogonal Frequency Division Multiplexing System Based on Mobile Velocity and Subcarrier Journal of Computer Science 6 (): 94-98, 00 ISSN 549-3636 00 Science Publications Performance of Orthogonal Frequency Division Multiplexing System ased on Mobile Velocity and Subcarrier Zulkeflee in halidin

More information

Advanced 3G & 4G Wireless Communication Prof. Aditya K. Jagannatham Department of Electrical Engineering Indian Institute of Technology, Kanpur

Advanced 3G & 4G Wireless Communication Prof. Aditya K. Jagannatham Department of Electrical Engineering Indian Institute of Technology, Kanpur Advanced 3G & 4G Wireless Communication Prof. Aditya K. Jagannatham Department of Electrical Engineering Indian Institute of Technology, Kanpur Lecture - 30 OFDM Based Parallelization and OFDM Example

More information

Page 1. Outline : Wireless Networks Lecture 6: Final Physical Layer. Direct Sequence Spread Spectrum (DSSS) Spread Spectrum

Page 1. Outline : Wireless Networks Lecture 6: Final Physical Layer. Direct Sequence Spread Spectrum (DSSS) Spread Spectrum Outline 18-759 : Wireless Networks Lecture 6: Final Physical Layer Peter Steenkiste Dina Papagiannaki Spring Semester 2009 http://www.cs.cmu.edu/~prs/wireless09/ Peter A. Steenkiste 1 RF introduction Modulation

More information

S PG Course in Radio Communications. Orthogonal Frequency Division Multiplexing Yu, Chia-Hao. Yu, Chia-Hao 7.2.

S PG Course in Radio Communications. Orthogonal Frequency Division Multiplexing Yu, Chia-Hao. Yu, Chia-Hao 7.2. S-72.4210 PG Course in Radio Communications Orthogonal Frequency Division Multiplexing Yu, Chia-Hao chyu@cc.hut.fi 7.2.2006 Outline OFDM History OFDM Applications OFDM Principles Spectral shaping Synchronization

More information

Broadband OFDM-FDMA System for the Uplink of a Wireless LAN

Broadband OFDM-FDMA System for the Uplink of a Wireless LAN Broadband OFDM-FDMA System for the Uplink of a Wireless LAN Dirk Galda and Hermann Rohling Department of Telecommunications,TU of Hamburg-Harburg Eißendorfer Straße 40, 21073 Hamburg, Germany Elena Costa,

More information

Presentation Outline. Advisors: Dr. In Soo Ahn Dr. Thomas L. Stewart. Team Members: Luke Vercimak Karl Weyeneth. Karl. Luke

Presentation Outline. Advisors: Dr. In Soo Ahn Dr. Thomas L. Stewart. Team Members: Luke Vercimak Karl Weyeneth. Karl. Luke Bradley University Department of Electrical and Computer Engineering Senior Capstone Project Presentation May 2nd, 2006 Team Members: Luke Vercimak Karl Weyeneth Advisors: Dr. In Soo Ahn Dr. Thomas L.

More information

BROADBAND HIGH DATA RATE SIGNALS IN SPACE FOR MILITARY APPLICATIONS WITH CODED OFDM

BROADBAND HIGH DATA RATE SIGNALS IN SPACE FOR MILITARY APPLICATIONS WITH CODED OFDM BROADBAND HIGH DATA RATE SIGNALS IN SPACE FOR MILITARY APPLICATIONS WITH CODED OFDM Dr. Thomas Kuhwald, Dr. Andrew Schaefer, Thorben Detert, Dr. Thomas Nicolay (Rohde & Schwarz, Munich, Germany; Thomas.Nicolay@rsd.rohde-schwarz.com)

More information

COHERENT DETECTION OPTICAL OFDM SYSTEM

COHERENT DETECTION OPTICAL OFDM SYSTEM 342 COHERENT DETECTION OPTICAL OFDM SYSTEM Puneet Mittal, Nitesh Singh Chauhan, Anand Gaurav B.Tech student, Electronics and Communication Engineering, VIT University, Vellore, India Jabeena A Faculty,

More information

Simple Algorithm in (older) Selection Diversity. Receiver Diversity Can we Do Better? Receiver Diversity Optimization.

Simple Algorithm in (older) Selection Diversity. Receiver Diversity Can we Do Better? Receiver Diversity Optimization. 18-452/18-750 Wireless Networks and Applications Lecture 6: Physical Layer Diversity and Coding Peter Steenkiste Carnegie Mellon University Spring Semester 2017 http://www.cs.cmu.edu/~prs/wirelesss17/

More information

Frame Synchronization Symbols for an OFDM System

Frame Synchronization Symbols for an OFDM System Frame Synchronization Symbols for an OFDM System Ali A. Eyadeh Communication Eng. Dept. Hijjawi Faculty for Eng. Technology Yarmouk University, Irbid JORDAN aeyadeh@yu.edu.jo Abstract- In this paper, the

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

FPGA Implementation of Gaussian Multicarrier. Receiver with Iterative. Interference. Canceller. Tokyo Institute of Technology

FPGA Implementation of Gaussian Multicarrier. Receiver with Iterative. Interference. Canceller. Tokyo Institute of Technology FPGA Implementation of Gaussian Multicarrier Receiver with Iterative Interference Canceller Tetsuou Ohori,, Satoshi Suyama, Hiroshi Suzuki, and Kazuhiko Fukawa Tokyo Institute of Technology This work was

More information

IEEE P Wireless Personal Area Networks

IEEE P Wireless Personal Area Networks IEEE P802.15 Wireless Personal Area Networks Project Title IEEE P802.15 Working Group for Wireless Personal Area Networks (WPANs) TVWS-NB-OFDM Merged Proposal to TG4m Date Submitted Sept. 18, 2009 Source

More information

University of Bristol - Explore Bristol Research. Link to publication record in Explore Bristol Research PDF-document.

University of Bristol - Explore Bristol Research. Link to publication record in Explore Bristol Research PDF-document. Mansor, Z. B., Nix, A. R., & McGeehan, J. P. (2011). PAPR reduction for single carrier FDMA LTE systems using frequency domain spectral shaping. In Proceedings of the 12th Annual Postgraduate Symposium

More information

Self-interference Handling in OFDM Based Wireless Communication Systems

Self-interference Handling in OFDM Based Wireless Communication Systems Self-interference Handling in OFDM Based Wireless Communication Systems Tevfik Yücek yucek@eng.usf.edu University of South Florida Department of Electrical Engineering Tampa, FL, USA (813) 974 759 Tevfik

More information

OFDM (Orthogonal Frequency Division Multiplexing) SIMULATION USING MATLAB Neha Pathak MTech Scholar, Shri am Institute of Technology

OFDM (Orthogonal Frequency Division Multiplexing) SIMULATION USING MATLAB Neha Pathak MTech Scholar, Shri am Institute of Technology OFDM (Orthogonal Frequency Division Multiplexing) SIMULATION USING MATLAB Neha Pathak MTech Scholar, Shri am Institute of Technology ABSTRACT This paper discusses the design and implementation of an OFDM

More information

Performance Improvement of OFDM System using Raised Cosine Windowing with Variable FFT Sizes

Performance Improvement of OFDM System using Raised Cosine Windowing with Variable FFT Sizes International Journal of Research (IJR) Vol-1, Issue-6, July 14 ISSN 2348-6848 Performance Improvement of OFDM System using Raised Cosine Windowing with Variable FFT Sizes Prateek Nigam 1, Monika Sahu

More information

Fading & OFDM Implementation Details EECS 562

Fading & OFDM Implementation Details EECS 562 Fading & OFDM Implementation Details EECS 562 1 Discrete Mulitpath Channel P ~ 2 a ( t) 2 ak ~ ( t ) P a~ ( 1 1 t ) Channel Input (Impulse) Channel Output (Impulse response) a~ 1( t) a ~2 ( t ) R a~ a~

More information

Performance Analysis Of Hybrid Optical OFDM System With High Order Dispersion Compensation

Performance Analysis Of Hybrid Optical OFDM System With High Order Dispersion Compensation Performance Analysis Of Hybrid Optical OFDM System With High Order Dispersion Compensation Manpreet Singh Student, University College of Engineering, Punjabi University, Patiala, India. Abstract Orthogonal

More information

Wireless Communication

Wireless Communication Wireless Communication Systems @CS.NCTU Lecture 3: 802.11 PHY and OFDM Instructor: Kate Ching-Ju Lin ( 林靖茹 ) Reference 1. OFDM Tutorial online: http://home.iitj.ac.in/~ramana/ofdmtutorial.pdf 2. OFDM Wireless

More information

Implementation of High-throughput Access Points for IEEE a/g Wireless Infrastructure LANs

Implementation of High-throughput Access Points for IEEE a/g Wireless Infrastructure LANs Implementation of High-throughput Access Points for IEEE 802.11a/g Wireless Infrastructure LANs Hussein Alnuweiri Ph.D. and Diego Perea-Vega M.A.Sc. Abstract In this paper we discuss the implementation

More information

2.

2. PERFORMANCE ANALYSIS OF STBC-MIMO OFDM SYSTEM WITH DWT & FFT Shubhangi R Chaudhary 1,Kiran Rohidas Jadhav 2. Department of Electronics and Telecommunication Cummins college of Engineering for Women Pune,

More information

Analysis of Interference & BER with Simulation Concept for MC-CDMA

Analysis of Interference & BER with Simulation Concept for MC-CDMA IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 9, Issue 4, Ver. IV (Jul - Aug. 2014), PP 46-51 Analysis of Interference & BER with Simulation

More information

BER Analysis for MC-CDMA

BER Analysis for MC-CDMA BER Analysis for MC-CDMA Nisha Yadav 1, Vikash Yadav 2 1,2 Institute of Technology and Sciences (Bhiwani), Haryana, India Abstract: As demand for higher data rates is continuously rising, there is always

More information

Phase Modulator for Higher Order Dispersion Compensation in Optical OFDM System

Phase Modulator for Higher Order Dispersion Compensation in Optical OFDM System Phase Modulator for Higher Order Dispersion Compensation in Optical OFDM System Manpreet Singh 1, Karamjit Kaur 2 Student, University College of Engineering, Punjabi University, Patiala, India 1. Assistant

More information

FPGA implementation of Generalized Frequency Division Multiplexing transmitter using NI LabVIEW and NI PXI platform

FPGA implementation of Generalized Frequency Division Multiplexing transmitter using NI LabVIEW and NI PXI platform FPGA implementation of Generalized Frequency Division Multiplexing transmitter using NI LabVIEW and NI PXI platform Ivan GASPAR, Ainoa NAVARRO, Nicola MICHAILOW, Gerhard FETTWEIS Technische Universität

More information