SlideShare a Scribd company logo
1 of 25
Download to read offline
Channel Estimation
Jay Chang
1
2
Pilot Structure
Training Symbol-Based Channel Estimation
DFT-Based Channel Estimation
Decision-Directed Channel Estimation
Advanced Channel Estimation Techniques
Agenda
3
Fig. Block diagram of transmitter and receiver in an OFDM system.
(S/P)
Pulse
shaping
(S/P)
4
In an OFDM system, transmitter modulates → PSK/QAM symbols → IFFT on the symbols to convert them into time-domain
signals → channel. The channel effect must be estimated and compensated in the receiver.
Each subcarrier can be regarded as an independent channel, as long as no ICI (Inter-Carrier Interference) occurs, and thus
preserving the orthogonality among subcarriers. The orthogonality allows each subcarrier component of the received signal to
be expressed as the product of the transmitted signal and channel frequency response at the subcarrier.
The transmitted signal can be recovered by estimating the channel response just at each subcarrier.
Channel can be estimated by using a preamble or pilot symbols known to both transmitter and receiver, which employ various
interpolation techniques to estimate the channel response of the subcarriers between pilot tones.
Data signal as well as training signal, or both, can be used for channel estimation.
In order to choose the channel estimation technique for the OFDM system under consideration, many different aspects of
implementations, including the required performance, computational complexity and time-variation of the channel must be
taken into account.
Channel estimation
5
Pilot Structure
Training Symbol-Based Channel Estimation
DFT-Based Channel Estimation
Decision-Directed Channel Estimation
Advanced Channel Estimation Techniques
Agenda
Depending on the arrangement of pilots, three different types of pilot structures
are considered:
block type, comb type, and lattice type
時間選擇性衰落(快衰落)
頻率選擇性衰落
6
1
coherent
Doppler
T
f
∝
∆
1
: BW .
: ( )
coherent
spread
coherent
spread
B
t
B
t h t
∝
相干帶寬 在該 內信道衰落基本不變
時延擴展 信道沖激響應 持續時間
2個重要觀念個重要觀念個重要觀念個重要觀念
7
Pilot Structure: Block Type
Pilot symbols are transmitted periodically for channel estimation.
Using these pilots, a time-domain interpolation is performed to estimate the channel along the time axis.
Let St denote the period of pilot symbols in time. In order to keep track of the time-varying channel characteristics, the pilot
symbols must be placed as frequently as the coherence time is.
Coherence time is inverse form of the Doppler frequency fDoppler in the channel, the pilot symbol period must satisfy the following
inequality:
Pros: pilot tones are inserted into all subcarriers of pilot symbols with a period in time, the block-type pilot arrangement is
suitable for frequency-selective channels.
Cons: for the fast-fading channels, incur too much overhead to track the channel variation by reducing the pilot symbol period.
Pilot symbols
1
coherent timet
Doppler
S
f
≤ =
Fig. Block-type pilot arrangement.
8
Pilot Structure: Comb Type
Fig. Comb-type pilot arrangement.
Comb-type every OFDM symbol has pilot tones at the periodically-located subcarriers, which are used for a frequency-domain
interpolation to estimate the channel along the frequency axis.
Let Sf be the period of pilot tones in frequency. In order to keep track of the frequency-selective channel characteristics, the
pilot symbols must be placed as frequently as coherent bandwidth (BW) is.
Coherence bandwidth is determined by an inverse of the maximum delay spread σmax, the pilot symbol period must satisfy the
following inequality:
Pros: comb-type pilot arrangement is suitable for fast-fading channels.
Cons: Not for frequency-selective channels.
max
1
coherent BW
(delay spread)
fS
σ
≤ =
9
Pilot Structure: Lattice Type
Fig. Lattice-type pilot arrangement.
Pilot tones are inserted along both the time and frequency axes with given periods. The pilot tones scattered in both time and
frequency axes facilitate time/frequency-domain interpolations for channel estimation.
Let St and Sf denote the periods of pilot symbols in time and frequency, respectively. In order to keep track of the time-varying
and frequency-selective channel characteristics, the pilot symbol arrangement must satisfy both equations
max
1 1
coherent time and coherent BW
(delay spread)
t f
Doppler
S S
f σ
≤ = ≤ =
10
Pilot Structure
Training Symbol-Based Channel Estimation
DFT-Based Channel Estimation
Decision-Directed Channel Estimation
Advanced Channel Estimation Techniques
Agenda
11
Training Symbol-Based Channel Estimation
Training symbols can be used for channel estimation, usually providing a good performance.
Transmission efficiencies are reduced due to the required overhead of training symbols such as preamble or pilot tones that are
transmitted in addition to data symbols.
The least-square (LS) and minimum-mean-square-error (MMSE) techniques are widely used for channel estimation when
training symbols are available.
12
LS Channel Estimation: the following cost function (LS) is minimized:
X is assumed to be
diagonal due to the ICI-free condition
The mean-square error (MSE) of this LS channel estimate is given as:
Y = HX + Z
Note that the MSE in Equation is inversely proportional to the SNR , which implies that it may be subject to noise
enhancement, especially when the channel is in a deep null.
Due to its simplicity, the LS method has been widely used for channel estimation.
2 2
/x zσ σ
1
SNR
∝
13
MMSE Channel Estimation: the following cost function (MSE) is minimized:
Fig. MMSE channel estimation.
MMSE method finds a better (linear) estimate in terms of W in such a way that the MSE in is minimized.ˆ( )J H
ˆ =H WHɶ
Hɶ
ˆ= −e H HH
14
is the cross-correlation matrix between the true channel vector and temporary channel estimate vector in the
frequency domain.
HH
R ɶ
15
16
Fig. Time-domain correlation characteristic of channel
17
function H_LS = LS_CE(Y,Xp,pilot_loc,Nfft,Nps,int_opt)
% LS channel estimation function
% Inputs:
% Y = Frequency-domain received signal
% Xp = Pilot signal
% pilot_loc = Pilot location
% N = FFT size
% Nps = Pilot spacing
% int_opt = 'linear' or 'spline'
% output:
% H_LS = LS channel etimate
Np = Nfft/Nps; % # of pilot
k = 1:Np;
LS_est(k) = Y(pilot_loc(k))./Xp(k); % LS channel estimation
if lower(int_opt(1)) == 'l',
method = 'linear';
else
method = 'spline';
end
H_LS = interpolate(LS_est,pilot_loc,Nfft,method); % Linear/Spline interpolation
18
Pilot Structure
Training Symbol-Based Channel Estimation
DFT-Based Channel Estimation
Decision-Directed Channel Estimation
Advanced Channel Estimation Techniques
Agenda
19
DFT-Based Channel Estimation
The DFT-based channel estimation technique has been derived to improve the performance of LS or MMSE channel estimation
by eliminating the effect of noise outside the maximum channel delay.
Fig. DFT-based channel estimation.
maximum channel delay L
must be known in advance.
20
SNR = 20 dB
Illustration for performance improvement with DFT-based channel estimation.
https://github.com/oklachumi/octave-in-communications/blob/master/channel_estimation.m
21
SNR = 20 dB
Received signal constellation diagrams before and after channel compensation.
https://github.com/oklachumi/octave-in-communications/blob/master/channel_estimation.m
22https://github.com/oklachumi/octave-in-communications/blob/master/channel_estimation.m
23
Pilot Structure
Training Symbol-Based Channel Estimation
DFT-Based Channel Estimation
Decision-Directed Channel Estimation
Advanced Channel Estimation Techniques
Agenda
24
Fig. Block diagram of transmitter and receiver in an OFDM system.
(S/P)
Pulse
shaping
(S/P)
Review…
25
Decision-Directed Channel Estimation
Fig. Block diagram for an OFDM receiver with
decision-directed channel estimation.
Once initial channel estimation is made with the preamble or pilots, the coefficients of channel can be updated with decision-
directed (DD) channel estimation, which does not use the preamble or pilots.
DD technique uses the detected signal feedback to track the possibly time-varying channel while subsequently using the channel
estimate to detect the signal.

More Related Content

What's hot

What is 16 qam modulation
What is 16 qam modulationWhat is 16 qam modulation
What is 16 qam modulation
FOSCO Fiber Optics
 
Frequency Division Multiple Access (FDMA)
Frequency Division Multiple Access (FDMA)Frequency Division Multiple Access (FDMA)
Frequency Division Multiple Access (FDMA)
Miles Kevin Galario
 
cellular concepts in wireless communication
cellular concepts in wireless communicationcellular concepts in wireless communication
cellular concepts in wireless communication
asadkhan1327
 
Modulation
ModulationModulation
Modulation
sristykp
 
Digital modulation techniques
Digital modulation techniquesDigital modulation techniques
Digital modulation techniques
srkrishna341
 

What's hot (20)

Diversity techniques presentation material
Diversity techniques presentation materialDiversity techniques presentation material
Diversity techniques presentation material
 
PIFA
PIFA PIFA
PIFA
 
2.3 time division multiple access
2.3   time division multiple access2.3   time division multiple access
2.3 time division multiple access
 
Diversity Techniques in Wireless Communication
Diversity Techniques in Wireless CommunicationDiversity Techniques in Wireless Communication
Diversity Techniques in Wireless Communication
 
OFDM Basics
OFDM BasicsOFDM Basics
OFDM Basics
 
What is 16 qam modulation
What is 16 qam modulationWhat is 16 qam modulation
What is 16 qam modulation
 
Frequency Division Multiple Access (FDMA)
Frequency Division Multiple Access (FDMA)Frequency Division Multiple Access (FDMA)
Frequency Division Multiple Access (FDMA)
 
Multiple Access
Multiple AccessMultiple Access
Multiple Access
 
Small scale fading
Small scale fadingSmall scale fading
Small scale fading
 
Quadrature amplitude modulation
Quadrature amplitude modulationQuadrature amplitude modulation
Quadrature amplitude modulation
 
Precoding
PrecodingPrecoding
Precoding
 
OFDMA - Orthogonal Frequency Division Multiple Access PPT by PREM KAMAL
OFDMA - Orthogonal Frequency Division Multiple Access PPT by PREM KAMALOFDMA - Orthogonal Frequency Division Multiple Access PPT by PREM KAMAL
OFDMA - Orthogonal Frequency Division Multiple Access PPT by PREM KAMAL
 
rake reciever ppt
rake reciever pptrake reciever ppt
rake reciever ppt
 
cellular concepts in wireless communication
cellular concepts in wireless communicationcellular concepts in wireless communication
cellular concepts in wireless communication
 
MIMO OFDM
MIMO OFDMMIMO OFDM
MIMO OFDM
 
Optimum Receiver corrupted by AWGN Channel
Optimum Receiver corrupted by AWGN ChannelOptimum Receiver corrupted by AWGN Channel
Optimum Receiver corrupted by AWGN Channel
 
Modulation
ModulationModulation
Modulation
 
Waveform coding
Waveform codingWaveform coding
Waveform coding
 
Matched filter
Matched filterMatched filter
Matched filter
 
Digital modulation techniques
Digital modulation techniquesDigital modulation techniques
Digital modulation techniques
 

Similar to Channel Estimation

Time_and_Frequency_Synchronization_for_OTFS.pdf
Time_and_Frequency_Synchronization_for_OTFS.pdfTime_and_Frequency_Synchronization_for_OTFS.pdf
Time_and_Frequency_Synchronization_for_OTFS.pdf
dileepbapatla
 
Paper id 22201419
Paper id 22201419Paper id 22201419
Paper id 22201419
IJRAT
 
Progress seminar
Progress seminarProgress seminar
Progress seminar
Barnali Dey
 
Spectrum-efficiency parametric channel estimation scheme for massive MIMO sys...
Spectrum-efficiency parametric channel estimation scheme for massive MIMO sys...Spectrum-efficiency parametric channel estimation scheme for massive MIMO sys...
Spectrum-efficiency parametric channel estimation scheme for massive MIMO sys...
Qian Han
 
CS Based Channel Estimation for OFDM Systems under Long Delay Channels Using ...
CS Based Channel Estimation for OFDM Systems under Long Delay Channels Using ...CS Based Channel Estimation for OFDM Systems under Long Delay Channels Using ...
CS Based Channel Estimation for OFDM Systems under Long Delay Channels Using ...
IJERA Editor
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
ijceronline
 

Similar to Channel Estimation (20)

Time_and_Frequency_Synchronization_for_OTFS.pdf
Time_and_Frequency_Synchronization_for_OTFS.pdfTime_and_Frequency_Synchronization_for_OTFS.pdf
Time_and_Frequency_Synchronization_for_OTFS.pdf
 
Ofdma
OfdmaOfdma
Ofdma
 
Final ppt
Final pptFinal ppt
Final ppt
 
Pilot based channel estimation improvement in orthogonal frequency-division m...
Pilot based channel estimation improvement in orthogonal frequency-division m...Pilot based channel estimation improvement in orthogonal frequency-division m...
Pilot based channel estimation improvement in orthogonal frequency-division m...
 
Paper id 22201419
Paper id 22201419Paper id 22201419
Paper id 22201419
 
Introduction to OFDM
Introduction to OFDMIntroduction to OFDM
Introduction to OFDM
 
E010333137
E010333137E010333137
E010333137
 
Progress seminar
Progress seminarProgress seminar
Progress seminar
 
H04654853
H04654853H04654853
H04654853
 
A COMPARATIVE PERFORMANCE STUDY OF OFDM SYSTEM WITH THE IMPLEMENTATION OF COM...
A COMPARATIVE PERFORMANCE STUDY OF OFDM SYSTEM WITH THE IMPLEMENTATION OF COM...A COMPARATIVE PERFORMANCE STUDY OF OFDM SYSTEM WITH THE IMPLEMENTATION OF COM...
A COMPARATIVE PERFORMANCE STUDY OF OFDM SYSTEM WITH THE IMPLEMENTATION OF COM...
 
Spectrum-efficiency parametric channel estimation scheme for massive MIMO sys...
Spectrum-efficiency parametric channel estimation scheme for massive MIMO sys...Spectrum-efficiency parametric channel estimation scheme for massive MIMO sys...
Spectrum-efficiency parametric channel estimation scheme for massive MIMO sys...
 
Channel estimation
Channel estimationChannel estimation
Channel estimation
 
Ijetcas14 344
Ijetcas14 344Ijetcas14 344
Ijetcas14 344
 
Hi3114131415
Hi3114131415Hi3114131415
Hi3114131415
 
LTE Patent for Standard 2010 1 Q
LTE Patent for Standard 2010 1 QLTE Patent for Standard 2010 1 Q
LTE Patent for Standard 2010 1 Q
 
CS Based Channel Estimation for OFDM Systems under Long Delay Channels Using ...
CS Based Channel Estimation for OFDM Systems under Long Delay Channels Using ...CS Based Channel Estimation for OFDM Systems under Long Delay Channels Using ...
CS Based Channel Estimation for OFDM Systems under Long Delay Channels Using ...
 
93755181 lte-hoping
93755181 lte-hoping93755181 lte-hoping
93755181 lte-hoping
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
 
I010216266
I010216266I010216266
I010216266
 
On Channel Estimation of OFDM-BPSK and -QPSK over Nakagami-m Fading Channels
On Channel Estimation of OFDM-BPSK and -QPSK over Nakagami-m Fading ChannelsOn Channel Estimation of OFDM-BPSK and -QPSK over Nakagami-m Fading Channels
On Channel Estimation of OFDM-BPSK and -QPSK over Nakagami-m Fading Channels
 

More from Pei-Che Chang

More from Pei-Che Chang (20)

PLL Note
PLL NotePLL Note
PLL Note
 
Phase Locked Loops (PLL) 1
Phase Locked Loops (PLL) 1Phase Locked Loops (PLL) 1
Phase Locked Loops (PLL) 1
 
NTHU Comm Presentation
NTHU Comm PresentationNTHU Comm Presentation
NTHU Comm Presentation
 
Introduction to Compressive Sensing in Wireless Communication
Introduction to Compressive Sensing in Wireless CommunicationIntroduction to Compressive Sensing in Wireless Communication
Introduction to Compressive Sensing in Wireless Communication
 
Distributed Architecture of Subspace Clustering and Related
Distributed Architecture of Subspace Clustering and RelatedDistributed Architecture of Subspace Clustering and Related
Distributed Architecture of Subspace Clustering and Related
 
PMF BPMF and BPTF
PMF BPMF and BPTFPMF BPMF and BPTF
PMF BPMF and BPTF
 
Distributed ADMM
Distributed ADMMDistributed ADMM
Distributed ADMM
 
Brief Introduction About Topological Interference Management (TIM)
Brief Introduction About Topological Interference Management (TIM)Brief Introduction About Topological Interference Management (TIM)
Brief Introduction About Topological Interference Management (TIM)
 
Patch antenna
Patch antennaPatch antenna
Patch antenna
 
Antenna basic
Antenna basicAntenna basic
Antenna basic
 
PAPR Reduction
PAPR ReductionPAPR Reduction
PAPR Reduction
 
The Wireless Channel Propagation
The Wireless Channel PropagationThe Wireless Channel Propagation
The Wireless Channel Propagation
 
MIMO Channel Capacity
MIMO Channel CapacityMIMO Channel Capacity
MIMO Channel Capacity
 
Digital Passband Communication
Digital Passband CommunicationDigital Passband Communication
Digital Passband Communication
 
Digital Baseband Communication
Digital Baseband CommunicationDigital Baseband Communication
Digital Baseband Communication
 
The relationship between bandwidth and rise time
The relationship between bandwidth and rise timeThe relationship between bandwidth and rise time
The relationship between bandwidth and rise time
 
Millimeter wave 5G antennas for smartphones
Millimeter wave 5G antennas for smartphonesMillimeter wave 5G antennas for smartphones
Millimeter wave 5G antennas for smartphones
 
Introduction of GPS BPSK-R and BOC
Introduction of GPS BPSK-R and BOCIntroduction of GPS BPSK-R and BOC
Introduction of GPS BPSK-R and BOC
 
Filtering Requirements for FDD + TDD CA Scenarios
Filtering Requirements for FDD + TDD CA ScenariosFiltering Requirements for FDD + TDD CA Scenarios
Filtering Requirements for FDD + TDD CA Scenarios
 
Intermodulation distortion derivation
Intermodulation distortion derivationIntermodulation distortion derivation
Intermodulation distortion derivation
 

Recently uploaded

notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
MsecMca
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Christo Ananth
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ssuser89054b
 

Recently uploaded (20)

notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 

Channel Estimation

  • 2. 2 Pilot Structure Training Symbol-Based Channel Estimation DFT-Based Channel Estimation Decision-Directed Channel Estimation Advanced Channel Estimation Techniques Agenda
  • 3. 3 Fig. Block diagram of transmitter and receiver in an OFDM system. (S/P) Pulse shaping (S/P)
  • 4. 4 In an OFDM system, transmitter modulates → PSK/QAM symbols → IFFT on the symbols to convert them into time-domain signals → channel. The channel effect must be estimated and compensated in the receiver. Each subcarrier can be regarded as an independent channel, as long as no ICI (Inter-Carrier Interference) occurs, and thus preserving the orthogonality among subcarriers. The orthogonality allows each subcarrier component of the received signal to be expressed as the product of the transmitted signal and channel frequency response at the subcarrier. The transmitted signal can be recovered by estimating the channel response just at each subcarrier. Channel can be estimated by using a preamble or pilot symbols known to both transmitter and receiver, which employ various interpolation techniques to estimate the channel response of the subcarriers between pilot tones. Data signal as well as training signal, or both, can be used for channel estimation. In order to choose the channel estimation technique for the OFDM system under consideration, many different aspects of implementations, including the required performance, computational complexity and time-variation of the channel must be taken into account. Channel estimation
  • 5. 5 Pilot Structure Training Symbol-Based Channel Estimation DFT-Based Channel Estimation Decision-Directed Channel Estimation Advanced Channel Estimation Techniques Agenda Depending on the arrangement of pilots, three different types of pilot structures are considered: block type, comb type, and lattice type
  • 6. 時間選擇性衰落(快衰落) 頻率選擇性衰落 6 1 coherent Doppler T f ∝ ∆ 1 : BW . : ( ) coherent spread coherent spread B t B t h t ∝ 相干帶寬 在該 內信道衰落基本不變 時延擴展 信道沖激響應 持續時間 2個重要觀念個重要觀念個重要觀念個重要觀念
  • 7. 7 Pilot Structure: Block Type Pilot symbols are transmitted periodically for channel estimation. Using these pilots, a time-domain interpolation is performed to estimate the channel along the time axis. Let St denote the period of pilot symbols in time. In order to keep track of the time-varying channel characteristics, the pilot symbols must be placed as frequently as the coherence time is. Coherence time is inverse form of the Doppler frequency fDoppler in the channel, the pilot symbol period must satisfy the following inequality: Pros: pilot tones are inserted into all subcarriers of pilot symbols with a period in time, the block-type pilot arrangement is suitable for frequency-selective channels. Cons: for the fast-fading channels, incur too much overhead to track the channel variation by reducing the pilot symbol period. Pilot symbols 1 coherent timet Doppler S f ≤ = Fig. Block-type pilot arrangement.
  • 8. 8 Pilot Structure: Comb Type Fig. Comb-type pilot arrangement. Comb-type every OFDM symbol has pilot tones at the periodically-located subcarriers, which are used for a frequency-domain interpolation to estimate the channel along the frequency axis. Let Sf be the period of pilot tones in frequency. In order to keep track of the frequency-selective channel characteristics, the pilot symbols must be placed as frequently as coherent bandwidth (BW) is. Coherence bandwidth is determined by an inverse of the maximum delay spread σmax, the pilot symbol period must satisfy the following inequality: Pros: comb-type pilot arrangement is suitable for fast-fading channels. Cons: Not for frequency-selective channels. max 1 coherent BW (delay spread) fS σ ≤ =
  • 9. 9 Pilot Structure: Lattice Type Fig. Lattice-type pilot arrangement. Pilot tones are inserted along both the time and frequency axes with given periods. The pilot tones scattered in both time and frequency axes facilitate time/frequency-domain interpolations for channel estimation. Let St and Sf denote the periods of pilot symbols in time and frequency, respectively. In order to keep track of the time-varying and frequency-selective channel characteristics, the pilot symbol arrangement must satisfy both equations max 1 1 coherent time and coherent BW (delay spread) t f Doppler S S f σ ≤ = ≤ =
  • 10. 10 Pilot Structure Training Symbol-Based Channel Estimation DFT-Based Channel Estimation Decision-Directed Channel Estimation Advanced Channel Estimation Techniques Agenda
  • 11. 11 Training Symbol-Based Channel Estimation Training symbols can be used for channel estimation, usually providing a good performance. Transmission efficiencies are reduced due to the required overhead of training symbols such as preamble or pilot tones that are transmitted in addition to data symbols. The least-square (LS) and minimum-mean-square-error (MMSE) techniques are widely used for channel estimation when training symbols are available.
  • 12. 12 LS Channel Estimation: the following cost function (LS) is minimized: X is assumed to be diagonal due to the ICI-free condition The mean-square error (MSE) of this LS channel estimate is given as: Y = HX + Z Note that the MSE in Equation is inversely proportional to the SNR , which implies that it may be subject to noise enhancement, especially when the channel is in a deep null. Due to its simplicity, the LS method has been widely used for channel estimation. 2 2 /x zσ σ 1 SNR ∝
  • 13. 13 MMSE Channel Estimation: the following cost function (MSE) is minimized: Fig. MMSE channel estimation. MMSE method finds a better (linear) estimate in terms of W in such a way that the MSE in is minimized.ˆ( )J H ˆ =H WHɶ Hɶ ˆ= −e H HH
  • 14. 14 is the cross-correlation matrix between the true channel vector and temporary channel estimate vector in the frequency domain. HH R ɶ
  • 15. 15
  • 16. 16 Fig. Time-domain correlation characteristic of channel
  • 17. 17 function H_LS = LS_CE(Y,Xp,pilot_loc,Nfft,Nps,int_opt) % LS channel estimation function % Inputs: % Y = Frequency-domain received signal % Xp = Pilot signal % pilot_loc = Pilot location % N = FFT size % Nps = Pilot spacing % int_opt = 'linear' or 'spline' % output: % H_LS = LS channel etimate Np = Nfft/Nps; % # of pilot k = 1:Np; LS_est(k) = Y(pilot_loc(k))./Xp(k); % LS channel estimation if lower(int_opt(1)) == 'l', method = 'linear'; else method = 'spline'; end H_LS = interpolate(LS_est,pilot_loc,Nfft,method); % Linear/Spline interpolation
  • 18. 18 Pilot Structure Training Symbol-Based Channel Estimation DFT-Based Channel Estimation Decision-Directed Channel Estimation Advanced Channel Estimation Techniques Agenda
  • 19. 19 DFT-Based Channel Estimation The DFT-based channel estimation technique has been derived to improve the performance of LS or MMSE channel estimation by eliminating the effect of noise outside the maximum channel delay. Fig. DFT-based channel estimation. maximum channel delay L must be known in advance.
  • 20. 20 SNR = 20 dB Illustration for performance improvement with DFT-based channel estimation. https://github.com/oklachumi/octave-in-communications/blob/master/channel_estimation.m
  • 21. 21 SNR = 20 dB Received signal constellation diagrams before and after channel compensation. https://github.com/oklachumi/octave-in-communications/blob/master/channel_estimation.m
  • 23. 23 Pilot Structure Training Symbol-Based Channel Estimation DFT-Based Channel Estimation Decision-Directed Channel Estimation Advanced Channel Estimation Techniques Agenda
  • 24. 24 Fig. Block diagram of transmitter and receiver in an OFDM system. (S/P) Pulse shaping (S/P) Review…
  • 25. 25 Decision-Directed Channel Estimation Fig. Block diagram for an OFDM receiver with decision-directed channel estimation. Once initial channel estimation is made with the preamble or pilots, the coefficients of channel can be updated with decision- directed (DD) channel estimation, which does not use the preamble or pilots. DD technique uses the detected signal feedback to track the possibly time-varying channel while subsequently using the channel estimate to detect the signal.