SlideShare a Scribd company logo
On Prototyping IEEE802.11p Channel
Estimators in Real-World Environments
Using GNURadio
Razvan-Andrei Stoica, Stefano Severi, Giuseppe Abreu
r.stoica@jacobs-university.de
Focus Area Mobility - Jacobs University Bremen (GERMANY)
June 19, 2016
Vehicular Ad-hoc Networks in ITS
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 2/1
Wireless Channel in VANETs: Relevance
ITS Applications require robust wireless communications.
⇓
Knowledge of the wireless channel is fundamental!
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 3/1
Wireless Channel in VANETs: Relevance
ITS Applications require robust wireless communications.
⇓
Knowledge of the wireless channel is fundamental!
⇓
Ranging may be refined and improved using Channel
State Information (CSI).
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 4/1
Wireless Channel in VANETs: Characteristics
Vehicular WiFi [2] ↔ IEEE 802.11p [3].
Key Challenges:
Non-stationary channel distributions,
Short coherence times,
Short / medium link availability,
Frequency selective channels,
Fast fading and shadowing.
[2] ETSI EN 302 665 V1.1.1, European Standard (Telecommunications series): Intelligent Transport Systems (ITS); Communications Architecture, September 2010.
[3] IEEE Std. 802.11p-2010: “IEEE Standard for Information Technology - Telecommunications and Information Exchange Between Systems - Local and Metropolitan
Area Networks - Specific Requirements, Part 11: Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) Specifications, Amendment 6: Wireless
Access in Vehicular Environments” , July 2010.
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 5/1
Proposal Overview
Objective
Design a new practical channel estimation scheme and
prototype its real-world deployment with Software Defined
Radio (SDR).
Strategy
Implement the SOF algorithm[4] in GNURadio and
contribute to an open-source community of engineers and
enthusiats.
[4] R. A. Stoica, S. Severi, and G. T. F. de Abreu, “Learning the vehicular channel through the self-organization of frequencies,” in Vehicular Networking Conference
(VNC), 2015 IEEE, Dec 2015, pp. 68-75.
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 6/1
GNURadio in a Nutshell
What is it?
Open-source community driven framework for SDRs[5].
“Linux” for Software Defined Radios and Digital Signal
Processing.
[5] GNU Radio Website, accessed June 2016. [Online]. Available at: http://www.gnuradio.org
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 7/1
GNURadio in a Nutshell
Why use GNURadio?
open-source and free
large tutorial pool and thorough documentation
flowchart based modeling
many signal processing blocks implementated by default
C++ / Python based block programming
rapid prototyping through software
modular packaging of custom solutions
easy blocks and code reuse
SDR hardware prices go down
hardware reuse for different projects
[5] GNU Radio Website, accessed June 2016. [Online]. Available at: http://www.gnuradio.org
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 8/1
GNURadio IEEE 802.11p Rx Prototyping
How to use GNURadio in given context?
Start from existent module of IEEE 801.11p transceiver
[6],[7], integrate and test researched channel estimation
solution on the Rx side.
[6] B. Bloessl, M. Segata, C. Sommer, and F. Dressler, “Towards an open source IEEE 802.11p stack: A full SDR-based transceiver in GNURadio,” in Vehicular
Networking Conference (VNC), 2013 IEEE, Dec 2013, pp. 143-149.
[7] B. Bloessl, gr-ieee802-11 GNURadio module, accessed June 2016. [Online]. Available at: https://github.com/bastibl/gr-ieee802-11.
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 9/1
GNURadio IEEE 802.11p Rx Prototyping
How to use GNURadio in given context?
Start from existent module of IEEE 801.11p transceiver
[6],[7], integrate and test researched channel estimation
solution on the Rx side.
[6] B. Bloessl, M. Segata, C. Sommer, and F. Dressler, “Towards an open source IEEE 802.11p stack: A full SDR-based transceiver in GNURadio,” in Vehicular
Networking Conference (VNC), 2013 IEEE, Dec 2013, pp. 143-149.
[7] B. Bloessl, gr-ieee802-11 GNURadio module, accessed June 2016. [Online]. Available at: https://github.com/bastibl/gr-ieee802-11.
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 10/1
The SOF Algorithm - Overview
What is the SOF ?
Improved channel estimator compliant with IEEE 802.11p
OFDM PHY specifications and packet format [3].
Why use SOF ?
Superior performance than typical LS estimation and SotA
sequential schemes (e.g. STA [8], CDP [9]) and lower
complexity and latency than iterative schemes (e.g.
soft-input soft-output turbo decoder [10]) [4].
[8] J. A. Fernandez, K. Borries, L. Cheng, B. Vijaya Kumar, D. D. Stancil, and F. Bai, “Performance of the 802.11p physical layer in vehicle-to-vehicle environments,”
Vehicular Technology, IEEE Transactions on, vol. 61, no. 1, pp. 3-14, 2012.
[9] Z. Zhao, X. Cheng, M. Wen, L. Yang, and B. Jiao, “Constructed Data Pilot-Assisted Channel Estimators for Mobile Environments,” IEEE Transactions on Intelligent
Transportation Systems, vol. 16, no. 2, pp. 947–957, April 2015.
[10] P. Alexander, D. Haley, and A. Grant, “Cooperative intelligent transport systems: 5.9-ghz field trials,” Proceedings of the IEEE, vol. 99, no. 7, pp. 1213-1235, July
2011.
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 11/1
The SOF Algorithm - How does it work ?
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 12/1
The SOF Algorithm - Practical Amendments
Prototyping with GNURadio revealed two “issues”:
high SNR performance improvement possible by adaptive
MA filtering
constellation drifting due to sequential estimation and low
resolution comb pilots
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 13/1
The SOF Algorithm - Practical Amendments
MA Adaptive Filtering Optimization
Problem
MA filtering refines LS estimates for low and medium
SNRs, but decays performance in high SNR regimes.
Solution
Linearly adapt the MA filtering window. Use a wide
window (max. 11 taps) for low SNRs and decrease the
width up to just one tap (no filtering) for high SNRs.
Adapt filtering window by thresholding — up to 30 dB allow
MA and then turn it off upon results in [4].
σ(ˆρ)=



2.79, ˆρ ≤ 0 dB
−2.33
30 ˆρ + 2.79, ˆρ ∈ (0, 30] dB
0.46, ˆρ > 30 dB
. (1)
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 14/1
The SOF Algorithm - Practical Amendments
Constellation Drifting Fix
Problem
IEEE 802.11p comb pilots cannot lock and correct the
phase offset of the symbols constellation → errors.
Solution
Correlate previous CFR estimate with current one to
estimate and correct the phase offset.
ˆφcorr(i) = ∠
Nsc−1
k=0
ˆHSOF,i(k) ˆH∗
SOF,i−1(k)
Nsc · | Nsc−1
k=0
ˆHSOF,i(k) ˆH∗
SOF,i−1(k)|
, (2)
ˆHcorr
SOF,i(k) ˆHSOF,i(k) · exp(−j ˆφcorr(i)). (3)
Works due to initial training block → fixed reference locked.
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 15/1
The SOF Algorithm - Pseudocode
1: Compute initial LS estimate from training symbols: ˆH0
2: Estimate SNR: ˆρ
3: Compute filter window: MA(·)
4: Filter initial estimate: ˆHSOF,0 = MA( ˆH0)
5: for symbol i = 1 to F do
6: Get OFDM symbol estimate: ˆXi = Yi/ ˆHSOF,i−1
7: Equalize OFDM Tx symbol: ˆXTX,i −→ ˆXi
8: Estimate current symbol SNR: ˆρ
9: Compute filter window: MA(·)
10: Filter intermediate estimate: ˜Hi = MA( ˆHi)
11: Update SOF channel estimate:
ˆHSOF,i = ˆHSOF,i−1 + γ( ˜Hi − ˆHSOF,i−1)
12: Correct phase rotation:
ˆφcorr(i), ˆHSOF,i ← ˆHSOF,i · exp(−j ˆφcorr(i))
13: end for
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 16/1
Testing the Implementation
Strategy
Perform unit tests and system tests.
unit tests ↔ loopback Tx-Rx chain targeting channel
estimation algorithms.
system tests ↔ real-world Tx-Rx communication focusing
on packet delivery and general operation.
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 17/1
Unit Testing
loopback GNURadio interfaces (does not require RF HW);
builds on top of IEEE 802.11p transceiver [7];
similar to MATLAB simulations;
computes FER at different SNRs on emulated channels;
implements 2 vehicular channels [11].
Channel v[km/h] Doppler [Hz] Max. τs[µs]
V2V
express-way
oncoming
300-400 m
210 1000-1200 0.3
V2I
urban canyon
100 m
32-48 300 0.5
[11] G. Acosta-Marum and M. A. Ingram, “Six Time-and Frequency-selective empirical channel models for vehicular wireless LANs,” Vehicular Technology Magazine,
IEEE, vol. 2, no. 4, pp. 4-11, 2007.
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 18/1
Performance Evaluation - FER 100B PSDU
V2V(top), V2I(bottom) @ QPSK 1/2
0 5 10 15 20 25 30 35
10
−2
10
−1
10
0
Es/N0 dB
FER
LS
CDP
SOF
0 5 10 15 20 25 30 35
10
−2
10
−1
10
0
Es/N0 dB
FER
LS
CDP
SOF
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 19/1
Performance Evaluation - FER 300B PSDU
V2V(top), V2I(bottom) @ QPSK 1/2
0 5 10 15 20 25 30 35
10
−2
10
−1
10
0
Es/N0 dB
FER
LS
CDP
SOF
0 5 10 15 20 25 30 35
10
−2
10
−1
10
0
Es/N0 dB
FER
LS
CDP
SOF
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 20/1
System Testing
runs real-time communication (requires RF HW [12],[13]);
uses implemented IEEE 802.11p Rx;
computes FER based on short-term statistics;
displays results in real-time GUI for evaluation and debug;
tested only indoor (for the moment).
[11] Cohda Wireless, accessed June 2016. [Online]. Available at: http://cohdawireless.com/Portals/0/MK5_OBU_10122015.pdf
[12] Ettus Research, accessed June 2016. [Online]. Available at:
https://www.ettus.com/content/files/07495_Ettus_N200-210_DS_Flyer_HR_1.pdf.
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 21/1
Performance Evaluation - Indoor Testing
Real-Time OFDM Equalized Symbol Snapshot
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 22/1
Conclusions and Future Work
Take Home Points
SDRs: future of modular multi-purpose radio design
GNURadio: easy-to-use “Linux” of SDRs
CSI Knowledge: key of robust communication and ranging
SOF: IEEE 802.11 p(/a/g)-compliant, performant and
low-complexity channel estimation algorithm
Next Steps
SOF Optimization: antenna diversity and
deparameterization by channel correlations
Field Trials: setup outdoor V2X test framework of SDR vs.
reference devices (e.g. Cohda Mk5)
CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 23/1
Thank you!

More Related Content

What's hot

CommTech Talks: Elastic Optical Devices for Software Defined Optical Networks
CommTech Talks: Elastic Optical Devices for Software Defined Optical NetworksCommTech Talks: Elastic Optical Devices for Software Defined Optical Networks
CommTech Talks: Elastic Optical Devices for Software Defined Optical Networks
Antonio Capone
 
What makes telco tick and what to expect from real 5G
What makes telco tick and what to expect from real 5GWhat makes telco tick and what to expect from real 5G
What makes telco tick and what to expect from real 5G
Dr. Kim (Kyllesbech Larsen)
 
optics ppt
optics pptoptics ppt
Rate and Performance Analysis of Indoor Optical Camera Communications in Opti...
Rate and Performance Analysis of Indoor Optical Camera Communications in Opti...Rate and Performance Analysis of Indoor Optical Camera Communications in Opti...
Rate and Performance Analysis of Indoor Optical Camera Communications in Opti...
Willy Anugrah Cahyadi
 
introduction-to-gprs-egprs-
introduction-to-gprs-egprs-introduction-to-gprs-egprs-
introduction-to-gprs-egprs-
Dawood Aqlan
 
WAVE and 802.11p models evaluation in NS3 simulation environment
WAVE and 802.11p models evaluation in NS3 simulation environmentWAVE and 802.11p models evaluation in NS3 simulation environment
WAVE and 802.11p models evaluation in NS3 simulation environment
Yaroslav Domaratsky
 
Lte Ran Architecture Aspects
Lte Ran Architecture AspectsLte Ran Architecture Aspects
Lte Ran Architecture Aspects
BP Tiwari
 
Mobdiea lte overview_2nd_marketing_2014_0423_최종
Mobdiea lte overview_2nd_marketing_2014_0423_최종Mobdiea lte overview_2nd_marketing_2014_0423_최종
Mobdiea lte overview_2nd_marketing_2014_0423_최종
Kevin Kang
 
Fronthaul technologies kwang_submit_to_slideshare
Fronthaul technologies kwang_submit_to_slideshareFronthaul technologies kwang_submit_to_slideshare
Fronthaul technologies kwang_submit_to_slideshare
Kwangkoog Lee
 
5G - Peak Complexity
5G - Peak Complexity5G - Peak Complexity
5G - Peak Complexity
3G4G
 
White paper coord_la_and_ec
White paper coord_la_and_ecWhite paper coord_la_and_ec
White paper coord_la_and_ec
Eiko Seidel
 
Data center trends_from_telco_perspectives_kwangkoog_submit
Data center trends_from_telco_perspectives_kwangkoog_submitData center trends_from_telco_perspectives_kwangkoog_submit
Data center trends_from_telco_perspectives_kwangkoog_submit
Kwangkoog Lee
 
Emerging Trends and Applications for Cost Effective ROADMs
Emerging Trends and Applications for Cost Effective ROADMsEmerging Trends and Applications for Cost Effective ROADMs
Emerging Trends and Applications for Cost Effective ROADMs
CPqD
 
LTE Release 13 and SMARTER – Road Towards 5G
LTE Release 13 and SMARTER – Road Towards 5GLTE Release 13 and SMARTER – Road Towards 5G
LTE Release 13 and SMARTER – Road Towards 5G
Yi-Hsueh Tsai
 
5G End to-end network slicing Demo
5G End to-end network slicing Demo5G End to-end network slicing Demo
5G End to-end network slicing Demo
ITU
 
5G Transport Network Requirement for Indian Telecom By Subrata Sen
5G Transport Network Requirement for Indian Telecom By Subrata Sen5G Transport Network Requirement for Indian Telecom By Subrata Sen
5G Transport Network Requirement for Indian Telecom By Subrata Sen
Sukhvinder Singh Malik
 
Control Plane for High Capacity Networks Public
Control Plane for High Capacity Networks PublicControl Plane for High Capacity Networks Public
Control Plane for High Capacity Networks Public
CPqD
 
Speed5G Workshop London presentation of the Speed5G MAC framework
Speed5G Workshop London presentation of the Speed5G MAC frameworkSpeed5G Workshop London presentation of the Speed5G MAC framework
Speed5G Workshop London presentation of the Speed5G MAC framework
Klaus Moessner
 
Speed5G Workshop London presentation of the Speed5G project approach and achi...
Speed5G Workshop London presentation of the Speed5G project approach and achi...Speed5G Workshop London presentation of the Speed5G project approach and achi...
Speed5G Workshop London presentation of the Speed5G project approach and achi...
Klaus Moessner
 
Passive 100G DC Interconnect: Challenges and Solutions
Passive 100G DC Interconnect: Challenges and SolutionsPassive 100G DC Interconnect: Challenges and Solutions
Passive 100G DC Interconnect: Challenges and Solutions
Susmita Adhikari Joshi
 

What's hot (20)

CommTech Talks: Elastic Optical Devices for Software Defined Optical Networks
CommTech Talks: Elastic Optical Devices for Software Defined Optical NetworksCommTech Talks: Elastic Optical Devices for Software Defined Optical Networks
CommTech Talks: Elastic Optical Devices for Software Defined Optical Networks
 
What makes telco tick and what to expect from real 5G
What makes telco tick and what to expect from real 5GWhat makes telco tick and what to expect from real 5G
What makes telco tick and what to expect from real 5G
 
optics ppt
optics pptoptics ppt
optics ppt
 
Rate and Performance Analysis of Indoor Optical Camera Communications in Opti...
Rate and Performance Analysis of Indoor Optical Camera Communications in Opti...Rate and Performance Analysis of Indoor Optical Camera Communications in Opti...
Rate and Performance Analysis of Indoor Optical Camera Communications in Opti...
 
introduction-to-gprs-egprs-
introduction-to-gprs-egprs-introduction-to-gprs-egprs-
introduction-to-gprs-egprs-
 
WAVE and 802.11p models evaluation in NS3 simulation environment
WAVE and 802.11p models evaluation in NS3 simulation environmentWAVE and 802.11p models evaluation in NS3 simulation environment
WAVE and 802.11p models evaluation in NS3 simulation environment
 
Lte Ran Architecture Aspects
Lte Ran Architecture AspectsLte Ran Architecture Aspects
Lte Ran Architecture Aspects
 
Mobdiea lte overview_2nd_marketing_2014_0423_최종
Mobdiea lte overview_2nd_marketing_2014_0423_최종Mobdiea lte overview_2nd_marketing_2014_0423_최종
Mobdiea lte overview_2nd_marketing_2014_0423_최종
 
Fronthaul technologies kwang_submit_to_slideshare
Fronthaul technologies kwang_submit_to_slideshareFronthaul technologies kwang_submit_to_slideshare
Fronthaul technologies kwang_submit_to_slideshare
 
5G - Peak Complexity
5G - Peak Complexity5G - Peak Complexity
5G - Peak Complexity
 
White paper coord_la_and_ec
White paper coord_la_and_ecWhite paper coord_la_and_ec
White paper coord_la_and_ec
 
Data center trends_from_telco_perspectives_kwangkoog_submit
Data center trends_from_telco_perspectives_kwangkoog_submitData center trends_from_telco_perspectives_kwangkoog_submit
Data center trends_from_telco_perspectives_kwangkoog_submit
 
Emerging Trends and Applications for Cost Effective ROADMs
Emerging Trends and Applications for Cost Effective ROADMsEmerging Trends and Applications for Cost Effective ROADMs
Emerging Trends and Applications for Cost Effective ROADMs
 
LTE Release 13 and SMARTER – Road Towards 5G
LTE Release 13 and SMARTER – Road Towards 5GLTE Release 13 and SMARTER – Road Towards 5G
LTE Release 13 and SMARTER – Road Towards 5G
 
5G End to-end network slicing Demo
5G End to-end network slicing Demo5G End to-end network slicing Demo
5G End to-end network slicing Demo
 
5G Transport Network Requirement for Indian Telecom By Subrata Sen
5G Transport Network Requirement for Indian Telecom By Subrata Sen5G Transport Network Requirement for Indian Telecom By Subrata Sen
5G Transport Network Requirement for Indian Telecom By Subrata Sen
 
Control Plane for High Capacity Networks Public
Control Plane for High Capacity Networks PublicControl Plane for High Capacity Networks Public
Control Plane for High Capacity Networks Public
 
Speed5G Workshop London presentation of the Speed5G MAC framework
Speed5G Workshop London presentation of the Speed5G MAC frameworkSpeed5G Workshop London presentation of the Speed5G MAC framework
Speed5G Workshop London presentation of the Speed5G MAC framework
 
Speed5G Workshop London presentation of the Speed5G project approach and achi...
Speed5G Workshop London presentation of the Speed5G project approach and achi...Speed5G Workshop London presentation of the Speed5G project approach and achi...
Speed5G Workshop London presentation of the Speed5G project approach and achi...
 
Passive 100G DC Interconnect: Challenges and Solutions
Passive 100G DC Interconnect: Challenges and SolutionsPassive 100G DC Interconnect: Challenges and Solutions
Passive 100G DC Interconnect: Challenges and Solutions
 

Viewers also liked

Software vulnerability discovery and exploitation during red team assessments
Software vulnerability discovery and exploitation during red team assessmentsSoftware vulnerability discovery and exploitation during red team assessments
Software vulnerability discovery and exploitation during red team assessments
b0yd
 
Redes Veiculares - Anderson Chaves
Redes Veiculares  - Anderson ChavesRedes Veiculares  - Anderson Chaves
Redes Veiculares - Anderson Chaves
Anderson Chaves
 
The “Telematics Horizon” V2V and V2I Networking
The “Telematics Horizon” V2V and V2I NetworkingThe “Telematics Horizon” V2V and V2I Networking
The “Telematics Horizon” V2V and V2I Networking
Alison Chaiken
 
802.11p
802.11p802.11p
802.11p
Oded Rotter
 
EBU DRW 2011 - CRC-mmbTools - Software Radio Workshop
EBU DRW 2011 - CRC-mmbTools - Software Radio WorkshopEBU DRW 2011 - CRC-mmbTools - Software Radio Workshop
EBU DRW 2011 - CRC-mmbTools - Software Radio Workshop
Pascal Charest
 
Open Broadcasting Platforms
Open Broadcasting PlatformsOpen Broadcasting Platforms
Open Broadcasting Platforms
Pascal Charest
 
Senior Design Presentation 2014
Senior Design Presentation 2014Senior Design Presentation 2014
Senior Design Presentation 2014
Paulo Borges
 
EBU DRW 2012 - CRC mmbTools Overview
EBU DRW 2012 - CRC mmbTools OverviewEBU DRW 2012 - CRC mmbTools Overview
EBU DRW 2012 - CRC mmbTools Overview
Pascal Charest
 
Lte security concepts and design considerations
Lte security concepts and design considerationsLte security concepts and design considerations
Lte security concepts and design considerations
Mary McEvoy Carroll
 
End to End Open Source Telecom
End to End Open Source TelecomEnd to End Open Source Telecom
End to End Open Source Telecom
Ashish Banerjee
 
Practical security testing for lte networks
Practical security testing for lte networksPractical security testing for lte networks
Practical security testing for lte networks
Pfedya
 
Security Testing 4G (LTE) Networks - 44CON 2012
Security Testing 4G (LTE) Networks - 44CON 2012Security Testing 4G (LTE) Networks - 44CON 2012
Security Testing 4G (LTE) Networks - 44CON 2012
44CON
 
Introduction to RadioDNS
Introduction to RadioDNSIntroduction to RadioDNS
Introduction to RadioDNS
Pascal Charest
 
GNU Radio
GNU RadioGNU Radio
GNU Radio
milowenwen
 
Lte security overview
Lte security overviewLte security overview
Lte security overview
aliirfan04
 

Viewers also liked (15)

Software vulnerability discovery and exploitation during red team assessments
Software vulnerability discovery and exploitation during red team assessmentsSoftware vulnerability discovery and exploitation during red team assessments
Software vulnerability discovery and exploitation during red team assessments
 
Redes Veiculares - Anderson Chaves
Redes Veiculares  - Anderson ChavesRedes Veiculares  - Anderson Chaves
Redes Veiculares - Anderson Chaves
 
The “Telematics Horizon” V2V and V2I Networking
The “Telematics Horizon” V2V and V2I NetworkingThe “Telematics Horizon” V2V and V2I Networking
The “Telematics Horizon” V2V and V2I Networking
 
802.11p
802.11p802.11p
802.11p
 
EBU DRW 2011 - CRC-mmbTools - Software Radio Workshop
EBU DRW 2011 - CRC-mmbTools - Software Radio WorkshopEBU DRW 2011 - CRC-mmbTools - Software Radio Workshop
EBU DRW 2011 - CRC-mmbTools - Software Radio Workshop
 
Open Broadcasting Platforms
Open Broadcasting PlatformsOpen Broadcasting Platforms
Open Broadcasting Platforms
 
Senior Design Presentation 2014
Senior Design Presentation 2014Senior Design Presentation 2014
Senior Design Presentation 2014
 
EBU DRW 2012 - CRC mmbTools Overview
EBU DRW 2012 - CRC mmbTools OverviewEBU DRW 2012 - CRC mmbTools Overview
EBU DRW 2012 - CRC mmbTools Overview
 
Lte security concepts and design considerations
Lte security concepts and design considerationsLte security concepts and design considerations
Lte security concepts and design considerations
 
End to End Open Source Telecom
End to End Open Source TelecomEnd to End Open Source Telecom
End to End Open Source Telecom
 
Practical security testing for lte networks
Practical security testing for lte networksPractical security testing for lte networks
Practical security testing for lte networks
 
Security Testing 4G (LTE) Networks - 44CON 2012
Security Testing 4G (LTE) Networks - 44CON 2012Security Testing 4G (LTE) Networks - 44CON 2012
Security Testing 4G (LTE) Networks - 44CON 2012
 
Introduction to RadioDNS
Introduction to RadioDNSIntroduction to RadioDNS
Introduction to RadioDNS
 
GNU Radio
GNU RadioGNU Radio
GNU Radio
 
Lte security overview
Lte security overviewLte security overview
Lte security overview
 

Similar to On Prototyping IEEE 802.11p Channel Estimators in Real-World Environments using GNURadio

PhD_Presentation_v1
PhD_Presentation_v1PhD_Presentation_v1
PhD_Presentation_v1
Marco Bosco
 
Iwscff delft 2015_akhtyamov_golkar_lisi
Iwscff delft 2015_akhtyamov_golkar_lisiIwscff delft 2015_akhtyamov_golkar_lisi
Iwscff delft 2015_akhtyamov_golkar_lisi
Marco Lisi
 
GNU Radio based Real Time Data Transmission and Reception
GNU Radio based Real Time Data Transmission and ReceptionGNU Radio based Real Time Data Transmission and Reception
GNU Radio based Real Time Data Transmission and Reception
IRJET Journal
 
Analysis resultsofasoftwaregns srevieverusingusrpandcustomlnawithopensourceal...
Analysis resultsofasoftwaregns srevieverusingusrpandcustomlnawithopensourceal...Analysis resultsofasoftwaregns srevieverusingusrpandcustomlnawithopensourceal...
Analysis resultsofasoftwaregns srevieverusingusrpandcustomlnawithopensourceal...
nishit nathwani
 
Lab based ppt pluto-sdr_final
Lab based ppt pluto-sdr_finalLab based ppt pluto-sdr_final
Lab based ppt pluto-sdr_final
Bhavna Singh
 
UMKC Dynamics of BER smaller
UMKC Dynamics of BER smallerUMKC Dynamics of BER smaller
UMKC Dynamics of BER smaller
AnirudhSrinivas Prativadi Bhayankaram
 
Software Defined Radio Engineering course sampler
Software Defined Radio Engineering course samplerSoftware Defined Radio Engineering course sampler
Software Defined Radio Engineering course sampler
Jim Jenkins
 
Design and implementation of sdr based qpsk transceiver using fpga
Design and implementation of sdr based qpsk transceiver using fpgaDesign and implementation of sdr based qpsk transceiver using fpga
Design and implementation of sdr based qpsk transceiver using fpga
Tarik Kazaz
 
ATNAC.2008
ATNAC.2008ATNAC.2008
MCube_slides_20min.pptx
MCube_slides_20min.pptxMCube_slides_20min.pptx
MCube_slides_20min.pptx
ManishSharma846413
 
MIMO Testbed presentation (DSPeR'2005)
MIMO Testbed presentation (DSPeR'2005)MIMO Testbed presentation (DSPeR'2005)
MIMO Testbed presentation (DSPeR'2005)
TSC University of Mondragon
 
transforming-wireless-system-design-with-matlab-and-ni.pdf
transforming-wireless-system-design-with-matlab-and-ni.pdftransforming-wireless-system-design-with-matlab-and-ni.pdf
transforming-wireless-system-design-with-matlab-and-ni.pdf
JunaidKhan188662
 
Implementation of Algorithms For Multi-Channel Digital Monitoring Receiver
Implementation of Algorithms For Multi-Channel Digital Monitoring ReceiverImplementation of Algorithms For Multi-Channel Digital Monitoring Receiver
Implementation of Algorithms For Multi-Channel Digital Monitoring Receiver
IOSR Journals
 
3GPP 5G Technology.pptx
3GPP 5G Technology.pptx3GPP 5G Technology.pptx
3GPP 5G Technology.pptx
Luke Wang
 
GNU Radio for space research
GNU Radio for space researchGNU Radio for space research
GNU Radio for space research
Rustam Akhtyamov
 
analysis on design and implementation of 4×10 gb s wdm tdm pon with disparate...
analysis on design and implementation of 4×10 gb s wdm tdm pon with disparate...analysis on design and implementation of 4×10 gb s wdm tdm pon with disparate...
analysis on design and implementation of 4×10 gb s wdm tdm pon with disparate...
INFOGAIN PUBLICATION
 
Performance evaluation of multicast video distribution using lte a in vehicul...
Performance evaluation of multicast video distribution using lte a in vehicul...Performance evaluation of multicast video distribution using lte a in vehicul...
Performance evaluation of multicast video distribution using lte a in vehicul...
Communication Systems & Networks
 
MajorMission1
MajorMission1MajorMission1
MajorMission1
Parth Saxena
 
MTECH 3RD SEM PPT-1.pptx
MTECH 3RD SEM PPT-1.pptxMTECH 3RD SEM PPT-1.pptx
MTECH 3RD SEM PPT-1.pptx
SupriaNandan
 
January2024-Top 10 Read Articles in JANT.pdf
January2024-Top 10 Read  Articles in JANT.pdfJanuary2024-Top 10 Read  Articles in JANT.pdf
January2024-Top 10 Read Articles in JANT.pdf
jantjournal
 

Similar to On Prototyping IEEE 802.11p Channel Estimators in Real-World Environments using GNURadio (20)

PhD_Presentation_v1
PhD_Presentation_v1PhD_Presentation_v1
PhD_Presentation_v1
 
Iwscff delft 2015_akhtyamov_golkar_lisi
Iwscff delft 2015_akhtyamov_golkar_lisiIwscff delft 2015_akhtyamov_golkar_lisi
Iwscff delft 2015_akhtyamov_golkar_lisi
 
GNU Radio based Real Time Data Transmission and Reception
GNU Radio based Real Time Data Transmission and ReceptionGNU Radio based Real Time Data Transmission and Reception
GNU Radio based Real Time Data Transmission and Reception
 
Analysis resultsofasoftwaregns srevieverusingusrpandcustomlnawithopensourceal...
Analysis resultsofasoftwaregns srevieverusingusrpandcustomlnawithopensourceal...Analysis resultsofasoftwaregns srevieverusingusrpandcustomlnawithopensourceal...
Analysis resultsofasoftwaregns srevieverusingusrpandcustomlnawithopensourceal...
 
Lab based ppt pluto-sdr_final
Lab based ppt pluto-sdr_finalLab based ppt pluto-sdr_final
Lab based ppt pluto-sdr_final
 
UMKC Dynamics of BER smaller
UMKC Dynamics of BER smallerUMKC Dynamics of BER smaller
UMKC Dynamics of BER smaller
 
Software Defined Radio Engineering course sampler
Software Defined Radio Engineering course samplerSoftware Defined Radio Engineering course sampler
Software Defined Radio Engineering course sampler
 
Design and implementation of sdr based qpsk transceiver using fpga
Design and implementation of sdr based qpsk transceiver using fpgaDesign and implementation of sdr based qpsk transceiver using fpga
Design and implementation of sdr based qpsk transceiver using fpga
 
ATNAC.2008
ATNAC.2008ATNAC.2008
ATNAC.2008
 
MCube_slides_20min.pptx
MCube_slides_20min.pptxMCube_slides_20min.pptx
MCube_slides_20min.pptx
 
MIMO Testbed presentation (DSPeR'2005)
MIMO Testbed presentation (DSPeR'2005)MIMO Testbed presentation (DSPeR'2005)
MIMO Testbed presentation (DSPeR'2005)
 
transforming-wireless-system-design-with-matlab-and-ni.pdf
transforming-wireless-system-design-with-matlab-and-ni.pdftransforming-wireless-system-design-with-matlab-and-ni.pdf
transforming-wireless-system-design-with-matlab-and-ni.pdf
 
Implementation of Algorithms For Multi-Channel Digital Monitoring Receiver
Implementation of Algorithms For Multi-Channel Digital Monitoring ReceiverImplementation of Algorithms For Multi-Channel Digital Monitoring Receiver
Implementation of Algorithms For Multi-Channel Digital Monitoring Receiver
 
3GPP 5G Technology.pptx
3GPP 5G Technology.pptx3GPP 5G Technology.pptx
3GPP 5G Technology.pptx
 
GNU Radio for space research
GNU Radio for space researchGNU Radio for space research
GNU Radio for space research
 
analysis on design and implementation of 4×10 gb s wdm tdm pon with disparate...
analysis on design and implementation of 4×10 gb s wdm tdm pon with disparate...analysis on design and implementation of 4×10 gb s wdm tdm pon with disparate...
analysis on design and implementation of 4×10 gb s wdm tdm pon with disparate...
 
Performance evaluation of multicast video distribution using lte a in vehicul...
Performance evaluation of multicast video distribution using lte a in vehicul...Performance evaluation of multicast video distribution using lte a in vehicul...
Performance evaluation of multicast video distribution using lte a in vehicul...
 
MajorMission1
MajorMission1MajorMission1
MajorMission1
 
MTECH 3RD SEM PPT-1.pptx
MTECH 3RD SEM PPT-1.pptxMTECH 3RD SEM PPT-1.pptx
MTECH 3RD SEM PPT-1.pptx
 
January2024-Top 10 Read Articles in JANT.pdf
January2024-Top 10 Read  Articles in JANT.pdfJanuary2024-Top 10 Read  Articles in JANT.pdf
January2024-Top 10 Read Articles in JANT.pdf
 

More from Stefano Severi

Beyond GNSS: Highly Accurate Localization for Cooperative-Intelligent Transpo...
Beyond GNSS: Highly Accurate Localization for Cooperative-Intelligent Transpo...Beyond GNSS: Highly Accurate Localization for Cooperative-Intelligent Transpo...
Beyond GNSS: Highly Accurate Localization for Cooperative-Intelligent Transpo...
Stefano Severi
 
Mobility 4.0: the present of automotive
Mobility 4.0: the present of automotiveMobility 4.0: the present of automotive
Mobility 4.0: the present of automotive
Stefano Severi
 
Automation for Intelligent Transport Systems
Automation for Intelligent Transport SystemsAutomation for Intelligent Transport Systems
Automation for Intelligent Transport Systems
Stefano Severi
 
H2020 HIGHTS - High Precision Positioning for Cooperative ITS Applications
H2020 HIGHTS - High Precision Positioning for Cooperative ITS ApplicationsH2020 HIGHTS - High Precision Positioning for Cooperative ITS Applications
H2020 HIGHTS - High Precision Positioning for Cooperative ITS Applications
Stefano Severi
 
H2020 HIGHTS Project Description
H2020 HIGHTS Project DescriptionH2020 HIGHTS Project Description
H2020 HIGHTS Project Description
Stefano Severi
 
Wireless Localization: Positioning
Wireless Localization: PositioningWireless Localization: Positioning
Wireless Localization: Positioning
Stefano Severi
 
Wireless Localization: Ranging (second part)
Wireless Localization: Ranging (second part)Wireless Localization: Ranging (second part)
Wireless Localization: Ranging (second part)
Stefano Severi
 
Wireless Localization: Ranging (first part)
Wireless Localization: Ranging (first part)Wireless Localization: Ranging (first part)
Wireless Localization: Ranging (first part)
Stefano Severi
 
HIGHTS
HIGHTSHIGHTS
Patent_Severi
Patent_SeveriPatent_Severi
Patent_Severi
Stefano Severi
 

More from Stefano Severi (10)

Beyond GNSS: Highly Accurate Localization for Cooperative-Intelligent Transpo...
Beyond GNSS: Highly Accurate Localization for Cooperative-Intelligent Transpo...Beyond GNSS: Highly Accurate Localization for Cooperative-Intelligent Transpo...
Beyond GNSS: Highly Accurate Localization for Cooperative-Intelligent Transpo...
 
Mobility 4.0: the present of automotive
Mobility 4.0: the present of automotiveMobility 4.0: the present of automotive
Mobility 4.0: the present of automotive
 
Automation for Intelligent Transport Systems
Automation for Intelligent Transport SystemsAutomation for Intelligent Transport Systems
Automation for Intelligent Transport Systems
 
H2020 HIGHTS - High Precision Positioning for Cooperative ITS Applications
H2020 HIGHTS - High Precision Positioning for Cooperative ITS ApplicationsH2020 HIGHTS - High Precision Positioning for Cooperative ITS Applications
H2020 HIGHTS - High Precision Positioning for Cooperative ITS Applications
 
H2020 HIGHTS Project Description
H2020 HIGHTS Project DescriptionH2020 HIGHTS Project Description
H2020 HIGHTS Project Description
 
Wireless Localization: Positioning
Wireless Localization: PositioningWireless Localization: Positioning
Wireless Localization: Positioning
 
Wireless Localization: Ranging (second part)
Wireless Localization: Ranging (second part)Wireless Localization: Ranging (second part)
Wireless Localization: Ranging (second part)
 
Wireless Localization: Ranging (first part)
Wireless Localization: Ranging (first part)Wireless Localization: Ranging (first part)
Wireless Localization: Ranging (first part)
 
HIGHTS
HIGHTSHIGHTS
HIGHTS
 
Patent_Severi
Patent_SeveriPatent_Severi
Patent_Severi
 

Recently uploaded

6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)
ClaraZara1
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
insn4465
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
mamunhossenbd75
 
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
Mukeshwaran Balu
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
MIGUELANGEL966976
 
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
awadeshbabu
 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
gerogepatton
 
14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application
SyedAbiiAzazi1
 
basic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdfbasic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdf
NidhalKahouli2
 
Technical Drawings introduction to drawing of prisms
Technical Drawings introduction to drawing of prismsTechnical Drawings introduction to drawing of prisms
Technical Drawings introduction to drawing of prisms
heavyhaig
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
jpsjournal1
 
Manufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptxManufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptx
Madan Karki
 
PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
anoopmanoharan2
 
Literature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptxLiterature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptx
Dr Ramhari Poudyal
 
2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt
PuktoonEngr
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
Aditya Rajan Patra
 
Exception Handling notes in java exception
Exception Handling notes in java exceptionException Handling notes in java exception
Exception Handling notes in java exception
Ratnakar Mikkili
 
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptxML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
JamalHussainArman
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
Victor Morales
 
Wearable antenna for antenna applications
Wearable antenna for antenna applicationsWearable antenna for antenna applications
Wearable antenna for antenna applications
Madhumitha Jayaram
 

Recently uploaded (20)

6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
 
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
 
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
 
14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application
 
basic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdfbasic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdf
 
Technical Drawings introduction to drawing of prisms
Technical Drawings introduction to drawing of prismsTechnical Drawings introduction to drawing of prisms
Technical Drawings introduction to drawing of prisms
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
 
Manufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptxManufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptx
 
PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
 
Literature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptxLiterature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptx
 
2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
 
Exception Handling notes in java exception
Exception Handling notes in java exceptionException Handling notes in java exception
Exception Handling notes in java exception
 
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptxML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
 
Wearable antenna for antenna applications
Wearable antenna for antenna applicationsWearable antenna for antenna applications
Wearable antenna for antenna applications
 

On Prototyping IEEE 802.11p Channel Estimators in Real-World Environments using GNURadio

  • 1. On Prototyping IEEE802.11p Channel Estimators in Real-World Environments Using GNURadio Razvan-Andrei Stoica, Stefano Severi, Giuseppe Abreu r.stoica@jacobs-university.de Focus Area Mobility - Jacobs University Bremen (GERMANY) June 19, 2016
  • 2. Vehicular Ad-hoc Networks in ITS CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 2/1
  • 3. Wireless Channel in VANETs: Relevance ITS Applications require robust wireless communications. ⇓ Knowledge of the wireless channel is fundamental! CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 3/1
  • 4. Wireless Channel in VANETs: Relevance ITS Applications require robust wireless communications. ⇓ Knowledge of the wireless channel is fundamental! ⇓ Ranging may be refined and improved using Channel State Information (CSI). CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 4/1
  • 5. Wireless Channel in VANETs: Characteristics Vehicular WiFi [2] ↔ IEEE 802.11p [3]. Key Challenges: Non-stationary channel distributions, Short coherence times, Short / medium link availability, Frequency selective channels, Fast fading and shadowing. [2] ETSI EN 302 665 V1.1.1, European Standard (Telecommunications series): Intelligent Transport Systems (ITS); Communications Architecture, September 2010. [3] IEEE Std. 802.11p-2010: “IEEE Standard for Information Technology - Telecommunications and Information Exchange Between Systems - Local and Metropolitan Area Networks - Specific Requirements, Part 11: Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) Specifications, Amendment 6: Wireless Access in Vehicular Environments” , July 2010. CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 5/1
  • 6. Proposal Overview Objective Design a new practical channel estimation scheme and prototype its real-world deployment with Software Defined Radio (SDR). Strategy Implement the SOF algorithm[4] in GNURadio and contribute to an open-source community of engineers and enthusiats. [4] R. A. Stoica, S. Severi, and G. T. F. de Abreu, “Learning the vehicular channel through the self-organization of frequencies,” in Vehicular Networking Conference (VNC), 2015 IEEE, Dec 2015, pp. 68-75. CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 6/1
  • 7. GNURadio in a Nutshell What is it? Open-source community driven framework for SDRs[5]. “Linux” for Software Defined Radios and Digital Signal Processing. [5] GNU Radio Website, accessed June 2016. [Online]. Available at: http://www.gnuradio.org CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 7/1
  • 8. GNURadio in a Nutshell Why use GNURadio? open-source and free large tutorial pool and thorough documentation flowchart based modeling many signal processing blocks implementated by default C++ / Python based block programming rapid prototyping through software modular packaging of custom solutions easy blocks and code reuse SDR hardware prices go down hardware reuse for different projects [5] GNU Radio Website, accessed June 2016. [Online]. Available at: http://www.gnuradio.org CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 8/1
  • 9. GNURadio IEEE 802.11p Rx Prototyping How to use GNURadio in given context? Start from existent module of IEEE 801.11p transceiver [6],[7], integrate and test researched channel estimation solution on the Rx side. [6] B. Bloessl, M. Segata, C. Sommer, and F. Dressler, “Towards an open source IEEE 802.11p stack: A full SDR-based transceiver in GNURadio,” in Vehicular Networking Conference (VNC), 2013 IEEE, Dec 2013, pp. 143-149. [7] B. Bloessl, gr-ieee802-11 GNURadio module, accessed June 2016. [Online]. Available at: https://github.com/bastibl/gr-ieee802-11. CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 9/1
  • 10. GNURadio IEEE 802.11p Rx Prototyping How to use GNURadio in given context? Start from existent module of IEEE 801.11p transceiver [6],[7], integrate and test researched channel estimation solution on the Rx side. [6] B. Bloessl, M. Segata, C. Sommer, and F. Dressler, “Towards an open source IEEE 802.11p stack: A full SDR-based transceiver in GNURadio,” in Vehicular Networking Conference (VNC), 2013 IEEE, Dec 2013, pp. 143-149. [7] B. Bloessl, gr-ieee802-11 GNURadio module, accessed June 2016. [Online]. Available at: https://github.com/bastibl/gr-ieee802-11. CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 10/1
  • 11. The SOF Algorithm - Overview What is the SOF ? Improved channel estimator compliant with IEEE 802.11p OFDM PHY specifications and packet format [3]. Why use SOF ? Superior performance than typical LS estimation and SotA sequential schemes (e.g. STA [8], CDP [9]) and lower complexity and latency than iterative schemes (e.g. soft-input soft-output turbo decoder [10]) [4]. [8] J. A. Fernandez, K. Borries, L. Cheng, B. Vijaya Kumar, D. D. Stancil, and F. Bai, “Performance of the 802.11p physical layer in vehicle-to-vehicle environments,” Vehicular Technology, IEEE Transactions on, vol. 61, no. 1, pp. 3-14, 2012. [9] Z. Zhao, X. Cheng, M. Wen, L. Yang, and B. Jiao, “Constructed Data Pilot-Assisted Channel Estimators for Mobile Environments,” IEEE Transactions on Intelligent Transportation Systems, vol. 16, no. 2, pp. 947–957, April 2015. [10] P. Alexander, D. Haley, and A. Grant, “Cooperative intelligent transport systems: 5.9-ghz field trials,” Proceedings of the IEEE, vol. 99, no. 7, pp. 1213-1235, July 2011. CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 11/1
  • 12. The SOF Algorithm - How does it work ? CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 12/1
  • 13. The SOF Algorithm - Practical Amendments Prototyping with GNURadio revealed two “issues”: high SNR performance improvement possible by adaptive MA filtering constellation drifting due to sequential estimation and low resolution comb pilots CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 13/1
  • 14. The SOF Algorithm - Practical Amendments MA Adaptive Filtering Optimization Problem MA filtering refines LS estimates for low and medium SNRs, but decays performance in high SNR regimes. Solution Linearly adapt the MA filtering window. Use a wide window (max. 11 taps) for low SNRs and decrease the width up to just one tap (no filtering) for high SNRs. Adapt filtering window by thresholding — up to 30 dB allow MA and then turn it off upon results in [4]. σ(ˆρ)=    2.79, ˆρ ≤ 0 dB −2.33 30 ˆρ + 2.79, ˆρ ∈ (0, 30] dB 0.46, ˆρ > 30 dB . (1) CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 14/1
  • 15. The SOF Algorithm - Practical Amendments Constellation Drifting Fix Problem IEEE 802.11p comb pilots cannot lock and correct the phase offset of the symbols constellation → errors. Solution Correlate previous CFR estimate with current one to estimate and correct the phase offset. ˆφcorr(i) = ∠ Nsc−1 k=0 ˆHSOF,i(k) ˆH∗ SOF,i−1(k) Nsc · | Nsc−1 k=0 ˆHSOF,i(k) ˆH∗ SOF,i−1(k)| , (2) ˆHcorr SOF,i(k) ˆHSOF,i(k) · exp(−j ˆφcorr(i)). (3) Works due to initial training block → fixed reference locked. CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 15/1
  • 16. The SOF Algorithm - Pseudocode 1: Compute initial LS estimate from training symbols: ˆH0 2: Estimate SNR: ˆρ 3: Compute filter window: MA(·) 4: Filter initial estimate: ˆHSOF,0 = MA( ˆH0) 5: for symbol i = 1 to F do 6: Get OFDM symbol estimate: ˆXi = Yi/ ˆHSOF,i−1 7: Equalize OFDM Tx symbol: ˆXTX,i −→ ˆXi 8: Estimate current symbol SNR: ˆρ 9: Compute filter window: MA(·) 10: Filter intermediate estimate: ˜Hi = MA( ˆHi) 11: Update SOF channel estimate: ˆHSOF,i = ˆHSOF,i−1 + γ( ˜Hi − ˆHSOF,i−1) 12: Correct phase rotation: ˆφcorr(i), ˆHSOF,i ← ˆHSOF,i · exp(−j ˆφcorr(i)) 13: end for CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 16/1
  • 17. Testing the Implementation Strategy Perform unit tests and system tests. unit tests ↔ loopback Tx-Rx chain targeting channel estimation algorithms. system tests ↔ real-world Tx-Rx communication focusing on packet delivery and general operation. CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 17/1
  • 18. Unit Testing loopback GNURadio interfaces (does not require RF HW); builds on top of IEEE 802.11p transceiver [7]; similar to MATLAB simulations; computes FER at different SNRs on emulated channels; implements 2 vehicular channels [11]. Channel v[km/h] Doppler [Hz] Max. τs[µs] V2V express-way oncoming 300-400 m 210 1000-1200 0.3 V2I urban canyon 100 m 32-48 300 0.5 [11] G. Acosta-Marum and M. A. Ingram, “Six Time-and Frequency-selective empirical channel models for vehicular wireless LANs,” Vehicular Technology Magazine, IEEE, vol. 2, no. 4, pp. 4-11, 2007. CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 18/1
  • 19. Performance Evaluation - FER 100B PSDU V2V(top), V2I(bottom) @ QPSK 1/2 0 5 10 15 20 25 30 35 10 −2 10 −1 10 0 Es/N0 dB FER LS CDP SOF 0 5 10 15 20 25 30 35 10 −2 10 −1 10 0 Es/N0 dB FER LS CDP SOF CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 19/1
  • 20. Performance Evaluation - FER 300B PSDU V2V(top), V2I(bottom) @ QPSK 1/2 0 5 10 15 20 25 30 35 10 −2 10 −1 10 0 Es/N0 dB FER LS CDP SOF 0 5 10 15 20 25 30 35 10 −2 10 −1 10 0 Es/N0 dB FER LS CDP SOF CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 20/1
  • 21. System Testing runs real-time communication (requires RF HW [12],[13]); uses implemented IEEE 802.11p Rx; computes FER based on short-term statistics; displays results in real-time GUI for evaluation and debug; tested only indoor (for the moment). [11] Cohda Wireless, accessed June 2016. [Online]. Available at: http://cohdawireless.com/Portals/0/MK5_OBU_10122015.pdf [12] Ettus Research, accessed June 2016. [Online]. Available at: https://www.ettus.com/content/files/07495_Ettus_N200-210_DS_Flyer_HR_1.pdf. CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 21/1
  • 22. Performance Evaluation - Indoor Testing Real-Time OFDM Equalized Symbol Snapshot CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 22/1
  • 23. Conclusions and Future Work Take Home Points SDRs: future of modular multi-purpose radio design GNURadio: easy-to-use “Linux” of SDRs CSI Knowledge: key of robust communication and ranging SOF: IEEE 802.11 p(/a/g)-compliant, performant and low-complexity channel estimation algorithm Next Steps SOF Optimization: antenna diversity and deparameterization by channel correlations Field Trials: setup outdoor V2X test framework of SDR vs. reference devices (e.g. Cohda Mk5) CCP-IV 16 IEEE802.11p Channel Estimators Prototyping with GNURadio June 19, 2016 23/1