In this exam, there is a total of 35 questions resulting in 53 possible points. TestResult = floor(sum(points)/4.86);

Size: px
Start display at page:

Download "In this exam, there is a total of 35 questions resulting in 53 possible points. TestResult = floor(sum(points)/4.86);"

Transcription

1 .... Midterm Exam: Institut für Nachrichtentechnik und Hochfrequenztechnik In this exam, there is a total of 35 questions resulting in 53 possible points. TestResult = floor(sum(points)/4.86); The four commandments: 1. You shall sit alone at a table. - You are not allowed to go to the toilet. - You are not allowed to go out for a cigarette. 2. You shall not communicate in any form to another person. - You are not allowed to ask questions. - In case there is a problem with the exam, write it down. - You are not allowed to communicate to your neighbor. - You are not allowed to use your cell phone, Laptop, PDA, You shall state the question number next to your answer. - You can answer the questions in German and/or English. - Use legible handwriting. 4. You shall staple your exam before turning it in. - You can keep the problem statement. 1

2 Problem 1: (13 points) At the time your teaching assistant was a student, homework was usually done the following way: First, check the internet for solutions of previous years. Second, phone your friends if they have already done the homework. Third, try to understand what you have just copied. Sounds familiar? So here is the Matlab source code you have to reverse engineer (Note that the code is working flawlessly): 01 clc; clear; 02 xvalphabet = [3,3*j,-3*j,-3]; 03 xvtxsymbols = randsrc(100000,1,[1:4]); 04 xvfiltercoeff = rcosine(1, 4, fir/sqrt, 0.33, 5); 05 xvtxsamples = xvalphabet(xvtxsymbols); 06 xvtxsamplesfilt = rcosflt(xvtxsamples, 1, 4, filter, xvfiltercoeff); 07 xvrxsamplesunfilt = xvtxsamplesfilt + (randn(400040,1)+i*randn(400040,1)); 08 xvrxsamplesfilt = rcosflt(xvrxsamplesunfilt, 1, 4, filter/fs, xvfiltercoeff); 09 xvrxsamples = xvrxsamplesfilt(41:4:400040); 10 [xvnotused,xvrxsymbols] = min(abs(xvrxsamples*ones(1,4)-ones(100000,1)*xvalphabet),[],2); 11 xvresult1 = sum(xvrxsymbols~=xvtxsymbols)/(100000); 12 xvresult2 = sum(sum(abs(dec2bin(xvrxsymbols-1,2)-dec2bin(xvtxsymbols-1,2))))/200000; 1 p. 1 Calculate the average power of the symbols transmitted (xvtxsamples). 1 p. 2 Sketch the signal space diagram (=scatter plot) of the signal received (xvrxsamples). Label the axes. 1 p. 3 Sketch the envelope diagram (=IQ diagram) of the signal received (xvrxsamplesfilt). Label the axes. 1 p. 4 How many symbols are transmitted in total during one execution of the program? 1 p. 5 Calculate the expected average power of the noise that is added in line 07 to the signal received. 1 p. 6 Calculate the expected average power of the already downsampled and filtered samples received (xvrxsamples). 1 p. 7 Evaluate the following Matlab command: mean(abs(xvrxsamples).^2) 1 p. 8 Using the results from [1] and [5], show how to compute the SNR of the already filtered samples received (xvrxsamples) in db. Check: SNR= db. 2 p. 9 Calculate the expected value of xvresult1 in terms of the Q ( ) function. 2 p. 10 Calculate the expected value of xvresult2 in terms of the Q ( ) function. Hint1: Is the transmit signal Gray-Coded? Hint2: dec2bin(d,n) produces a binary representation with at least n bits. 2

3 1 p. 11 Assume that line 3 is changed to (the rest of the code is left unchanged): 03 xvtxsymbols = randsrc(100000,1,[1:3]); Calculate the new expected value of xvresult1 in terms of the Q ( ) function. Explain your findings. Problem 2: (4 points) (continuing Problem 2) Testing and comparing Matlab codes is a pain if random number generators generate different values every time the program is executed. Therefore, one is advised to reset the random number generators prior to testing a piece of code. Since you have no idea how to do so, you seek help by calling another friend of yours. He tells you that 01 of the Matlab code shown in the previous problem should be modified to: 01 clc; clear; randn( state, 0); In the Matlab help you read that the randn( state, 0); command sets randn to its default initial state. 2 p. 12 Interestingly, the modified program still deliverers slightly different results (e.g. xvresult1) every time it is executed. Explain how is this possible? 2 p. 13 You restart Matlab every time prior to executing the program. Does xvresult1 now differ between different executions? Explain why/why not. Problem 3: (15 points) Assume that you are an ML detector. When you were a child, your father has told you that the transmitter always broadcasts a 4 symbol long sequence from the following constellation, always starting with Symbol B: A 2 Im D 2 Re B C 3

4 3 p. 14 Given only the above information, name three possible modulation schemes (employing a different crest factor) the transmitter could have employed. Order them with increasing Q crest factor (= peak-to-average ratio). A D At the age of six, you receive 2 your first input signal to decode. It was transmitted over a flat Rayleigh fading AWGN channel with negligible noise added at 2 the receiver. Assume that the channel Istays constant for approx. 100 samples. You know that your brother has already root raised cosine filtered the received B C signal. After that, your sister has already synchronized the signal to tell you that the correct sampling time instances of Symbol 1 to 4 are 19, 25, 31, and 37. Real part of the already filtered signal received: Imaginary part of the already filtered signal received: sample number 1 p. 15 Assume that transmitter and receiver are using root raised cosine filters with equal oversampling ratio. What is the oversampling ratio employed? 1 p. 16 Now, knowing a lot more than in Question [14], what modulation scheme does the transmitter employ? 1 p. 17 Plot a signal space diagram (=scatter plot) of the signal received (at the correct sampling time instances). Label the axes. Only plot what is actually received. Do not sketch a general scatter plot! Hint: How many points do you have to plot? 1 p. 18 Plot an envelope diagram (=IQ diagram) of the signal received. Label the axes. Only plot what is actually received. Do not sketch a general IQ diagram! 3 p. 19 Assume that the channel is everything between the constellation transmitted and the signal received. Calculate the complex channel coefficient h in magnitude and phase. Hint: Remember what your father has told you when you were a child. 4

5 2 p. 20 ML-decode all symbols received. Clearly state all four symbols that have been transmitted by the transmitter. 1 p. 21 Assume that the sampling rate of the receiver is 10 MSamples/s, or in other words, there is a time delay of 100 ns between two received samples. Neglecting the roll-off, roughly estimate the bandwidth of the transmitted/received signal. 1 p. 22 Does this bandwidth decrease or increase when the roll-off-factor of the root raised cosine filters employed is increased. 1 p. 23 Sketch the frequency responses of a digital root-raised-cosine filter with a roll-off of 0, 0.5, and 1 in the same figure. Choose an oversampling factor of 3. Do not forget to label the axes. Problem 4: (13 points) Once upon a time, an operator named A built the GSM infrastructure to serve an urban area of square kilometers. At that time, it was the only operator in that area. The network planning engineers were assigned to guarantee to all the users a SINR of, at least, 15 db. When calculating the SINR, those engineers considered as worst case a user located at the border of the hexagonal cell he is attached to. The considered interference was caused by the first tier of interfering cells. The circle circumscribing the hexagonal area had a radius of 500 m. The pathloss exponent was assumed to be constant and equal to 4. 2 p. 24 How many cells were necessary to cover the whole area? 2 p. 25 How many cells belong to the same cluster? One day, the frequency regulator forced A to sell parts of the frequency spectrum to two competitors, named B and C. As a result, the available bandwidth is now assigned in the following way: Operator A Operator B Operator C 25.4 MHz Bandwidth 15 MHz Bandwidth 29 MHz Bandwidth The bandwidth of each full duplex channel is equal to 200 khz. The three operators decided to place different constraints on the offered service, namely: Operator A Ensure to the users a blocking probability lower than 5%. Operator B Ensure to the users a delay probability lower than 10%. Operator C Ensure to the users a blocking probability lower than 1% and a delay probability lower than 1%. 5

6 3 p. 26 Given these constraints, what is the amount of traffic, in Erlang, that each cell can support? The Erlang tables are available in the Tables 2 and 3 at the end of the problem statement. After some time, statistics about the habits of the customers have been collected. They are available in Table 1. For different time slots, they indicate in how many calls was the customer active and the duration, in minutes, of each call. 00:00-05:59 06:00-11:59 12:00-17:59 18:00-23:59 Calls Dur. [min] Calls Dur. [min] Calls Dur. [min] Calls Dur. [min] Operator A Operator B Operator C Table 1: Statistics of daily use 1 p. 27 Generate an equivalent table containing the Erlang per user. Assuming that the three operators are now working at full capacity: 2 p. 28 How many users can one cell of each operator support? 1 p. 29 How many users can be served in the whole area? 2 p. 30 Consider that the average monthly invoice of a user of operator B is equal to 30 EUR. Calculate the average cost per minute of an outgoing call. Assume that on average for two calls in Table 1 one is received. Problem 5: (8 points) The graph in Fig. 1 shows the probability that the SNR γ M at the output of a selection diversity receiver (with N branches) is lying below a given value γ = 0.01 depending on the number of branches N. Different curves have been obtained considering different values of the average SNR per branch Γ. 1 p. 31 Is the value of Γ associated to Curve A bigger, smaller or equal to the one used to draw Curve B? Justify your answer. 2 p. 32 Assuming five branches and a probability P (γ M < γ) = 10 7, calculate the value of the average SNR per branch Γ. Assume now Γ equal to 4 db, 1 p. 33 calculate the average SNR γ M when using no diversity. 6

7 2 p. 34 calculate how many branches are necessary to obtain an average SNR γ M = 8 db at the output of a selection diversity receiver. 2 p. 35 calculate how many branches are necessary to obtain an average SNR γ M = 8 db at the output of a maximum ratio combiner receiver. 7

8 N ch Blocking Probability 1% 2% 3% 4% 5% 6% 7% 8% 9% 10% Table 2: Erlang supported by a system with N ch channels and a given blocking probability 8

9 N ch Probability of a call to be queued 1% 2% 3% 4% 5% 6% 7% 8% 9% 10% Table 3: Erlang supported by a system with N ch channels and a given delay probability 9

10 A B Number of branches P(γ M < γ) Figure 1: Probability of γ M < γ 10

03_57_104_final.fm Page 97 Tuesday, December 4, :17 PM. Problems Problems

03_57_104_final.fm Page 97 Tuesday, December 4, :17 PM. Problems Problems 03_57_104_final.fm Page 97 Tuesday, December 4, 2001 2:17 PM Problems 97 3.9 Problems 3.1 Prove that for a hexagonal geometry, the co-channel reuse ratio is given by Q = 3N, where N = i 2 + ij + j 2. Hint:

More information

Unit 4 - Cellular System Design, Capacity, Handoff, and Outage

Unit 4 - Cellular System Design, Capacity, Handoff, and Outage Unit 4 - Cellular System Design, Capacity, Handoff, and Outage Course outline How to access the portal Assignment. Overview of Cellular Evolution and Wireless Technologies Wireless Propagation and Cellular

More information

Unit 3 - Wireless Propagation and Cellular Concepts

Unit 3 - Wireless Propagation and Cellular Concepts X Courses» Introduction to Wireless and Cellular Communications Unit 3 - Wireless Propagation and Cellular Concepts Course outline How to access the portal Assignment 2. Overview of Cellular Evolution

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

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

Wireless Communication Systems Laboratory Lab#1: An introduction to basic digital baseband communication through MATLAB simulation Objective

Wireless Communication Systems Laboratory Lab#1: An introduction to basic digital baseband communication through MATLAB simulation Objective Wireless Communication Systems Laboratory Lab#1: An introduction to basic digital baseband communication through MATLAB simulation Objective The objective is to teach students a basic digital communication

More information

Level 6 Graduate Diploma in Engineering Wireless and mobile communications

Level 6 Graduate Diploma in Engineering Wireless and mobile communications 9210-119 Level 6 Graduate Diploma in Engineering Wireless and mobile communications Sample Paper You should have the following for this examination one answer book non-programmable calculator pen, pencil,

More information

Lab 3.0. Pulse Shaping and Rayleigh Channel. Faculty of Information Engineering & Technology. The Communications Department

Lab 3.0. Pulse Shaping and Rayleigh Channel. Faculty of Information Engineering & Technology. The Communications Department Faculty of Information Engineering & Technology The Communications Department Course: Advanced Communication Lab [COMM 1005] Lab 3.0 Pulse Shaping and Rayleigh Channel 1 TABLE OF CONTENTS 2 Summary...

More information

EEG473 Mobile Communications Module 2 : Week # (6) The Cellular Concept System Design Fundamentals

EEG473 Mobile Communications Module 2 : Week # (6) The Cellular Concept System Design Fundamentals EEG473 Mobile Communications Module 2 : Week # (6) The Cellular Concept System Design Fundamentals Interference and System Capacity Interference is the major limiting factor in the performance of cellular

More information

Exploring QAM using LabView Simulation *

Exploring QAM using LabView Simulation * OpenStax-CNX module: m14499 1 Exploring QAM using LabView Simulation * Robert Kubichek This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 2.0 1 Exploring

More information

Assignment 6: Solution to MATLAB code for BER generation of QPSK system over AWGN channel.

Assignment 6: Solution to MATLAB code for BER generation of QPSK system over AWGN channel. G. S. Sanyal School of Telecommunications Indian Institute of Technology Kharagpur MOOC: Spread Spectrum Communications & Jamming Assignment 6: Solution to MATLAB code for BER generation of QPSK system

More information

EELE 6333: Wireless Commuications

EELE 6333: Wireless Commuications EELE 6333: Wireless Commuications Chapter # 4 : Capacity of Wireless Channels Spring, 2012/2013 EELE 6333: Wireless Commuications - Ch.4 Dr. Musbah Shaat 1 / 18 Outline 1 Capacity in AWGN 2 Capacity of

More information

Unit-1 The Cellular Concept

Unit-1 The Cellular Concept Unit-1 The Cellular Concept 1.1 Introduction to Cellular Systems Solves the problem of spectral congestion and user capacity. Offer very high capacity in a limited spectrum without major technological

More information

EKT 450 Mobile Communication System

EKT 450 Mobile Communication System EKT 450 Mobile Communication System Chapter 6: The Cellular Concept Dr. Azremi Abdullah Al-Hadi School of Computer and Communication Engineering azremi@unimap.edu.my 1 Introduction Introduction to Cellular

More information

ELT Receiver Architectures and Signal Processing Fall Mandatory homework exercises

ELT Receiver Architectures and Signal Processing Fall Mandatory homework exercises ELT-44006 Receiver Architectures and Signal Processing Fall 2014 1 Mandatory homework exercises - Individual solutions to be returned to Markku Renfors by email or in paper format. - Solutions are expected

More information

Exam in 1TT850, 1E275. Modulation, Demodulation and Coding course

Exam in 1TT850, 1E275. Modulation, Demodulation and Coding course Exam in 1TT850, 1E275 Modulation, Demodulation and Coding course EI, TF, IT programs 16th of August 2004, 14:00-19:00 Signals and systems, Uppsala university Examiner Sorour Falahati office: 018-471 3071

More information

Spring 2017 MIMO Communication Systems Solution of Homework Assignment #5

Spring 2017 MIMO Communication Systems Solution of Homework Assignment #5 Spring 217 MIMO Communication Systems Solution of Homework Assignment #5 Problem 1 (2 points Consider a channel with impulse response h(t α δ(t + α 1 δ(t T 1 + α 3 δ(t T 2. Assume that T 1 1 µsecs and

More information

CH 5. Air Interface of the IS-95A CDMA System

CH 5. Air Interface of the IS-95A CDMA System CH 5. Air Interface of the IS-95A CDMA System 1 Contents Summary of IS-95A Physical Layer Parameters Forward Link Structure Pilot, Sync, Paging, and Traffic Channels Channel Coding, Interleaving, Data

More information

DIGITAL Radio Mondiale (DRM) is a new

DIGITAL Radio Mondiale (DRM) is a new Synchronization Strategy for a PC-based DRM Receiver Volker Fischer and Alexander Kurpiers Institute for Communication Technology Darmstadt University of Technology Germany v.fischer, a.kurpiers @nt.tu-darmstadt.de

More information

a) Abasebanddigitalcommunicationsystemhasthetransmitterfilterg(t) thatisshowninthe figure, and a matched filter at the receiver.

a) Abasebanddigitalcommunicationsystemhasthetransmitterfilterg(t) thatisshowninthe figure, and a matched filter at the receiver. DIGITAL COMMUNICATIONS PART A (Time: 60 minutes. Points 4/0) Last Name(s):........................................................ First (Middle) Name:.................................................

More information

WIRELESS COMMUNICATION TECHNOLOGIES (16:332:546) LECTURE 5 SMALL SCALE FADING

WIRELESS COMMUNICATION TECHNOLOGIES (16:332:546) LECTURE 5 SMALL SCALE FADING WIRELESS COMMUNICATION TECHNOLOGIES (16:332:546) LECTURE 5 SMALL SCALE FADING Instructor: Dr. Narayan Mandayam Slides: SabarishVivek Sarathy A QUICK RECAP Why is there poor signal reception in urban clutters?

More information

ECE 3500: Fundamentals of Signals and Systems (Fall 2015) Lab 4: Binary Phase-Shift Keying Modulation and Demodulation

ECE 3500: Fundamentals of Signals and Systems (Fall 2015) Lab 4: Binary Phase-Shift Keying Modulation and Demodulation ECE 500: Fundamentals of Signals and Systems (Fall 2015) Lab 4: Binary Phase-Shift Keying Modulation and Demodulation Files necessary to complete this assignment: none Deliverables Due: Before Dec. 18th

More information

Access Methods and Spectral Efficiency

Access Methods and Spectral Efficiency Access Methods and Spectral Efficiency Yousef Dama An-Najah National University Mobile Communications Access methods SDMA/FDMA/TDMA SDMA (Space Division Multiple Access) segment space into sectors, use

More information

CH 4. Air Interface of the IS-95A CDMA System

CH 4. Air Interface of the IS-95A CDMA System CH 4. Air Interface of the IS-95A CDMA System 1 Contents Summary of IS-95A Physical Layer Parameters Forward Link Structure Pilot, Sync, Paging, and Traffic Channels Channel Coding, Interleaving, Data

More information

Selected answers * Problem set 6

Selected answers * Problem set 6 Selected answers * Problem set 6 Wireless Communications, 2nd Ed 243/212 2 (the second one) GSM channel correlation across a burst A time slot in GSM has a length of 15625 bit-times (577 ) Of these, 825

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

Spread Spectrum Communications and Jamming Prof. Kutty Shajahan M G S Sanyal School of Telecommunications Indian Institute of Technology, Kharagpur

Spread Spectrum Communications and Jamming Prof. Kutty Shajahan M G S Sanyal School of Telecommunications Indian Institute of Technology, Kharagpur Spread Spectrum Communications and Jamming Prof. Kutty Shajahan M G S Sanyal School of Telecommunications Indian Institute of Technology, Kharagpur Lecture - 06 Tutorial I Hello friends, welcome to this

More information

ELT DIGITAL COMMUNICATIONS

ELT DIGITAL COMMUNICATIONS ELT-43007 DIGITAL COMMUNICATIONS Matlab Exercise #2 Baseband equivalent digital transmission in AWGN channel: Transmitter and receiver structures - QAM signals, Gray coding and bit error probability calculations

More information

1. Document scope. 2. Introduction. 3. General assumptions. 4. Open loop power control. UE output power dynamics (TDD)

1. Document scope. 2. Introduction. 3. General assumptions. 4. Open loop power control. UE output power dynamics (TDD) TSG-RAN Working Group 4 meeting #6 TSGR4#6(99) 362 Queensferry, 26. 29. July 1999 Agenda Item: Source: Title: Document for: SIEMENS UE output power dynamics (TDD) Discussion and Decision 1. Document scope

More information

Unit 2: Mobile Communication Systems Lecture 8, 9: Performance Improvement Techniques in Cellular Systems. Today s Lecture: Outline

Unit 2: Mobile Communication Systems Lecture 8, 9: Performance Improvement Techniques in Cellular Systems. Today s Lecture: Outline Unit 2: Mobile Communication Systems Lecture 8, 9: Performance Improvement Techniques in Cellular Systems Today s Lecture: Outline Handover & Roaming Hard and Soft Handover Power Control Cell Splitting

More information

Autumn Main Exam SEAT NUMBER: STUDENTNUMBER: L--- ~~--~--~--~----~--~--L-~ SURNAME: (FAMILY NAME) OTHER NAMES: LECTURER NAME:

Autumn Main Exam SEAT NUMBER: STUDENTNUMBER: L--- ~~--~--~--~----~--~--L-~ SURNAME: (FAMILY NAME) OTHER NAMES: LECTURER NAME: Autumn 216- Main Exam SEAT NUMBER: iuts UNIVERSITY OF TECHNOLOGY SYDNEY STUDENTNUMBER: L--- ~~--~--~--~----~--~--L-~ SURNAME: (FAMILY NAME) OTHER NAMES: LECTURER NAME: This paper and all materials issued

More information

Assignment 1: Solutions to Problems on Direct Sequence Spread Spectrum

Assignment 1: Solutions to Problems on Direct Sequence Spread Spectrum G. S. Sanyal School of Telecommunications Indian Institute of Technology Kharagpur MOOC: Spread Spectrum Communications & Jamming Assignment 1: Solutions to Problems on Direct Sequence Spread Spectrum

More information

Wireless Transmission in Cellular Networks

Wireless Transmission in Cellular Networks Wireless Transmission in Cellular Networks Frequencies Signal propagation Signal to Interference Ratio Channel capacity (Shannon) Multipath propagation Multiplexing Spatial reuse in cellular systems Antennas

More information

Swedish College of Engineering and Technology Rahim Yar Khan

Swedish College of Engineering and Technology Rahim Yar Khan PRACTICAL WORK BOOK Telecommunication Systems and Applications (TL-424) Name: Roll No.: Batch: Semester: Department: Swedish College of Engineering and Technology Rahim Yar Khan Introduction Telecommunication

More information

UNIT-II 1. Explain the concept of frequency reuse channels. Answer:

UNIT-II 1. Explain the concept of frequency reuse channels. Answer: UNIT-II 1. Explain the concept of frequency reuse channels. Concept of Frequency Reuse Channels: A radio channel consists of a pair of frequencies one for each direction of transmission that is used for

More information

Cellular systems 02/10/06

Cellular systems 02/10/06 Cellular systems 02/10/06 Cellular systems Implements space division multiplex: base station covers a certain transmission area (cell) Mobile stations communicate only via the base station Cell sizes from

More information

Exam 3 is two weeks from today. Today s is the final lecture that will be included on the exam.

Exam 3 is two weeks from today. Today s is the final lecture that will be included on the exam. ECE 5325/6325: Wireless Communication Systems Lecture Notes, Spring 2010 Lecture 19 Today: (1) Diversity Exam 3 is two weeks from today. Today s is the final lecture that will be included on the exam.

More information

Digital Modulation Schemes

Digital Modulation Schemes Digital Modulation Schemes 1. In binary data transmission DPSK is preferred to PSK because (a) a coherent carrier is not required to be generated at the receiver (b) for a given energy per bit, the probability

More information

Digital Communication Systems Third year communications Midterm exam (15 points)

Digital Communication Systems Third year communications Midterm exam (15 points) Name: Section: BN: Digital Communication Systems Third year communications Midterm exam (15 points) May 2011 Time: 1.5 hours 1- Determine if the following sentences are true of false (correct answer 0.5

More information

Reti di Telecomunicazione. Channels and Multiplexing

Reti di Telecomunicazione. Channels and Multiplexing Reti di Telecomunicazione Channels and Multiplexing Point-to-point Channels They are permanent connections between a sender and a receiver The receiver can be designed and optimized based on the (only)

More information

Continuous Monitoring Techniques for a Cognitive Radio Based GSM BTS

Continuous Monitoring Techniques for a Cognitive Radio Based GSM BTS NCC 2009, January 6-8, IIT Guwahati 204 Continuous Monitoring Techniques for a Cognitive Radio Based GSM BTS Baiju Alexander, R. David Koilpillai Department of Electrical Engineering Indian Institute of

More information

Wireless Communication: Concepts, Techniques, and Models. Hongwei Zhang

Wireless Communication: Concepts, Techniques, and Models. Hongwei Zhang Wireless Communication: Concepts, Techniques, and Models Hongwei Zhang http://www.cs.wayne.edu/~hzhang Outline Digital communication over radio channels Channel capacity MIMO: diversity and parallel channels

More information

CS6956: Wireless and Mobile Networks Lecture Notes: 3/23/2015

CS6956: Wireless and Mobile Networks Lecture Notes: 3/23/2015 CS6956: Wireless and Mobile Networks Lecture Notes: 3/23/2015 GSM Global System for Mobile Communications (reference From GSM to LET by Martin Sauter) There were ~3 billion GSM users in 2010. GSM Voice

More information

Unit 7 - Week 6 - Wide Sense Stationary Uncorrelated Scattering (WSSUS) Channel Model

Unit 7 - Week 6 - Wide Sense Stationary Uncorrelated Scattering (WSSUS) Channel Model X Courses» Introduction to Wireless and Cellular Communications Announcements Course Forum Progress Mentor Unit 7 - Week 6 - Wide Sense Stationary Uncorrelated Scattering (WSSUS) Channel Model Course outline

More information

Unit 8 - Week 7 - Computer simulation of Rayleigh fading, Antenna Diversity

Unit 8 - Week 7 - Computer simulation of Rayleigh fading, Antenna Diversity X Courses» Introduction to Wireless and Cellular Communications Announcements Course Forum Progress Mentor Unit 8 - Week 7 - Computer simulation of Rayleigh fading, Antenna Diversity Course outline How

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

Adaptive Modulation and Coding

Adaptive Modulation and Coding Adaptive Modulation and Coding Master Universitario en Ingeniería de Telecomunicación I. Santamaría Universidad de Cantabria Contents Introduction Rate adaptation Power adaptation Adaptive coding Hybrid

More information

Performance Evaluation of Uplink Closed Loop Power Control for LTE System

Performance Evaluation of Uplink Closed Loop Power Control for LTE System Performance Evaluation of Uplink Closed Loop Power Control for LTE System Bilal Muhammad and Abbas Mohammed Department of Signal Processing, School of Engineering Blekinge Institute of Technology, Ronneby,

More information

Welcome to the next lecture on mobile radio propagation. (Refer Slide Time: 00:01:23 min)

Welcome to the next lecture on mobile radio propagation. (Refer Slide Time: 00:01:23 min) Wireless Communications Dr. Ranjan Bose Department of Electrical Engineering Indian Institute of Technology, Delhi Lecture No # 20 Mobile Radio Propagation -11- Multipath and Small Scale Fading Welcome

More information

GSM FREQUENCY PLANNING

GSM FREQUENCY PLANNING GSM FREQUENCY PLANNING PROJECT NUMBER: PRJ070 BY NAME: MUTONGA JACKSON WAMBUA REG NO.: F17/2098/2004 SUPERVISOR: DR. CYRUS WEKESA EXAMINER: DR. MAURICE MANG OLI Introduction GSM is a cellular mobile network

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

UNEQUAL POWER ALLOCATION FOR JPEG TRANSMISSION OVER MIMO SYSTEMS. Muhammad F. Sabir, Robert W. Heath Jr. and Alan C. Bovik

UNEQUAL POWER ALLOCATION FOR JPEG TRANSMISSION OVER MIMO SYSTEMS. Muhammad F. Sabir, Robert W. Heath Jr. and Alan C. Bovik UNEQUAL POWER ALLOCATION FOR JPEG TRANSMISSION OVER MIMO SYSTEMS Muhammad F. Sabir, Robert W. Heath Jr. and Alan C. Bovik Department of Electrical and Computer Engineering, The University of Texas at Austin,

More information

Lab course Analog Part of a State-of-the-Art Mobile Radio Receiver

Lab course Analog Part of a State-of-the-Art Mobile Radio Receiver Communication Technology Laboratory Wireless Communications Group Prof. Dr. A. Wittneben ETH Zurich, ETF, Sternwartstrasse 7, 8092 Zurich Tel 41 44 632 36 11 Fax 41 44 632 12 09 Lab course Analog Part

More information

Revision of Wireless Channel

Revision of Wireless Channel Revision of Wireless Channel Quick recap system block diagram CODEC MODEM Wireless Channel Previous three lectures looked into wireless mobile channels To understand mobile communication technologies,

More information

ETSI SMG#24 TDoc SMG 903 / 97. December 15-19, 1997 Source: SMG2. Concept Group Alpha - Wideband Direct-Sequence CDMA: System Description Summary

ETSI SMG#24 TDoc SMG 903 / 97. December 15-19, 1997 Source: SMG2. Concept Group Alpha - Wideband Direct-Sequence CDMA: System Description Summary ETSI SMG#24 TDoc SMG 903 / 97 Madrid, Spain Agenda item 4.1: UTRA December 15-19, 1997 Source: SMG2 Concept Group Alpha - Wideband Direct-Sequence CDMA: System Description Summary Concept Group Alpha -

More information

CHAPTER 5 DIVERSITY. Xijun Wang

CHAPTER 5 DIVERSITY. Xijun Wang CHAPTER 5 DIVERSITY Xijun Wang WEEKLY READING 1. Goldsmith, Wireless Communications, Chapters 7 2. Tse, Fundamentals of Wireless Communication, Chapter 3 2 FADING HURTS THE RELIABILITY n The detection

More information

Introduction to Wireless and Mobile Networking. Hung-Yu Wei g National Taiwan University

Introduction to Wireless and Mobile Networking. Hung-Yu Wei g National Taiwan University Introduction to Wireless and Mobile Networking Lecture 3: Multiplexing, Multiple Access, and Frequency Reuse Hung-Yu Wei g National Taiwan University Multiplexing/Multiple Access Multiplexing Multiplexing

More information

Revision of Previous Six Lectures

Revision of Previous Six Lectures Revision of Previous Six Lectures Previous six lectures have concentrated on Modem, under ideal AWGN or flat fading channel condition multiplexing multiple access CODEC MODEM Wireless Channel Important

More information

Cellular Concept. Cell structure

Cellular Concept. Cell structure Cellular Concept Dr Yousef Dama Faculty of Engineering and Information Technology An-Najah National University 2014-2015 Mobile communications Lecture Notes, prepared by Dr Yousef Dama, An-Najah National

More information

Exercises for chapter 2

Exercises for chapter 2 Exercises for chapter Digital Communications A baseband PAM system uses as receiver filter f(t) a matched filter, f(t) = g( t), having two choices for transmission filter g(t) g a (t) = ( ) { t Π =, t,

More information

Performance Analysis Of OFDM Using 4 PSK, 8 PSK And 16 PSK

Performance Analysis Of OFDM Using 4 PSK, 8 PSK And 16 PSK Performance Analysis Of OFDM Using 4 PSK, 8 PSK And 16 PSK Virat Bhambhe M.Tech. Student, Electrical and Electronics Engineering Gautam Buddh Technical University (G.B.T.U.), Lucknow (U.P.), India Dr.

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

Multipath signal Detection in CDMA System

Multipath signal Detection in CDMA System Chapter 4 Multipath signal Detection in CDMA System Chapter 3 presented the implementation of CDMA test bed for wireless communication link. This test bed simulates a Code Division Multiple Access (CDMA)

More information

Redline Communications Inc. Combining Fixed and Mobile WiMAX Networks Supporting the Advanced Communication Services of Tomorrow.

Redline Communications Inc. Combining Fixed and Mobile WiMAX Networks Supporting the Advanced Communication Services of Tomorrow. Redline Communications Inc. Combining Fixed and Mobile WiMAX Networks Supporting the Advanced Communication Services of Tomorrow WiMAX Whitepaper Author: Frank Rayal, Redline Communications Inc. Redline

More information

Difference Between. 1. Old connection is broken before a new connection is activated.

Difference Between. 1. Old connection is broken before a new connection is activated. Difference Between Hard handoff Soft handoff 1. Old connection is broken before a new connection is activated. 1. New connection is activated before the old is broken. 2. "break before make" connection

More information

EENG473 Mobile Communications Module 3 : Week # (12) Mobile Radio Propagation: Small-Scale Path Loss

EENG473 Mobile Communications Module 3 : Week # (12) Mobile Radio Propagation: Small-Scale Path Loss EENG473 Mobile Communications Module 3 : Week # (12) Mobile Radio Propagation: Small-Scale Path Loss Introduction Small-scale fading is used to describe the rapid fluctuation of the amplitude of a radio

More information

Project = An Adventure : Wireless Networks. Lecture 4: More Physical Layer. What is an Antenna? Outline. Page 1

Project = An Adventure : Wireless Networks. Lecture 4: More Physical Layer. What is an Antenna? Outline. Page 1 Project = An Adventure 18-759: Wireless Networks Checkpoint 2 Checkpoint 1 Lecture 4: More Physical Layer You are here Done! Peter Steenkiste Departments of Computer Science and Electrical and Computer

More information

Reduction of Cochannel Interference on the Downlink of a CDMA Cellular Architecture with Directional Antennas

Reduction of Cochannel Interference on the Downlink of a CDMA Cellular Architecture with Directional Antennas Reduction of ochannel nterference on the ownlink of a M ellular rchitecture with irectional ntennas M.. alam,.. hosravi, and O. andara epartment of omputer cience, outhern University P.O. ox 91, aton Rouge,

More information

DVB-T2 (T2) MISO versus SISO Field Test

DVB-T2 (T2) MISO versus SISO Field Test DVB-T2 (T2) MISO versus SISO Field Test Author: Bjørn Skog, M.Sc. E-mail: bjorn.skog@telenor.com Company: Telenor Broadcast, Norkring AS, Norway July 3rd 2013 @ LS telcom Summit 2013 V.2 2.7.13 The Case

More information

Adaptive Modulation, Adaptive Coding, and Power Control for Fixed Cellular Broadband Wireless Systems: Some New Insights 1

Adaptive Modulation, Adaptive Coding, and Power Control for Fixed Cellular Broadband Wireless Systems: Some New Insights 1 Adaptive, Adaptive Coding, and Power Control for Fixed Cellular Broadband Wireless Systems: Some New Insights Ehab Armanious, David D. Falconer, and Halim Yanikomeroglu Broadband Communications and Wireless

More information

Statistical Communication Theory

Statistical Communication Theory Statistical Communication Theory Mark Reed 1 1 National ICT Australia, Australian National University 21st February 26 Topic Formal Description of course:this course provides a detailed study of fundamental

More information

Planning of LTE Radio Networks in WinProp

Planning of LTE Radio Networks in WinProp Planning of LTE Radio Networks in WinProp AWE Communications GmbH Otto-Lilienthal-Str. 36 D-71034 Böblingen mail@awe-communications.com Issue Date Changes V1.0 Nov. 2010 First version of document V2.0

More information

Adoption of this document as basis for broadband wireless access PHY

Adoption of this document as basis for broadband wireless access PHY Project Title Date Submitted IEEE 802.16 Broadband Wireless Access Working Group Proposal on modulation methods for PHY of FWA 1999-10-29 Source Jay Bao and Partha De Mitsubishi Electric ITA 571 Central

More information

Digital Communication System

Digital Communication System Digital Communication System Purpose: communicate information at required rate between geographically separated locations reliably (quality) Important point: rate, quality spectral bandwidth, power requirements

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

PERFORMANCE ANALYSIS OF DOWNLINK POWER CONTROL IN WCDMA SYSTEM

PERFORMANCE ANALYSIS OF DOWNLINK POWER CONTROL IN WCDMA SYSTEM PERFORMANCE ANALYSIS OF DOWNLINK POWER CONTROL IN WCDMA SYSTEM Dr. M. Mahbubur Rahman, Md. Khairul Islam, Tarek Hassan-Al-Mahmud, A. R. Mahmud Abstract: WCDMA (Wideband Code Division Multiple Access) plays

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

(Refer Slide Time: 00:01:29 min)

(Refer Slide Time: 00:01:29 min) Wireless Communications Dr. Ranjan Bose Department of Electrical Engineering Indian Institute of Technology, Delhi Lecture No. # 5 Cell Capacity and Reuse We ll look at some the interesting features of

More information

Digital Communication

Digital Communication Digital Communication (ECE4058) Electronics and Communication Engineering Hanyang University Haewoon Nam Lecture 15 1 Quadrature Phase Shift Keying Constellation plot BPSK QPSK 01 11 Bit 0 Bit 1 00 M-ary

More information

CALIFORNIA STATE UNIVERSITY, NORTHRIDGE FADING CHANNEL CHARACTERIZATION AND MODELING

CALIFORNIA STATE UNIVERSITY, NORTHRIDGE FADING CHANNEL CHARACTERIZATION AND MODELING CALIFORNIA STATE UNIVERSITY, NORTHRIDGE FADING CHANNEL CHARACTERIZATION AND MODELING A graduate project submitted in partial fulfillment of the requirements For the degree of Master of Science in Electrical

More information

ADJACENT BAND COMPATIBILITY OF TETRA AND TETRAPOL IN THE MHZ FREQUENCY RANGE, AN ANALYSIS COMPLETED USING A MONTE CARLO BASED SIMULATION TOOL

ADJACENT BAND COMPATIBILITY OF TETRA AND TETRAPOL IN THE MHZ FREQUENCY RANGE, AN ANALYSIS COMPLETED USING A MONTE CARLO BASED SIMULATION TOOL European Radiocommunications Committee (ERC) within the European Conference of Postal and Telecommunications Administrations (CEPT) ADJACENT BAND COMPATIBILITY OF TETRA AND TETRAPOL IN THE 380-400 MHZ

More information

ECE 476/ECE 501C/CS Wireless Communication Systems Winter Lecture 3: Cellular Fundamentals

ECE 476/ECE 501C/CS Wireless Communication Systems Winter Lecture 3: Cellular Fundamentals ECE 476/ECE 501C/CS 513 - Wireless Communication Systems Winter 2004 Lecture 3: Cellular Fundamentals Chapter 3 - The Cellular Concept - System Design Fundamentals I. Introduction Goals of a Cellular System

More information

Modulation and Coding labolatory. Digital Modulation. BER Bit error Rate

Modulation and Coding labolatory. Digital Modulation. BER Bit error Rate Modulation and Coding labolatory Digital Modulation BER Bit error Rate The bit error rate (BER) is the number of bit errors per unit time. The bit error ratio (also BER) is the number of bit errors divided

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

Multiple access and cellular systems

Multiple access and cellular systems RADIO SYSTEMS ETIN15 Lecture no: 9 Multiple access and cellular systems 2017-05-02 Anders J Johansson 1 Contents Background Interference and spectrum efficiency Frequency-division multiple access (FDMA)

More information

Frequency-Hopped Spread-Spectrum

Frequency-Hopped Spread-Spectrum Chapter Frequency-Hopped Spread-Spectrum In this chapter we discuss frequency-hopped spread-spectrum. We first describe the antijam capability, then the multiple-access capability and finally the fading

More information

Narrow- and wideband channels

Narrow- and wideband channels RADIO SYSTEMS ETIN15 Lecture no: 3 Narrow- and wideband channels Ove Edfors, Department of Electrical and Information technology Ove.Edfors@eit.lth.se 27 March 2017 1 Contents Short review NARROW-BAND

More information

Diversity. Spring 2017 ELE 492 FUNDAMENTALS OF WIRELESS COMMUNICATIONS 1

Diversity. Spring 2017 ELE 492 FUNDAMENTALS OF WIRELESS COMMUNICATIONS 1 Diversity Spring 2017 ELE 492 FUNDAMENTALS OF WIRELESS COMMUNICATIONS 1 Diversity A fading channel with an average SNR has worse BER performance as compared to that of an AWGN channel with the same SNR!.

More information

Project rules: Wireless Communication MATLAB Project

Project rules: Wireless Communication MATLAB Project This document provides an outline for a MATLAB project. You are expected to investigate, in detail, methods related to solving the problem. There is a substantial design element to the project, and a quantitative

More information

Fundamentals of Wireless Communication

Fundamentals of Wireless Communication Communication Technology Laboratory Prof. Dr. H. Bölcskei Sternwartstrasse 7 CH-8092 Zürich Fundamentals of Wireless Communication Homework 5 Solutions Problem 1 Simulation of Error Probability When implementing

More information

d[m] = [m]+ 1 2 [m 2]

d[m] = [m]+ 1 2 [m 2] DIGITAL COMMUNICATIONS PART A (Time: 60 minutes. Points 4/0) Last Name(s):........................................................ First (Middle) Name:.................................................

More information

WIRELESS COMMUNICATIONS PRELIMINARIES

WIRELESS COMMUNICATIONS PRELIMINARIES WIRELESS COMMUNICATIONS Preliminaries Radio Environment Modulation Performance PRELIMINARIES db s and dbm s Frequency/Time Relationship Bandwidth, Symbol Rate, and Bit Rate 1 DECIBELS Relative signal strengths

More information

Performance Evaluation of BPSK modulation Based Spectrum Sensing over Wireless Fading Channels in Cognitive Radio

Performance Evaluation of BPSK modulation Based Spectrum Sensing over Wireless Fading Channels in Cognitive Radio IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 9, Issue 6, Ver. IV (Nov - Dec. 2014), PP 24-28 Performance Evaluation of BPSK modulation

More information

Performance Analysis Of OFDM Using QPSK And 16 QAM

Performance Analysis Of OFDM Using QPSK And 16 QAM Performance Analysis Of OFDM Using QPSK And 16 QAM Virat Bhambhe M.Tech. Student, Electrical and Electronics Engineering Gautam Buddh Technical University (G.B.T.U.), Lucknow (U.P.), India Dr. Ragini Tripathi

More information

ECS455 Chapter 2 Cellular Systems

ECS455 Chapter 2 Cellular Systems ECS455 Chapter 2 Cellular Systems 2.2 Co-Channel Interference r.rapun Suksompong prapun.com/ecs455 Office Hours: BK 360-7 Tuesday 9:30-0:30 Tuesday 3:30-4:30 Thursday 3:30-4:30 Co-Channel Cells: Ex. N

More information

ECS455: Chapter 4 Multiple Access

ECS455: Chapter 4 Multiple Access ECS455: Chapter 4 Multiple Access Asst. Prof. Dr. Prapun Suksompong prapun@siit.tu.ac.th 1 Office Hours: BKD 3601-7 Tuesday 9:30-10:30 Tuesday 13:30-14:30 Thursday 13:30-14:30 ECS455: Chapter 4 Multiple

More information

The Cellular Concept

The Cellular Concept The Cellular Concept Key problems in multi-user wireless system: spectrum is limited and expensive large # of users to accommodate high quality-of-services (QoS) is required expandable systems are needed

More information

Comm 502: Communication Theory

Comm 502: Communication Theory Comm 50: Communication Theory Prof. Dean of the faculty of IET The German University in Cairo 1 COMM 50: Communication Theory Instructor: Ahmed El-Mahdy Office : C3.319 Lecture Time: Sat. nd Slot Office

More information

NI USRP Lab: DQPSK Transceiver Design

NI USRP Lab: DQPSK Transceiver Design NI USRP Lab: DQPSK Transceiver Design 1 Introduction 1.1 Aims This Lab aims for you to: understand the USRP hardware and capabilities; build a DQPSK receiver using LabVIEW and the USRP. By the end of this

More information

Effect of Time Bandwidth Product on Cooperative Communication

Effect of Time Bandwidth Product on Cooperative Communication Surendra Kumar Singh & Rekha Gupta Department of Electronics and communication Engineering, MITS Gwalior E-mail : surendra886@gmail.com, rekha652003@yahoo.com Abstract Cognitive radios are proposed to

More information