Contribution to the Smecy Project

Size: px
Start display at page:

Download "Contribution to the Smecy Project"

Transcription

1 Alessio Pascucci

2 Contribution to the Smecy Project Study some performance critical parts of Signal Processing Applications Study the parallelization methodology in order to achieve best performances on present and future Multicore Architectures Intel Multicore Processors Many Core processors proposed by SMECY Partners (ST P2012) IBM Cell Processor Define a General Parallelization Methodology for the study of applications parallelization on multicore architectures

3 STAP Signal processing technique applied to Radar signal in order to simultaneously cancel Clutter and Jammer signal interferences Clutter: interfering unwanted echoes due to the surface of the sea or land and weather. Clutter is rejected by means of signal processing techniques operating in time domain. Jammer: intentional and deliberate transmission of signals for the purpose of degrading the reception of radar signals. Jamming is rejected by means of signal processing operating in space (phased array antennas) domain. Space-Time Adaptive Processing (STAP), operating in space-time domain, allows the simultaneous cancellation of clutter and jamming via the computation of a 2D cancellation filter.

4 Optimum weight In order to best detect the presence of a signal S, samples expected by the target, we must design a filter which is "tuned to" S in order to minimize the effects of noise and interference. We must maximize the signal-to-noise ratio that is equivalent to a maximization of the probability of detection. Output of the STAP filter is the scalar y = W o * X. Where W o are the optimum weights which maximize the output signal to noise ratio. S / N E y M E NN H 2 Var y W H S W H MW Where M is the Noise Covariance Matrix 2 Maximizing the signal to noise ratio, we obtain the optimum weights: W o = M -1 S

5 Application of STAP to phased array RADAR RADAR has an array of L antennas. K echoes from a transmitted train of K coherent pulses PRT (Pulse Repetition Time) Antennas elements 1 2 L CUT 1 2 K PRT DATA CUBE X Range cells Doppler Processing (FFT) Covariance matrix M estimation (M) The output signal is provided by the linear combination of the LK echoes x with weights w. Linear combination of weights and signals from the cell under test (CUT)) Weight calculation W = M -1 S Adapted Output X (dimension LKx1) is the collection of the LK echoes in a range cell. S, the space-time steering vector, is the collection of the LK samples expected by the target. Data Cube X is tipically composed by about 1000 matrices 512x512

6 Weights Computation Phase Requires the resolution of a linear system in form Ax = b A = Covariance Matrix previously computed b = Steering Vector x = weights vector

7 Linear System Resolution Matrix Factorization: split the original square matrix in 2 triangular matrices and then solve the 2 linear systems Cholesky Factorization for Hermitian Positive Definite Matrix Different versions of sequential algorithm available Different versions of the algorithms may express different performances on a parallel architecture

8 1. for (j=0; j<n; j++) { The Traditional Algorithm 2. sum = 0; 3. for (k=0; k<j; k++) { 4. sum += (L[j][k]) 2 ; 5. } 6. L[j][j] = sqrt( A[j][j]-sum ); 7. for (i=j+1; i<n; i++) { 8. sum=0; 9. for (k=0; k<j; k++) { 10. sum += L[i][k]*L[j][k]; 11. } 12. L[i][j] = (A[i][j] - sum)/l[j][j]; 13. } 14. }

9 Block Version of the Algorithm for K = 1, NB L(K,K) = Chol( A(K,K) ) for I = K+1, NB L(I,K) = A(I,K) * L(K,K) -T endfor LAPACK_CPOTF2 BLAS_CTRSM for J = K+1, NB * L(J,K) T endfor L(J,J) = L(J,J) - L(J,K) * L(J,K) T for I = K+1, J A(I,J) = A(I,J) - L(I,K) BLAS_CHERK BLAS_CGEMM endfor endfor

10 Differences between the versions Differences in memory access pattern Different performances in terms of sequential completion time but Different performances on Parallel Architectures in terms of scalability

11 Parallelization of the algorithm Main goal: reducing the completion time for the entire input cube Stream Computation Stream parallel paradigms to reduce Service Time (load balanced computation) Data Parallel paradigms used to reduce both Service Time and latency of the computation, in order to decrease the response time of the whole system (load balancing issue) A composite parallel paradigm can assure the right performance level in terms of latency and service time

12 Stream Parallel Paradigm: Task Farm Emitter Worker 1... Worker N Collector Replication of the entire Factorization Function on the worker modules Performance improvements assured until the Emitter module is not a bottleneck

13 Reference Architecture: Cell BE Asymmetric NUMA Multicore Complex Memory Hierarchy Processing Elements own a small local memory (not cache) Dynamic memory management accessing the main memory for large Data Structures

14 Reference Architecture: Cell BE Processor 0 Processor 1 Processor 7 Local memory Local Memory Local Memory Interconnection Network PowerPC Processor PowerPC Memory

15 Farm Paradigm applied to Cell BE

16 Service Time Scalability Performances obtained on Cell BE (IBM QS 20 Cell Blade) Traditional algorithms (512x512 complex matrices) Service Time (milliseconds) Scalability Parallelism Degree Parallelism Degree

17 Service Time Scalability Performances obtained on Cell BE Block Algorithm (512x512 Complex Matrix) Service Time (milliseconds) Scalability Parallelism Degree Parallelism Degree PERFECT SCALABILITY

18 Service Time Scalability Performances obtained on Intel Multicore Processor (Intel XEON E5420) Block Algorithm (512x512 Complex Matrix) Service Time (milliseconds) Scalability Parallelism Degree Parallelism Degree

19 Data Parallel Paradigm Adopted only for Block version of the algorithm Based on partitioning of data structure and functional replication Adopted the Virtual Processors approach for parallel program design Each block of the main matrix is assigned to a Virtual Processor Detect data ownership applying owner computes rule and the Data Dependancies to understand the Stencil Form

20 Virtual Processor parallelization

21 Mapping Virtual Processors on the Real Processors Applied a uniform reduction of parallelism degree Map a set of Virtual Processors on a computation node (e.g. a core of a Multicore Architecture) Different mapping may express different performances due to the load balancing of the computation

22 Mapping Example Linear mapping of the VP Rows on the real processors Poor performances due to load unbalancing

23 Latency Scalability Experimental Results on Cell BE Unbalanced mapping 250 Latency (milliseconds) 16 Scalability Parallelism Degree Parallelism Degree

24 Partially balanced mapping example Coupling the rows in order to balance the computation executed by a core

25 Latency Scalability Experimental Results on Cell BE Latency Scalability Parallelism Degree Parallelism Degree

26 Composite parallel paradigm Applied in order to reduce Service Time and latency of a parallel application Farm paradigm with Parallel Workers (implemented with Data Parallel Paradigm) May assure optimal performances needed by real time applications in Signal Processing

27 Titolo asse Service Time Experimental Results on Cell BE for composite patterns Service Time Data Parallel Parallelism Degree Worker Worker Farm Parallelism Degree 4 Worker 8 Worker Farm Scalability Titolo asse

28 Results, actual and future work Good performances obtained applying formal methodology for parallelism Low parallelism degree available in the actually used multicore architectures Apply this methodology using future General Purpose multicore architectures with higher parallelism degree (e.g. Multicore Processors available in IT Center) Test this kind of solutions on the new Multicore Architectures proposed in the Smecy Project High parallelism degree available on these new architectures but quite simple architecture for the singular core and interconnection network design (2D mesh tipically)

29 Future work All these solutions has been implemented using low level tools Test the new development tools proposed by the Smecy partners Implementation of the runtime support and high level development tools for parallel applications on some of the available architectures is an ongoing activity of the collaboration between Parallel Architecture Research Group and Selex SI

30 Any question??

31 Optimum weight (2/2) M is the space-time covariance matrix. In practice, one generally does not know a priori the clutter and interference situation. For practical applications, the covariance matrix M is unknown and must be estimated from data samples (M ). If the interference field changes by the presence of clutter, antenna errors, interference, and jamming, we must continually update or adapt the weight vector W O to meet the varying conditions.

A COMPREHENSIVE MULTIDISCIPLINARY PROGRAM FOR SPACE-TIME ADAPTIVE PROCESSING (STAP)

A COMPREHENSIVE MULTIDISCIPLINARY PROGRAM FOR SPACE-TIME ADAPTIVE PROCESSING (STAP) AFRL-SN-RS-TN-2005-2 Final Technical Report March 2005 A COMPREHENSIVE MULTIDISCIPLINARY PROGRAM FOR SPACE-TIME ADAPTIVE PROCESSING (STAP) Syracuse University APPROVED FOR PUBLIC RELEASE; DISTRIBUTION

More information

SIGNAL MODEL AND PARAMETER ESTIMATION FOR COLOCATED MIMO RADAR

SIGNAL MODEL AND PARAMETER ESTIMATION FOR COLOCATED MIMO RADAR SIGNAL MODEL AND PARAMETER ESTIMATION FOR COLOCATED MIMO RADAR Moein Ahmadi*, Kamal Mohamed-pour K.N. Toosi University of Technology, Iran.*moein@ee.kntu.ac.ir, kmpour@kntu.ac.ir Keywords: Multiple-input

More information

Target Echo Information Extraction

Target Echo Information Extraction Lecture 13 Target Echo Information Extraction 1 The relationships developed earlier between SNR, P d and P fa apply to a single pulse only. As a search radar scans past a target, it will remain in the

More information

Lecture 3 SIGNAL PROCESSING

Lecture 3 SIGNAL PROCESSING Lecture 3 SIGNAL PROCESSING Pulse Width t Pulse Train Spectrum of Pulse Train Spacing between Spectral Lines =PRF -1/t 1/t -PRF/2 PRF/2 Maximum Doppler shift giving unambiguous results should be with in

More information

Principles of Space- Time Adaptive Processing 3rd Edition. By Richard Klemm. The Institution of Engineering and Technology

Principles of Space- Time Adaptive Processing 3rd Edition. By Richard Klemm. The Institution of Engineering and Technology Principles of Space- Time Adaptive Processing 3rd Edition By Richard Klemm The Institution of Engineering and Technology Contents Biography Preface to the first edition Preface to the second edition Preface

More information

STAP Capability of Sea Based MIMO Radar Using Virtual Array

STAP Capability of Sea Based MIMO Radar Using Virtual Array International Journal of Electronics and Communication Engineering. ISSN 0974-2166 Volume 7, Number 1 (2014), pp. 47-56 International Research Publication House http://www.irphouse.com STAP Capability

More information

S. Aruna 1, Dr. K. Srinivasa Naik 2, Surendra Khadka 3, Gopi Krishna Chaulagain 4

S. Aruna 1, Dr. K. Srinivasa Naik 2, Surendra Khadka 3, Gopi Krishna Chaulagain 4 Study Of Clutter And Noise Suppression Using STAP Techniques On A Radar System S. Aruna 1, Dr. K. Srinivasa Naik 2, Surendra Khadka 3, Gopi Krishna Chaulagain 4 1 Assistant Professor, Department of ECE,

More information

Smart antenna for doa using music and esprit

Smart antenna for doa using music and esprit IOSR Journal of Electronics and Communication Engineering (IOSRJECE) ISSN : 2278-2834 Volume 1, Issue 1 (May-June 2012), PP 12-17 Smart antenna for doa using music and esprit SURAYA MUBEEN 1, DR.A.M.PRASAD

More information

DESIGN AND DEVELOPMENT OF SIGNAL

DESIGN AND DEVELOPMENT OF SIGNAL DESIGN AND DEVELOPMENT OF SIGNAL PROCESSING ALGORITHMS FOR GROUND BASED ACTIVE PHASED ARRAY RADAR. Kapil A. Bohara Student : Dept of electronics and communication, R.V. College of engineering Bangalore-59,

More information

Basic Radar Definitions Introduction p. 1 Basic relations p. 1 The radar equation p. 4 Transmitter power p. 9 Other forms of radar equation p.

Basic Radar Definitions Introduction p. 1 Basic relations p. 1 The radar equation p. 4 Transmitter power p. 9 Other forms of radar equation p. Basic Radar Definitions Basic relations p. 1 The radar equation p. 4 Transmitter power p. 9 Other forms of radar equation p. 11 Decibel representation of the radar equation p. 13 Radar frequencies p. 15

More information

AIR ROUTE SURVEILLANCE 3D RADAR

AIR ROUTE SURVEILLANCE 3D RADAR AIR TRAFFIC MANAGEMENT AIR ROUTE SURVEILLANCE 3D RADAR Supplying ATM systems around the world for more than 30 years indracompany.com ARSR-10D3 AIR ROUTE SURVEILLANCE 3D RADAR ARSR 3D & MSSR Antenna Medium

More information

Smart antenna technology

Smart antenna technology Smart antenna technology In mobile communication systems, capacity and performance are usually limited by two major impairments. They are multipath and co-channel interference [5]. Multipath is a condition

More information

VHF Radar Target Detection in the Presence of Clutter *

VHF Radar Target Detection in the Presence of Clutter * BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 6, No 1 Sofia 2006 VHF Radar Target Detection in the Presence of Clutter * Boriana Vassileva Institute for Parallel Processing,

More information

Locally and Temporally Adaptive Clutter Removal in Weather Radar Measurements

Locally and Temporally Adaptive Clutter Removal in Weather Radar Measurements Locally and Temporally Adaptive Clutter Removal in Weather Radar Measurements Jörn Sierwald 1 and Jukka Huhtamäki 1 1 Eigenor Corporation, Lompolontie 1, 99600 Sodankylä, Finland (Dated: 17 July 2014)

More information

Lecture 6 SIGNAL PROCESSING. Radar Signal Processing Dr. Aamer Iqbal Bhatti. Dr. Aamer Iqbal Bhatti

Lecture 6 SIGNAL PROCESSING. Radar Signal Processing Dr. Aamer Iqbal Bhatti. Dr. Aamer Iqbal Bhatti Lecture 6 SIGNAL PROCESSING Signal Reception Receiver Bandwidth Pulse Shape Power Relation Beam Width Pulse Repetition Frequency Antenna Gain Radar Cross Section of Target. Signal-to-noise ratio Receiver

More information

ADAPTIVE ANTENNAS. TYPES OF BEAMFORMING

ADAPTIVE ANTENNAS. TYPES OF BEAMFORMING ADAPTIVE ANTENNAS TYPES OF BEAMFORMING 1 1- Outlines This chapter will introduce : Essential terminologies for beamforming; BF Demonstrating the function of the complex weights and how the phase and amplitude

More information

HIGH PERFORMANCE RADAR SIGNAL PROCESSING

HIGH PERFORMANCE RADAR SIGNAL PROCESSING HIGH PERFORMANCE RADAR SIGNAL PROCESSING Justin Haze Advisor: V. Chandrasekar Mentor: Cuong M. Nguyen Colorado State University ECE 401 Senior Design 1 Objective Real-time implementation of Radar Data

More information

Simplified Levenberg-Marquardt Algorithm based PAPR Reduction for OFDM System with Neural Network

Simplified Levenberg-Marquardt Algorithm based PAPR Reduction for OFDM System with Neural Network Simplified Levenberg-Marquardt Algorithm based PAPR Reduction for OFDM System with Neural Network Rahul V R M Tech Communication Department of Electronics and Communication BCCaarmel Engineering College,

More information

RLSTAP Algorithm Development Tool for Analysis of Advanced Signal Processing Techniques

RLSTAP Algorithm Development Tool for Analysis of Advanced Signal Processing Techniques RLSTAP Algorithm Development Tool for Analysis of Advanced Signal Processing Techniques Mark L. Pugh and Peter A. Zulch USAF Rome Laboratory/OCSA 26 Electronic Parkway Rome, NY 13441-4515 Abstract Space

More information

Copyright 1998, Nikhil D. Gupta

Copyright 1998, Nikhil D. Gupta Copyright 1998, Nikhil D. Gupta Master s Thesis Reconfigurable Computing for Space-Time Adaptive Processing Nikhil D. Gupta Department of Computer Science Texas Tech University August 1998 Committee Members:

More information

Set No.1. Code No: R

Set No.1. Code No: R Set No.1 IV B.Tech. I Semester Regular Examinations, November -2008 RADAR SYSTEMS ( Common to Electronics & Communication Engineering and Electronics & Telematics) Time: 3 hours Max Marks: 80 Answer any

More information

6 Uplink is from the mobile to the base station.

6 Uplink is from the mobile to the base station. It is well known that by using the directional properties of adaptive arrays, the interference from multiple users operating on the same channel as the desired user in a time division multiple access (TDMA)

More information

Lecture 8 Multi- User MIMO

Lecture 8 Multi- User MIMO Lecture 8 Multi- User MIMO I-Hsiang Wang ihwang@ntu.edu.tw 5/7, 014 Multi- User MIMO System So far we discussed how multiple antennas increase the capacity and reliability in point-to-point channels Question:

More information

Design of Parallel Algorithms. Communication Algorithms

Design of Parallel Algorithms. Communication Algorithms + Design of Parallel Algorithms Communication Algorithms + Topic Overview n One-to-All Broadcast and All-to-One Reduction n All-to-All Broadcast and Reduction n All-Reduce and Prefix-Sum Operations n Scatter

More information

INTRODUCTION TO RADAR SIGNAL PROCESSING

INTRODUCTION TO RADAR SIGNAL PROCESSING INTRODUCTION TO RADAR SIGNAL PROCESSING Christos Ilioudis University of Strathclyde c.ilioudis@strath.ac.uk Overview History of Radar Basic Principles Principles of Measurements Coherent and Doppler Processing

More information

Optical Delay Line Application Note

Optical Delay Line Application Note 1 Optical Delay Line Application Note 1.1 General Optical delay lines system (ODL), incorporates a high performance lasers such as DFBs, optical modulators for high operation frequencies, photodiodes,

More information

Wireless Communication

Wireless Communication Wireless Communication Systems @CS.NCTU Lecture 14: Full-Duplex Communications Instructor: Kate Ching-Ju Lin ( 林靖茹 ) 1 Outline What s full-duplex Self-Interference Cancellation Full-duplex and Half-duplex

More information

A new Sensor for the detection of low-flying small targets and small boats in a cluttered environment

A new Sensor for the detection of low-flying small targets and small boats in a cluttered environment UNCLASSIFIED /UNLIMITED Mr. Joachim Flacke and Mr. Ryszard Bil EADS Defence & Security Defence Electronics Naval Radar Systems (OPES25) Woerthstr 85 89077 Ulm Germany joachim.flacke@eads.com / ryszard.bil@eads.com

More information

EE359 Discussion Session 8 Beamforming, Diversity-multiplexing tradeoff, MIMO receiver design, Multicarrier modulation

EE359 Discussion Session 8 Beamforming, Diversity-multiplexing tradeoff, MIMO receiver design, Multicarrier modulation EE359 Discussion Session 8 Beamforming, Diversity-multiplexing tradeoff, MIMO receiver design, Multicarrier modulation November 29, 2017 EE359 Discussion 8 November 29, 2017 1 / 33 Outline 1 MIMO concepts

More information

Space-Time Adaptive Processing: Fundamentals

Space-Time Adaptive Processing: Fundamentals Wolfram Bürger Research Institute for igh-frequency Physics and Radar Techniques (FR) Research Establishment for Applied Science (FGAN) Neuenahrer Str. 2, D-53343 Wachtberg GERMANY buerger@fgan.de ABSTRACT

More information

Space-Time Adaptive Processing for Distributed Aperture Radars

Space-Time Adaptive Processing for Distributed Aperture Radars Space-Time Adaptive Processing for Distributed Aperture Radars Raviraj S. Adve, Richard A. Schneible, Michael C. Wicks, Robert McMillan Dept. of Elec. and Comp. Eng., University of Toronto, 1 King s College

More information

Waveform-Space-Time Adaptive Processing for Distributed Aperture Radars

Waveform-Space-Time Adaptive Processing for Distributed Aperture Radars Waveform-Space-Time Adaptive Processing for Distributed Aperture Radars Raviraj S. Adve, Dept. of Elec. and Comp. Eng., University of Toronto Richard A. Schneible, Stiefvater Consultants, Marcy, NY Gerard

More information

Boost Your Skills with On-Site Courses Tailored to Your Needs

Boost Your Skills with On-Site Courses Tailored to Your Needs Boost Your Skills with On-Site Courses Tailored to Your Needs www.aticourses.com The Applied Technology Institute specializes in training programs for technical professionals. Our courses keep you current

More information

Scalable Front-End Digital Signal Processing for a Phased Array Radar Demonstrator. International Radar Symposium 2012 Warsaw, 24 May 2012

Scalable Front-End Digital Signal Processing for a Phased Array Radar Demonstrator. International Radar Symposium 2012 Warsaw, 24 May 2012 Scalable Front-End Digital Signal Processing for a Phased Array Radar Demonstrator F. Winterstein, G. Sessler, M. Montagna, M. Mendijur, G. Dauron, PM. Besso International Radar Symposium 2012 Warsaw,

More information

Neural Blind Separation for Electromagnetic Source Localization and Assessment

Neural Blind Separation for Electromagnetic Source Localization and Assessment Neural Blind Separation for Electromagnetic Source Localization and Assessment L. Albini, P. Burrascano, E. Cardelli, A. Faba, S. Fiori Department of Industrial Engineering, University of Perugia Via G.

More information

MITIGATING INTERFERENCE ON AN OUTDOOR RANGE

MITIGATING INTERFERENCE ON AN OUTDOOR RANGE MITIGATING INTERFERENCE ON AN OUTDOOR RANGE Roger Dygert MI Technologies Suwanee, GA 30024 rdygert@mi-technologies.com ABSTRACT Making measurements on an outdoor range can be challenging for many reasons,

More information

Sets of Waveform and Mismatched Filter Pairs for Clutter Suppression in Marine Radar Application

Sets of Waveform and Mismatched Filter Pairs for Clutter Suppression in Marine Radar Application http://www.transnav.eu the International Journal on Marine Navigation and afety of ea Transportation Volume 11 Number 3 eptember 17 DOI: 1.1716/11.11.3.17 ets of aveform and Mismatched Filter Pairs for

More information

Channel Capacity Estimation in MIMO Systems Based on Water-Filling Algorithm

Channel Capacity Estimation in MIMO Systems Based on Water-Filling Algorithm Channel Capacity Estimation in MIMO Systems Based on Water-Filling Algorithm 1 Ch.Srikanth, 2 B.Rajanna 1 PG SCHOLAR, 2 Assistant Professor Vaagdevi college of engineering. (warangal) ABSTRACT power than

More information

DECEPTION JAMMING SUPPRESSION FOR RADAR

DECEPTION JAMMING SUPPRESSION FOR RADAR DECEPTION JAMMING SUPPRESSION FOR RADAR Dr. Ayesha Naaz 1, Tahura Iffath 2 1 Associate Professor, 2 M.E. Student, ECED, Muffakham Jah college of Engineering and Technology, Hyderabad, (India) ABSTRACT

More information

Mainlobe jamming can pose problems

Mainlobe jamming can pose problems Design Feature DIANFEI PAN Doctoral Student NAIPING CHENG Professor YANSHAN BIAN Doctoral Student Department of Optical and Electrical Equipment, Academy of Equipment, Beijing, 111, China Method Eases

More information

How to Split UL/DL Antennas in Full-Duplex Cellular Networks

How to Split UL/DL Antennas in Full-Duplex Cellular Networks School of Electrical Engineering and Computer Science KTH Royal Institute of Technology Ericsson Research Stockholm, Sweden https://people.kth.se/~jmbdsj/index.html jmbdsj@kth.se How to Split UL/DL Antennas

More information

Electromagnetic Interference Reduction Study using a Self-Structuring Antenna

Electromagnetic Interference Reduction Study using a Self-Structuring Antenna Electromagnetic Interference Reduction Study using a Self-Structuring Antenna A. M. Patel (1), E. J. Rothwell* (1), L.C. Kempel (1), and J. E. Ross (2) (1) Department of Electrical and Computer Engineering

More information

Keywords: Adaptive Antennas, Beam forming Algorithm, Signal Nulling, Performance Evaluation.

Keywords: Adaptive Antennas, Beam forming Algorithm, Signal Nulling, Performance Evaluation. A Simple Comparative Evaluation of Adaptive Beam forming Algorithms G.C Nwalozie, V.N Okorogu, S.S Maduadichie, A. Adenola Abstract- Adaptive Antennas can be used to increase the capacity, the link quality

More information

CHAPTER 6 JOINT SUBCHANNEL POWER CONTROL AND ADAPTIVE BEAMFORMING FOR MC-CDMA SYSTEMS

CHAPTER 6 JOINT SUBCHANNEL POWER CONTROL AND ADAPTIVE BEAMFORMING FOR MC-CDMA SYSTEMS CHAPTER 6 JOINT SUBCHANNEL POWER CONTROL AND ADAPTIVE BEAMFORMING FOR MC-CDMA SYSTEMS 6.1 INTRODUCTION The increasing demand for high data rate services necessitates technology advancement and adoption

More information

Hybrid QR Factorization Algorithm for High Performance Computing Architectures. Peter Vouras Naval Research Laboratory Radar Division

Hybrid QR Factorization Algorithm for High Performance Computing Architectures. Peter Vouras Naval Research Laboratory Radar Division Hybrid QR Factorization Algorithm for High Performance Computing Architectures Peter Vouras Naval Research Laboratory Radar Division 8/1/21 Professor G.G.L. Meyer Johns Hopkins University Parallel Computing

More information

Eigenvalues and Eigenvectors in Array Antennas. Optimization of Array Antennas for High Performance. Self-introduction

Eigenvalues and Eigenvectors in Array Antennas. Optimization of Array Antennas for High Performance. Self-introduction Short Course @ISAP2010 in MACAO Eigenvalues and Eigenvectors in Array Antennas Optimization of Array Antennas for High Performance Nobuyoshi Kikuma Nagoya Institute of Technology, Japan 1 Self-introduction

More information

METIS Second Training & Seminar. Smart antenna: Source localization and beamforming

METIS Second Training & Seminar. Smart antenna: Source localization and beamforming METIS Second Training & Seminar Smart antenna: Source localization and beamforming Faculté des sciences de Tunis Unité de traitement et analyse des systèmes haute fréquences Ali Gharsallah Email:ali.gharsallah@fst.rnu.tn

More information

A Multiple SIMD Mesh Architecture for Multi-Channel Radar Processing

A Multiple SIMD Mesh Architecture for Multi-Channel Radar Processing A Multiple SIMD Mesh Architecture for Multi-Channel Radar Processing Mikael Taveniku 2,3, Anders Åhlander 1, Magnus Jonsson 1 and Bertil Svensson 1,2 1. Centre for Computer Architecture, Halmstad University,

More information

Adaptive SAR Results with the LiMIT Testbed

Adaptive SAR Results with the LiMIT Testbed Adaptive SAR Results with the LiMIT Testbed Gerald Benitz Adaptive Sensor Array Processing Workshop 7 June 2005 999999-1 Outline LiMIT collection platform SAR sidelobe recovery Electronic Protection (EP)

More information

A novel Method for Radar Pulse Tracking using Neural Networks

A novel Method for Radar Pulse Tracking using Neural Networks A novel Method for Radar Pulse Tracking using Neural Networks WOOK HYEON SHIN, WON DON LEE Department of Computer Science Chungnam National University Yusung-ku, Taejon, 305-764 KOREA Abstract: - Within

More information

Sensor Signal Processing for Defence Conference. RCPE _ WiFi, password chiron1681

Sensor Signal Processing for Defence Conference. RCPE _ WiFi, password chiron1681 Sensor Signal Processing for Defence Conference RCPE _ WiFi, password chiron1681 Micaela Contu, Marta Bucciarelli, Pierfrancesco Lombardo, Francesco Madia, Rossella Stallone, Marco Massardo DIRECTION OF

More information

FOUR TOTAL TRANSFER CAPABILITY. 4.1 Total transfer capability CHAPTER

FOUR TOTAL TRANSFER CAPABILITY. 4.1 Total transfer capability CHAPTER CHAPTER FOUR TOTAL TRANSFER CAPABILITY R structuring of power system aims at involving the private power producers in the system to supply power. The restructured electric power industry is characterized

More information

DESIGN AND DEVELOPMENT OF A SIGNAL AND DATA PROCESSOR TEST BED FOR A PASSIVE RADAR IN THE FM BAND

DESIGN AND DEVELOPMENT OF A SIGNAL AND DATA PROCESSOR TEST BED FOR A PASSIVE RADAR IN THE FM BAND DESIGN AND DEVELOPMENT OF A SIGNAL AND DATA PROCESSOR TEST BED FOR A PASSIVE RADAR IN THE FM BAND A. Benavoli, L. Chisci*, A. Di Lallo, A. Farina, R. Fulcoli, R. Mancinelli, L. Timmoneri * DSI, Università

More information

K.NARSING RAO(08R31A0425) DEPT OF ELECTRONICS & COMMUNICATION ENGINEERING (NOVH).

K.NARSING RAO(08R31A0425) DEPT OF ELECTRONICS & COMMUNICATION ENGINEERING (NOVH). Smart Antenna K.NARSING RAO(08R31A0425) DEPT OF ELECTRONICS & COMMUNICATION ENGINEERING (NOVH). ABSTRACT:- One of the most rapidly developing areas of communications is Smart Antenna systems. This paper

More information

MIMO Systems and Applications

MIMO Systems and Applications MIMO Systems and Applications Mário Marques da Silva marques.silva@ieee.org 1 Outline Introduction System Characterization for MIMO types Space-Time Block Coding (open loop) Selective Transmit Diversity

More information

Antenna Measurements using Modulated Signals

Antenna Measurements using Modulated Signals Antenna Measurements using Modulated Signals Roger Dygert MI Technologies, 1125 Satellite Boulevard, Suite 100 Suwanee, GA 30024-4629 Abstract Antenna test engineers are faced with testing increasingly

More information

Speech Enhancement Using Beamforming Dr. G. Ramesh Babu 1, D. Lavanya 2, B. Yamuna 2, H. Divya 2, B. Shiva Kumar 2, B.

Speech Enhancement Using Beamforming Dr. G. Ramesh Babu 1, D. Lavanya 2, B. Yamuna 2, H. Divya 2, B. Shiva Kumar 2, B. www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 4 Issue 4 April 2015, Page No. 11143-11147 Speech Enhancement Using Beamforming Dr. G. Ramesh Babu 1, D. Lavanya

More information

DIGITAL BEAM-FORMING ANTENNA OPTIMIZATION FOR REFLECTOR BASED SPACE DEBRIS RADAR SYSTEM

DIGITAL BEAM-FORMING ANTENNA OPTIMIZATION FOR REFLECTOR BASED SPACE DEBRIS RADAR SYSTEM DIGITAL BEAM-FORMING ANTENNA OPTIMIZATION FOR REFLECTOR BASED SPACE DEBRIS RADAR SYSTEM A. Patyuchenko, M. Younis, G. Krieger German Aerospace Center (DLR), Microwaves and Radar Institute, Muenchner Strasse

More information

Incoherent Scatter Experiment Parameters

Incoherent Scatter Experiment Parameters Incoherent Scatter Experiment Parameters At a fundamental level, we must select Waveform type Inter-pulse period (IPP) or pulse repetition frequency (PRF) Our choices will be dictated by the desired measurement

More information

escience: Pulsar searching on GPUs

escience: Pulsar searching on GPUs escience: Pulsar searching on GPUs Alessio Sclocco Ana Lucia Varbanescu Karel van der Veldt John Romein Joeri van Leeuwen Jason Hessels Rob van Nieuwpoort And many others! Netherlands escience center Science

More information

Smart Adaptive Array Antennas For Wireless Communications

Smart Adaptive Array Antennas For Wireless Communications Smart Adaptive Array Antennas For Wireless Communications C. G. Christodoulou Electrical and Computer Engineering Department, University of New Mexico, Albuquerque, NM. 87131 M. Georgiopoulos Electrical

More information

MTD Signal Processing for Surveillance Radar Application

MTD Signal Processing for Surveillance Radar Application MTD Signal Processing for Surveillance Radar Application Vishwanath G R, Naveen Kumar M, Mahesh Dali Department of Telecommunication Engineering, Dayananda Sagar College of Engineering, Bangalore-560078,

More information

HIGH PERFORMANCE COMPUTING USING GPGPU FOR RADAR APPLICATIONS

HIGH PERFORMANCE COMPUTING USING GPGPU FOR RADAR APPLICATIONS HIGH PERFORMANCE COMPUTING USING GPGPU FOR RADAR APPLICATIONS Viswam Gampala 1 (visgam@yahoo.co.in), Akshay BM 1, A Vengadarajan 1, PS Avadhani 2 1. Electronics & Radar Development Establishment, DRDO,

More information

A COMPUTATIONAL PARADIGM FOR SPACE-TIME MULTIUSER DETECTION. Lisa Welburn*, Jim Cavers*, Kevin Sowerby** ** The University of Auckland, New Zealand

A COMPUTATIONAL PARADIGM FOR SPACE-TIME MULTIUSER DETECTION. Lisa Welburn*, Jim Cavers*, Kevin Sowerby** ** The University of Auckland, New Zealand A COMPUTATIONAL PARADIGM FOR SPACE-TIME MULTIUSER DETECTION Lisa Welburn*, Jim Cavers*, Kevin Sowerby** * Simon Fraser University, Canada ** The University of Auckland, New Zealand 1 OUTLINE: Space-time

More information

3 Planning the Jamming Operation

3 Planning the Jamming Operation CHAPTER 3 Planning the Jamming Operation An artillery commander s fire control element performs many geometric calculations prior to executing a fire mission. These calculations are necessary to bring

More information

A Novel Adaptive Beamforming for Radar Systems

A Novel Adaptive Beamforming for Radar Systems International Journal of esearch and Innovation in Applied cience (IJIA) Volume I, Issue IX, December 26 IN 2454-694 A Novel Adaptive Beamforming for adar ystems wathi harma, ujatha. 2 PG tudent, Department

More information

MIMO RFIC Test Architectures

MIMO RFIC Test Architectures MIMO RFIC Test Architectures Christopher D. Ziomek and Matthew T. Hunter ZTEC Instruments, Inc. Abstract This paper discusses the practical constraints of testing Radio Frequency Integrated Circuit (RFIC)

More information

A High Definition Motion JPEG Encoder Based on Epuma Platform

A High Definition Motion JPEG Encoder Based on Epuma Platform Available online at www.sciencedirect.com Procedia Engineering 29 (2012) 2371 2375 2012 International Workshop on Information and Electronics Engineering (IWIEE) A High Definition Motion JPEG Encoder Based

More information

Time Delay Digital Beamforming for Wideband Pulsed Radar Implementation

Time Delay Digital Beamforming for Wideband Pulsed Radar Implementation Time Delay Digital Beamforming for Wideband Pulsed Radar Implementation Colman Cheung, Ronak Shah, Michael Parker Altera Corporation San Jose, CA ccheung@altera.com, rshah@altera.com, mparker@altera.com

More information

Designing Reliable Wi-Fi for HD Delivery throughout the Home

Designing Reliable Wi-Fi for HD Delivery throughout the Home WHITE PAPER Designing Reliable Wi-Fi for HD Delivery throughout the Home Significant Improvements in Wireless Performance and Reliability Gained with Combination of 4x4 MIMO, Dynamic Digital Beamforming

More information

Wideband, Long-CPI GMTI

Wideband, Long-CPI GMTI Wideband, Long-CPI GMTI Ali F. Yegulalp th Annual ASAP Workshop 6 March 004 This work was sponsored by the Defense Advanced Research Projects Agency and the Air Force under Air Force Contract F968-00-C-000.

More information

Design A Redundant Binary Multiplier Using Dual Logic Level Technique

Design A Redundant Binary Multiplier Using Dual Logic Level Technique Design A Redundant Binary Multiplier Using Dual Logic Level Technique Sreenivasa Rao Assistant Professor, Department of ECE, Santhiram Engineering College, Nandyala, A.P. Jayanthi M.Tech Scholar in VLSI,

More information

Multiple Antennas. Mats Bengtsson, Björn Ottersten. Basic Transmission Schemes 1 September 8, Presentation Outline

Multiple Antennas. Mats Bengtsson, Björn Ottersten. Basic Transmission Schemes 1 September 8, Presentation Outline Multiple Antennas Capacity and Basic Transmission Schemes Mats Bengtsson, Björn Ottersten Basic Transmission Schemes 1 September 8, 2005 Presentation Outline Channel capacity Some fine details and misconceptions

More information

Addressing the Challenges of Radar and EW System Design and Test using a Model-Based Platform

Addressing the Challenges of Radar and EW System Design and Test using a Model-Based Platform Addressing the Challenges of Radar and EW System Design and Test using a Model-Based Platform By Dingqing Lu, Agilent Technologies Radar systems have come a long way since their introduction in the Today

More information

JESD204A for wireless base station and radar systems

JESD204A for wireless base station and radar systems for wireless base station and radar systems November 2010 Maury Wood- NXP Semiconductors Deepak Boppana, an Land - Altera Corporation 0.0 ntroduction - New trends for wireless base station and radar systems

More information

Adaptive Systems Homework Assignment 3

Adaptive Systems Homework Assignment 3 Signal Processing and Speech Communication Lab Graz University of Technology Adaptive Systems Homework Assignment 3 The analytical part of your homework (your calculation sheets) as well as the MATLAB

More information

ELEC E7210: Communication Theory. Lecture 11: MIMO Systems and Space-time Communications

ELEC E7210: Communication Theory. Lecture 11: MIMO Systems and Space-time Communications ELEC E7210: Communication Theory Lecture 11: MIMO Systems and Space-time Communications Overview of the last lecture MIMO systems -parallel decomposition; - beamforming; - MIMO channel capacity MIMO Key

More information

How (Information Theoretically) Optimal Are Distributed Decisions?

How (Information Theoretically) Optimal Are Distributed Decisions? How (Information Theoretically) Optimal Are Distributed Decisions? Vaneet Aggarwal Department of Electrical Engineering, Princeton University, Princeton, NJ 08544. vaggarwa@princeton.edu Salman Avestimehr

More information

Application of Maxwell Equations to Human Body Modelling

Application of Maxwell Equations to Human Body Modelling Application of Maxwell Equations to Human Body Modelling Fumie Costen Room E, E0c at Sackville Street Building, fc@cs.man.ac.uk The University of Manchester, U.K. February 5, 0 Fumie Costen Room E, E0c

More information

www.ixpug.org @IXPUG1 What is IXPUG? http://www.ixpug.org/ Now Intel extreme Performance Users Group Global community-driven organization (independently ran) Fosters technical collaboration around tuning

More information

Adaptive beamforming using pipelined transform domain filters

Adaptive beamforming using pipelined transform domain filters Adaptive beamforming using pipelined transform domain filters GEORGE-OTHON GLENTIS Technological Education Institute of Crete, Branch at Chania, Department of Electronics, 3, Romanou Str, Chalepa, 73133

More information

The Case for Optimum Detection Algorithms in MIMO Wireless Systems. Helmut Bölcskei

The Case for Optimum Detection Algorithms in MIMO Wireless Systems. Helmut Bölcskei The Case for Optimum Detection Algorithms in MIMO Wireless Systems Helmut Bölcskei joint work with A. Burg, C. Studer, and M. Borgmann ETH Zurich Data rates in wireless double every 18 months throughput

More information

Active Cancellation Algorithm for Radar Cross Section Reduction

Active Cancellation Algorithm for Radar Cross Section Reduction International Journal of Computational Engineering Research Vol, 3 Issue, 7 Active Cancellation Algorithm for Radar Cross Section Reduction Isam Abdelnabi Osman, Mustafa Osman Ali Abdelrasoul Jabar Alzebaidi

More information

Frequency Diversity Radar

Frequency Diversity Radar Frequency Diversity Radar In order to overcome some of the target size fluctuations many radars use two or more different illumination frequencies. Frequency diversity typically uses two transmitters operating

More information

Spectral spreading by linear block codes for OFDM in Powerline Communications

Spectral spreading by linear block codes for OFDM in Powerline Communications Spectral spreading by linear block codes for OFDM in Powerline Communications Dirk Benyoucef, Marc Kuhn and Armin Wittneben Institute of Digital Communications University of Saarland, Swiss Federal Institute

More information

MUSIC for the User Receiver of the GEO Satellite Communication System

MUSIC for the User Receiver of the GEO Satellite Communication System 2011 International Conference on elecommunication echnology and Applications Proc.of CSI vol.5 (2011) (2011) IACSI Press, Singapore MUSIC for the User Receiver of the GEO Satellite Communication System

More information

EFFICIENT SMART ANTENNA FOR 4G COMMUNICATIONS

EFFICIENT SMART ANTENNA FOR 4G COMMUNICATIONS http:// EFFICIENT SMART ANTENNA FOR 4G COMMUNICATIONS 1 Saloni Aggarwal, 2 Neha Kaushik, 3 Deeksha Sharma 1,2,3 UG, Department of Electronics and Communication Engineering, Raj Kumar Goel Institute of

More information

Modeling and Simulation of Powertrains for Electric and Hybrid Vehicles

Modeling and Simulation of Powertrains for Electric and Hybrid Vehicles Modeling and Simulation of Powertrains for Electric and Hybrid Vehicles Dr. Marco KLINGLER PSA Peugeot Citroën Vélizy-Villacoublay, FRANCE marco.klingler@mpsa.com FR-AM-5 Background The automotive context

More information

Smart Antenna ABSTRACT

Smart Antenna ABSTRACT Smart Antenna ABSTRACT One of the most rapidly developing areas of communications is Smart Antenna systems. This paper deals with the principle and working of smart antennas and the elegance of their applications

More information

Diversity and Freedom: A Fundamental Tradeoff in Multiple Antenna Channels

Diversity and Freedom: A Fundamental Tradeoff in Multiple Antenna Channels Diversity and Freedom: A Fundamental Tradeoff in Multiple Antenna Channels Lizhong Zheng and David Tse Department of EECS, U.C. Berkeley Feb 26, 2002 MSRI Information Theory Workshop Wireless Fading Channels

More information

OFDM Channel Modeling for WiMAX

OFDM Channel Modeling for WiMAX OFDM Channel Modeling for WiMAX April 27, 2007 David Doria Goals: To develop a simplified model of a Rayleigh fading channel Apply this model to an OFDM system Implement the above in network simulation

More information

INTRODUCTION 1.1 SOME REFLECTIONS ON CURRENT THOUGHTS

INTRODUCTION 1.1 SOME REFLECTIONS ON CURRENT THOUGHTS 1 INTRODUCTION 1.1 SOME REFLECTIONS ON CURRENT THOUGHTS The fundamental bottleneck in mobile communication is that many users want to access the base station simultaneously and thereby establish the first

More information

QoS improvement for indoor high speed data traffic deploying collaborative agent based smart uplinking LTE algorithm

QoS improvement for indoor high speed data traffic deploying collaborative agent based smart uplinking LTE algorithm IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 9, Issue 2, Ver. IV (Mar - Apr. 2014), PP 53-58 QoS improvement for indoor high speed data

More information

9 Best Practices for Optimizing Your Signal Generator Part 2 Making Better Measurements

9 Best Practices for Optimizing Your Signal Generator Part 2 Making Better Measurements 9 Best Practices for Optimizing Your Signal Generator Part 2 Making Better Measurements In consumer wireless, military communications, or radar, you face an ongoing bandwidth crunch in a spectrum that

More information

Beamforming Techniques for Smart Antenna using Rectangular Array Structure

Beamforming Techniques for Smart Antenna using Rectangular Array Structure International Journal of Electrical and Computer Engineering (IJECE) Vol. 4, No. 2, April 2014, pp. 257~264 ISSN: 2088-8708 257 Beamforming Techniques for Smart Antenna using Rectangular Array Structure

More information

2: Diversity. 2. Diversity. Some Concepts of Wireless Communication

2: Diversity. 2. Diversity. Some Concepts of Wireless Communication 2. Diversity 1 Main story Communication over a flat fading channel has poor performance due to significant probability that channel is in a deep fade. Reliability is increased by providing more resolvable

More information

Frequency-Modulated Continuous-Wave Radar (FM-CW Radar)

Frequency-Modulated Continuous-Wave Radar (FM-CW Radar) Frequency-Modulated Continuous-Wave Radar (FM-CW Radar) FM-CW radar (Frequency-Modulated Continuous Wave radar = FMCW radar) is a special type of radar sensor which radiates continuous transmission power

More information

Lecture 4 Diversity and MIMO Communications

Lecture 4 Diversity and MIMO Communications MIMO Communication Systems Lecture 4 Diversity and MIMO Communications Prof. Chun-Hung Liu Dept. of Electrical and Computer Engineering National Chiao Tung University Spring 2017 1 Outline Diversity Techniques

More information

Multiple Input Multiple Output (MIMO) Operation Principles

Multiple Input Multiple Output (MIMO) Operation Principles Afriyie Abraham Kwabena Multiple Input Multiple Output (MIMO) Operation Principles Helsinki Metropolia University of Applied Sciences Bachlor of Engineering Information Technology Thesis June 0 Abstract

More information

RIGEL RESM AND RECM SYSTEMS

RIGEL RESM AND RECM SYSTEMS DEFENSE AND SECURITY RIGEL RESM AND RECM SYSTEMS Defense and security in five continents indracompany.com RIGEL RESM RECM SYSTEMS RIGEL RESM AND RECM SYSTEMS RIGEL RESM System The Naval Radar RESM and

More information