Architecture for filtering images using Xilinx System Generator

Size: px
Start display at page:

Download "Architecture for filtering images using Xilinx System Generator"

Transcription

1 Arcitecture for filtering images using Xilinx System Generator Alba M. Sáncez G., Ricardo Alvarez G., Sully Sáncez G.; FCC and FCE BUAP Abstract Tis paper presents an arcitecture for filters pixel by pixel and regions filters for image processing using Xilinx System Generator (XSG). Tis arcitecture offer an alternative troug a grapical user interface tat conbines MATLAB, Simulink and XSG and explore important aspects concerned to ardware implementation. Keywords Digital image processing, Matlab, Xilinx System Generator. T I. INTRODUCTION HE andling of digital images as become in recent decades a subject of widespread interest in different areas suc as medical and tecnological applications, among oters. We may cite lots of examples were image processing elps to analyze, infer and make decisions. Te main objective of image processing is to improve te quality of te images for uman interpretation, or te perception of te macines independently. Tis paper focuses in te processing pixel to pixel of an image and in te modification of pixel neigboroods and of course te transformation can be applied to te wole image or only a partial region. Te need to process te image in real time, leading to te implementation level ardware, wic offers parallelism, and tus significantly reduces te processing time, wic was wy decided to use Xilinx System Generator, a tool wit a grapical interface under te Matlab Simulink, based blocks wic makes it very easy to andle wit respect to oter software for ardware description. In addition to offering all te tools for an easy grapical simulation level. Te filtering of images is a tecnique wic gives an enancement of te image caracteristics. Te purpose of Manuscript received Marc 10, 2007; Revised May 31, 2007 Tis work was supported in part by te Puebla Benemerit Autonomus University (BUAP). Alba M. Sáncez G. is wit te Computer Science Faculty at te Puebla Benemerit Autonomus University, Av. San Claudio y 14 Sur Cd. Universitaria Z.P ( ext agalvez@ cs.buap.mx). Ricardo Alvarez G. is wit te Electronic Science Faculty at te Puebla Benemerit Autonomus University, Av. San Claudio y 18 Sur Cd. Universitaria Z.P ( ext algor@lece. buap.mx). Sully Sáncez G. is wit te Computer Science Faculty at te Puebla Benemerit Autonomus University, Av. San Claudio y 14 Sur Cd. Universitaria Z.P ( ext ssancez@ solarium.cs.buap.mx). Issue 2, Volume 1, filtering tecniques is to process an image in a way tat is more appropriate tan te original specific application. Among te applications of filter image are: te elimination of noise, enancing edges and contours, and so on. Tis article presents an arcitecture filtering images System Generator, wic is an extension of Simulink and consists of a bookstore called "blocks Xilinx", wic are mapped arcitectures, entities, signs, ports and attributes, wic Script file to produce syntesis in FPGAs, HDL simulation and developmentst tools. Te tool retains te ierarcy of Simulink wen it is converted into VHDL. II. XILINX SYSTEM GENERATOR Xilinx System Generator (XSG) is an integrated design environment (IDE) for FPGAs, wic uses Simulink, as a development environment and is presented in te form of blockset. It as an integrated design flow, to move directly to te configuration file (*. bit) necessary for programming te FPGA. One of te most important features of Xilinx System Generator is possessed abstraction aritmetic, tat is working wit representation in fixed point wit a precision arbitrary, including quantization and overflow. You can also perform simulations bot as a fixed point double precision. XSG automatically generates VHDL code and a draft of te ISE model being developed. Make ierarcical VHDL syntesis, expansion and mapping ardware, in addition to generating a user constraint file (UCF), simulation and testbec and test vectors among oter tings. Xilinx System Generator was created primarily to deal wit complex Digital Signal Processing (DSP) applications, but it as oter applications like te teme of tis work. Te blocks in Xilinx System Generator operate wit Boolean values or arbitrary values in fixed point, for a better approac to ardware implementation. In constrast Simulink works wit numbers of double-precision floating point. Te connection between blocks Xilinx System Generator and Simulink blocks are te gateway blocks. In Fig. 1 sows te broad flow design Xilinx System Generator. As already mentioned, you can ten move to te configuration file to program te FPGA, and te syntesis and implementation steps are optional for te user but not for

2 System Generator [5]. INTERNATIONAL JOURNAL of MATHEMATICS AND COMPUTERS IN SIMULATION Fig. 3. Block diagram of image processing. Fig. 1. Design flow in System Generator. III. DESIGN For te design of filters sould be meet ardware requirements, it is terefore necessary for image preprocessing prior to te same arcitecture. Unlike te level software processing, were te image is a two-dimensional arrangement n x m, and processed as suc, at ardware tis matrix must be an array of one dimension, namely a vector. Ten save te image information in a ROM memory. [6]. IV. IMAGE PROCESSING We are presenting te main filter processing tecnique of te picture: te processing pixel by pixel and te pixel neigborood [1]. Bot are working wit te intensity of te image. a) Processing pixel by pixel Tis tecnique is te simplest. It works wit te intensity of eac pixel [2], as sown in Figure 4. Fig. 4. f(x,y) is te intensity of unprocessing píxel, in te output we ave oter intensity, te coordinates are uncanged, only te intensity was modificated. Fig. 2. Store te image values in a ROM memory Te coordinate (i, j) suffers te following transformation ( i, j) ( j 1) m + i Coordinate latter is te position tat it occupies in te ROM. We ave sorted by columns, is te first to say tis in memory te first column and ten te second and so on until end wit te values, you can coose to be kept in rows. Once processed image, it applies a reverse transformation tat reversed te process of a settlement to a one-dimensional twodimensional. To access te information, you must address te ROM tat contains te value or values of te pixels tat are required for processing, depending on te filter to be used and tus obtain te new values of te image. Terefore requires two more blocks, te generator and address block processing operations. As sown in Fig. 3, te processing stage consists of tree blocks: te address generator, wic feeds te block ROM, it is te entire image information, tis in turn is used by te block Operational information processing. b) Processing of pixel neigboroods Basically consist in transform te value of a pixel in te position (i, j) taking into account te values of neigbors pixels. For example, if we consider a pixel neigborood and multiply wit a different weigt, by consider te values of te neigbors, te result of tis amount is te value of te new pixel of te image output in te same position (i, j). All tat remains is to define te values of te weigts, wic is usually defining a mask wit constant values. Te mask is actually a filter, so tat depending on its nature, and will be te end result. For example, if we define te mask next f f ( i 1, j 1) f ( i 1, j) f ( i 1, j + 1) f ( i, j 1) f ( i, j) f ( i, j + 1) ( ) ( ) ( ) i + 1, j 1 f i + 1, j f i + 1, j In (1) we ave te strengts of te region's image dimension equal to te mask, in tis case is 3 3, in subsection (2) is te (2) (1) Issue 2, Volume 1,

3 mask, i.e. te weigts it will multiply eac of te intensities of te pixels. So te intensity of f (i, j) is replaced by: g ( i, j) = 11f ( i 1, j 1) + 21f ( i, j 1) + 31f ( i + 1, j 1) + 12f ( i 1, j) + f ( i j) + f ( i+ 1, j) + f ( i 1, j+ 1) + f ( i, j+ 1) + f ( i+ 1, j 1) INTERNATIONAL JOURNAL of MATHEMATICS AND COMPUTERS IN SIMULATION 22, V. RESULT S Among te image operations we ave te sine, contrast tresold applied to te image in Fig. 5. Fig. 8 Tresold Fig. 5 Original image Te images wit low contrast can be due to various causes, suc as poor ligting, lack of dynamic range in te sensor or even incorrect selection of te opening of te lens during te capture of te image. Fig. 6 sows a typical conversion used to enance te contrast and in Fig. 7 arcitecture. Fig. 9 Tresold arcitecture Fig. 6 Contrast Te negatives digitized images are useful in many applications, suc as medical imaging and representation in potograps of a monocrome screen wit films wit te idea of using te resulting negative slides as normal. Fig. 10 illustrates te use of tis simple transformation and arcitecture in Fig. 11. Fig. 10 Negative Fig. 7 Arcitecture for contrast Te operator tresold transforms an image of binary output from an image of gray scale, were te level of transition is given by te input parameter p1. Fig. 8 sows te implementation of tis transformation and Fig. 9 arcitecture. Fig. 11 Negative arcitecture Fig. 13 sows te negative image of te figure 12 and te fig. 14 arcitecture. Issue 2, Volume 1,

4 Fig. 12 Original Image Fig. 13 Color negative Te filtering operations based its operations in te convolution of te image using te so-called core convolution. Tere are two types of filters: ig-pass and low-pass, wic in te context of te teory of signals supposed to miss te first ig frequency signal and te latter casualties. In te case of te pictures we refer to specific frequencies. Tis ig frequency is associated wit sudden canges in intensity intervals small space, i.e. edges, wile low frequencies refer to slow canges in te intensity. In Fig. 17 sows te effect of a low-pass filter and te result of a ig pass filter in Fig. 18. Fig. 17 Low pass Fig. 18 Hig pass Fig. 14 Color negative arcityecture Figure 15 and figure 16 sows te brigtness and arcitecture respectively applied to te image of te Figure 5. Te softening is precisely to mitigate or eliminate te igfrequency components (edges and noise). In te case of te edge effect is a mitigating tem and in te case of noise, te desired effect is te elimination of it. Te softening can be done by statistical tecniques: Aritmetic mean, weigted average, alf Gaussian. Te simplest model is te aritmetic mean, it considers an average of te pixels in an environment focused on a pixel (i, j). Fig. 20 sows te result wen applying to te image of te fig. 19. Fig. 15 Brigtness Fig. 19 Original image Fig. 20 Aritmetic mean It is possible model for oter processes suc as te average weigted average, it considers canging te weigt tat te central pixel located in (i, j) to an arbitrary value positive, ten wat we sould do is to preserve te status output te convolution matrix, we need to cange te weigt of pixels, ie te sum of te coefficients of te matrix is unity, so be sure not leave te range. Tis transformation is sown in fig. 21. Fig. 16 Brigtness Arcitecture In te operations of pixel neigborood noted for its functionality operations like softened edges and extraction. Te former is aimed at improving te quality of te image, wile te latter allow for te underlying edges. Issue 2, Volume 1,

5 Fig. 21 Weigt mean for p=12 Te average Gaussian filter is based and consider a Gaussian curve of revolution around te center of a pixel matrix convolution. Te fig. 22 sows te effect. Fig. 24 G = G x + Gy Te operator of Prewitt is similar to Sobel, differing in te coefficients of masks. In Fig. 26 sows te results after applying tis filter to te image of te figure 25. Fig. 22 Gaussian mean Te first derivative is zero in all regions of constant intensity and as a constant value trougout te transition of intensity. Te second derivative, in contrast, is zero at all points except at te beginning and end of a transition intensity. Te first derivative is used to detect te presence of an edge, as well as te sign of te second derivative. Tey are different operators for extracting edges based on te first and second derivative. Te first derivative operators are based on te concept of vector gradient and led to te filters: gradient image, Sobel Prewit and Roberts. Te gradient of an image f (x, y) at a point (x, y) is defined as a two-dimensional array, wic consists of te derivative in te x direction and te direction and Daugter, wic is denoted respectively Gx, Gy. Te values and Gx Gy, can be implemented by convolution of te image masks figure known as operators Sobel. Te results are sown in Fig. 23, once it is applied Sobel operator to te image of te fig. 18. Fig. 25 Original image Fig. 26 Image process in Fig. 27 G x, and G = G x + Gy G y Te arcitecture for processing Prewitt is sown in fig. 28, in Fig. 29, te sum of te absolute values. a) b) Fig. 23 Image process in a)gx, b) G y Fig. 28 Prewitt Arcitecture Issue 2, Volume 1,

6 Nort Sout Fig. 29 Add modules Te operator Roberts, unlike te previous two, it marks only te points edge, witout reporting tem guidance. It is a very simple operator wo works very well in binary images. Fig. 30 sows te transformation of te image to apply te filter. East Weast Norteast Nortwest a) b) Figure 30 Image process in a)d 1 and, b)d 2 Souteast Soutwest Fig. 33 Ligting in te eigt directions D = D 1 + D Figure 31 2 Witin te second derivative traders, igligts te Laplacian operator. In fig. 32 sows te result of applying te Laplace operator. VI. CONCLUSIONS Te Xilinx System Generator tool is a new application in image processing, and offers a friendly environment design for te processing, because te filters are designed by blocks. Tis tool support software simulation, but te most important is tat can syntesize in FPGAs ardware, wit te parallelism, robust and speed, tis features are essentials in image processing. REFERENCES Fig. 32 Laplacian In mapping, grapic arts and scientific applications are required to display information on te canges in te image, tis relates obviously directional derivative. Using anoter type of derivative can be acieved different ligting effects. Te fig. 33 was derived using te type Robinson wit te eigt directions given by te wind rose. Issue 2, Volume 1, [1] González R. C., Woods R. E.: Tratamiento digital de imágenes. Copublicación de Addison-Wesley Iberoamericana, S. A. y Ediciones Díaz de Santos, S. A. (1996) [2] Pajares G., de la Cruz J. M., Molina J. M., Cuadrado J. López A.: Imágenes Digitales Procesamiento práctico con Java. Alfaomega, Ra-Ma (2004) [3] Matlab website,ttp:// [4] Pajares G., de la Cruz J. M.: Visión por Computador Imágenes digitales y aplicaciones, Ra-Ma (2001) [5] Xilinx System Generator User s Guide, ttp:// www. Xilinx.com. [6] Tejeda J.C., Arias M.: Arquitectura FPGA para filtrado de imágenes en Tiempo Real, Tesis de Maestría, INAOE,(2001).

7 [7] Notas de procesamiento de imágenes ttp:// [8] R. J. Vidmar. (1992, August). On te use of atmosperic plasmas as electromagnetic reflectors. IEEE Trans. Plasma Sci. [Online]. 21(3). pp Available: ttp:// vidmar Issue 2, Volume 1,

Machine Vision System for Automatic Weeding Strategy in Oil Palm Plantation using Image Filtering Technique

Machine Vision System for Automatic Weeding Strategy in Oil Palm Plantation using Image Filtering Technique Macine Vision System for Automatic Weeding Strategy in Oil Palm Plantation using Image Filtering Tecnique Kamarul Hawari Gazali, Mod. Marzuki Mustafa, and Aini Hussain Abstract Macine vision is an application

More information

An Experimental Downlink Multiuser MIMO System with Distributed and Coherently-Coordinated Transmit Antennas

An Experimental Downlink Multiuser MIMO System with Distributed and Coherently-Coordinated Transmit Antennas An Experimental Downlink Multiuser MIMO System wit Distributed and Coerently-Coordinated Antennas Dragan Samardzija, Howard Huang, Reinaldo Valenzuela and Teodore Sizer Bell Laboratories, Alcatel-Lucent,

More information

5.3 Sum and Difference Identities

5.3 Sum and Difference Identities SECTION 5.3 Sum and Difference Identities 21 5.3 Sum and Difference Identities Wat you ll learn about Cosine of a Difference Cosine of a Sum Sine of a Difference or Sum Tangent of a Difference or Sum Verifying

More information

Image Feature Extraction and Recognition of Abstractionism and Realism Style of Indonesian Paintings

Image Feature Extraction and Recognition of Abstractionism and Realism Style of Indonesian Paintings Image Feature Extraction and Recognition of Abstractionism and Realism Style of Indonesian Paintings Tieta Antaresti R P and Aniati Murni Arymurty Faculty of Computer Science University of Indonesia Depok

More information

Unit 5 Waveguides P a g e 1

Unit 5 Waveguides P a g e 1 Unit 5 Waveguides P a g e Syllabus: Introduction, wave equation in Cartesian coordinates, Rectangular waveguide, TE, TM, TEM waves in rectangular guides, wave impedance, losses in wave guide, introduction

More information

IMAGE ILLUMINATION (4F 2 OR 4F 2 +1?)

IMAGE ILLUMINATION (4F 2 OR 4F 2 +1?) IMAGE ILLUMINATION ( OR +?) BACKGROUND Publications abound wit two differing expressions for calculating image illumination, te amount of radiation tat transfers from an object troug an optical system

More information

Application of two-stage ADALINE for estimation of synchrophasor

Application of two-stage ADALINE for estimation of synchrophasor International Journal of Smart Grid and Clean Energy Application of two-stage ADALINE for estimation of syncropasor Ceng-I Cen a, Yeong-Cin Cen b, Cao-Nan Cen b, Cien-Kai Lan b a a National Central University,

More information

ON TWO-PLANE BALANCING OF SYMMETRIC ROTORS

ON TWO-PLANE BALANCING OF SYMMETRIC ROTORS Proceedings of ME Turbo Expo 0 GT0 June -5, 0, openagen, Denmark GT0-6806 ON TO-PLNE BLNING OF YMMETRI ROTOR Jon J. Yu, P.D. GE Energy 63 Bently Parkway out Minden, Nevada 8943 U Pone: (775) 5-5 E-mail:

More information

A REVIEW OF THE NEW AUSTRALIAN HARMONICS STANDARD AS/NZS

A REVIEW OF THE NEW AUSTRALIAN HARMONICS STANDARD AS/NZS A REVIEW OF THE NEW AUSTRALIAN HARMONICS STANDARD AS/NZS 61000.3.6 Abstract V. J. Gosbell 1, P. Muttik 2 and D.K. Geddey 3 1 University of Wollongong, 2 Alstom, 3 Transgrid v.gosbell@uow.edu.au Harmonics

More information

Image Reconstruction Based On Bayer And Implementation On FPGA Sun Chen 1, a, Duan Xiaofeng 2, b and Wu Qijing 3, c

Image Reconstruction Based On Bayer And Implementation On FPGA Sun Chen 1, a, Duan Xiaofeng 2, b and Wu Qijing 3, c 2nd International Worksop on Materials Engineering and Computer Sciences (IWMECS 2015) Image Reconstruction Based On Bayer And Implementation On FPGA Sun Cen 1, a, Duan Xiaofeng 2, b and Wu Qijing 3, c

More information

Power Quality Analysis Using An Adaptive Decomposition Structure

Power Quality Analysis Using An Adaptive Decomposition Structure Power Quality Analysis Using An Adaptive Decomposition Structure Doğan Gökan Ece 1 and Ömer Nezi Gerek 1 (1) Dept. of Electrical and Elctronics Engineering, Anadolu University, Scool of Engineering and

More information

Polyphase Filter Approach for High Performance, FPGA-Based Quadrature Demodulation

Polyphase Filter Approach for High Performance, FPGA-Based Quadrature Demodulation Polypase Filter Approac for Hig Performance, FPGA-Based Quadrature Demodulation J.M.P. Langlois 1, D. Al-Kalili 1, R.J. Inkol 1 Department of Electrical and Computer Engineering, Royal Military College

More information

Spectrum Sharing with Multi-hop Relaying

Spectrum Sharing with Multi-hop Relaying Spectrum Saring wit Multi-op Relaying Yong XIAO and Guoan Bi Scool of Electrical and Electronic Engineering Nanyang Tecnological University, Singapore Email: xiao001 and egbi@ntu.edu.sg Abstract Spectrum

More information

Indirect Measurement

Indirect Measurement exploration Georgia Performance Standards M6G1.c, M6A2.c, M6A2.g Te eigts of very tall structures can be measured indirectly using similar figures and proportions. Tis metod is called indirect measurement.

More information

Lecture-3 Amplitude Modulation: Single Side Band (SSB) Modulation

Lecture-3 Amplitude Modulation: Single Side Band (SSB) Modulation Lecture-3 Amplitude Modulation: Single Side Band (SSB) Modulation 3.0 Introduction. 3.1 Baseband Signal SSB Modulation. 3.1.1 Frequency Domain Description. 3.1. Time Domain Description. 3. Single Tone

More information

Cooperative Request-answer Schemes for Mobile Receivers in OFDM Systems

Cooperative Request-answer Schemes for Mobile Receivers in OFDM Systems Cooperative Request-answer Scemes for Mobile Receivers in OFDM Systems Y. Samayoa, J. Ostermann Institut für Informationsverarbeitung Gottfried Wilelm Leibniz Universität Hannover 30167 Hannover, Germany

More information

A Guide for the Assessment and Mitigation of Bleed, Gloss Change, and Mold in Inkjet Prints During High-humidity Conditions

A Guide for the Assessment and Mitigation of Bleed, Gloss Change, and Mold in Inkjet Prints During High-humidity Conditions A Guide for te Assessment and Mitigation of Bleed, Gloss Cange, and Mold in Inkjet Prints During Hig-umidity Conditions Jennifer Burger; University of Rocester and Daniel Burge; Image Permanence Institute,

More information

No-Reference Image Quality Assessment Based on Localized Gradient Statistics: Application to JPEG and JPEG2000

No-Reference Image Quality Assessment Based on Localized Gradient Statistics: Application to JPEG and JPEG2000 No-Reference Image Quality Assessment Based on Localized Gradient Statistics: Application to JPEG and JPEG2000 Hantao Liu* a, Judit Redi b, Hani Alers a, Rodolfo Zunino b, Ingrid Heynderickx a,c a Department

More information

CAPACITY OF MULTIPLE ACCESS CHANNELS WITH CORRELATED JAMMING

CAPACITY OF MULTIPLE ACCESS CHANNELS WITH CORRELATED JAMMING CAPACITY OF MULTIPLE ACCESS CHANNELS WITH CORRELATED JAMMING Sabnam Safiee and Sennur Ulukus Department of Electrical and Computer Engineering University of Maryland College Park, MD ABSTRACT We investigate

More information

ON THE IMPACT OF RESIDUAL CFO IN UL MU-MIMO

ON THE IMPACT OF RESIDUAL CFO IN UL MU-MIMO ON THE IMPACT O RESIDUAL CO IN UL MU-MIMO eng Jiang, Ron Porat, and Tu Nguyen WLAN Group of Broadcom Corporation, San Diego, CA, USA {fjiang, rporat, tun}@broadcom.com ABSTRACT Uplink multiuser MIMO (UL

More information

Evaluation Model of Microblog Information Confidence Based on BP Neural Network

Evaluation Model of Microblog Information Confidence Based on BP Neural Network Evaluation Model of Microblog Information Confidence Based on BP Neural Network Yuguang Ye Quanzou Normal University; Quanzou, 36, Cina Abstract: As te carrier of social media, microblog as become an important

More information

Calculation of Antenna Pattern Influence on Radiated Emission Measurement Uncertainty

Calculation of Antenna Pattern Influence on Radiated Emission Measurement Uncertainty Calculation of Antenna Pattern Influence on Radiated Emission Measurement Uncertainty Alexander Kriz Business Unit RF-Engineering Austrian Researc Centers GmbH - ARC A-444 Seibersdorf, Austria alexander.kriz@arcs.ac.at

More information

On the Sum Capacity of Multiaccess Block-Fading Channels with Individual Side Information

On the Sum Capacity of Multiaccess Block-Fading Channels with Individual Side Information On te Sum Capacity of Multiaccess Block-Fading Cannels wit Individual Side Information Yas Despande, Sibi Raj B Pillai, Bikas K Dey Department of Electrical Engineering Indian Institute of Tecnology, Bombay.

More information

Fast Restoration of Warped Document Image based on Text Rectangle Area Segmentation

Fast Restoration of Warped Document Image based on Text Rectangle Area Segmentation 1162 JOURNAL OF SOFTWARE, VOL. 8, NO. 5, MAY 2013 Fast Restoration of Warped Document Image based on Tet Rectangle Area Segmentation Kuo-Hsien Hsia Department of Computer Science and Information Engineering,

More information

LOADING OF TRANSFORMERS BEYOND NAMEPLATE RATING

LOADING OF TRANSFORMERS BEYOND NAMEPLATE RATING LOADING OF TRANSFORMERS BEYOND NAMEPLATE RATING by K. B. M. I. Perera and J. R. Lucas Abstract Te application of a load in excess of nameplate ratings, and/or an ambient temperature iger tan designed of

More information

Francesc Casanellas C. Sant Ramon, Aiguafreda - Spain NATURAL PERSPECTIVE

Francesc Casanellas C. Sant Ramon, Aiguafreda - Spain NATURAL PERSPECTIVE Francesc Casanellas C. Sant Ramon, 5 08591 Aiguafreda - Spain +34 677 00 00 00 francesc@casanellas.com - www.casanellas.com NATURAL PERSPECTIVE Introduction Te first studies on perspective were made in

More information

Directional Derivative, Gradient and Level Set

Directional Derivative, Gradient and Level Set Directional Derivative, Gradient and Level Set Liming Pang 1 Directional Derivative Te partial derivatives of a multi-variable function f(x, y), f f and, tell us te rate of cange of te function along te

More information

Image Filtering. Median Filtering

Image Filtering. Median Filtering Image Filtering Image filtering is used to: Remove noise Sharpen contrast Highlight contours Detect edges Other uses? Image filters can be classified as linear or nonlinear. Linear filters are also know

More information

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

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

More information

On the relation between radiated and conducted RF emission tests

On the relation between radiated and conducted RF emission tests Presented at te 3 t International Zuric Symposium on Electromagnetic Compatibility, February 999. On te relation between radiated and conducted RF emission tests S. B. Worm Pilips Researc Eindoven, te

More information

3D Hole Inspection Using Lens with High Field Curvature

3D Hole Inspection Using Lens with High Field Curvature 10.1515/msr-2015-0008 MEASUREMENT SCIENCE REVIEW, Volume 15, No. 1, 2015 3D Hole Inspection Using Lens wit Hig Field Curvature Petr Zavyalov Tecnological Design Institute of Scientific Instrument Engineering,

More information

Binary Search Tree (Part 2 The AVL-tree)

Binary Search Tree (Part 2 The AVL-tree) Yufei Tao ITEE University of Queensland We ave already learned a static version of te BST. In tis lecture, we will make te structure dynamic, namely, allowing it to support updates (i.e., insertions and

More information

School of Electrical and Computer Engineering, Cornell University. ECE 303: Electromagnetic Fields and Waves. Fall 2007

School of Electrical and Computer Engineering, Cornell University. ECE 303: Electromagnetic Fields and Waves. Fall 2007 Scool of Electrical and Computer Engineering, Cornell University ECE 303: Electromagnetic Fields and Waves Fall 007 Homework 11 Due on Nov. 9, 007 by 5:00 PM Reading Assignments: i) Review te lecture notes.

More information

A new melting layer detection algorithm that combines polarimetric radar-based detection with thermodynamic output from numerical models

A new melting layer detection algorithm that combines polarimetric radar-based detection with thermodynamic output from numerical models ERAD 014 - THE EIGHTH EUROPEAN CONFERENCE ON RADAR IN METEOROLOGY A new melting layer detection algoritm tat combines polarimetric radar-based detection wit termodynamic output from numerical models Terry

More information

DESIGN AND ANALYSIS OF MIMO SYSTEM FOR UWB COMMUNICATION

DESIGN AND ANALYSIS OF MIMO SYSTEM FOR UWB COMMUNICATION DESIGN AND ANAYSIS OF IO SYSTE FOR UWB COUNICATION iir N. oanty, onalisa Bol, axmi Prasad isra 3, Sanjat Kumar isra 4 ITER, Siksa O Anusandan University, Bubaneswar, Odisa, 75030, India Seemanta Engineering

More information

Compatibility and Safety Volume for Electromagnetic Exposure Limits in Shared Sites for 2G and 3G Wireless Communications

Compatibility and Safety Volume for Electromagnetic Exposure Limits in Shared Sites for 2G and 3G Wireless Communications Compatibility and Safety Volume for Electromagnetic Exposure imits in Sared Sites for G and 3G Wireless Communications Rogelio Jiménez Jiménez*, Diego Ortega abajos*, Florentino Jiménez **, Rafael Herradón**

More information

Published in: Proceedings of 8th Annual IEEE Energy Conversion Congress & Exposition (ECCE 2016)

Published in: Proceedings of 8th Annual IEEE Energy Conversion Congress & Exposition (ECCE 2016) Aalborg Universitet A Multi-Pulse Front-End Rectifier System wit Electronic Pase-Sifting for Harmonic Mitigation in Motor Drive Applications Zare, Firuz; Davari, Pooya; Blaabjerg, Frede Publised in: Proceedings

More information

Punctured Binary Turbo-Codes with Optimized Performance

Punctured Binary Turbo-Codes with Optimized Performance Punctured Binary Turbo-odes wit Optimized Performance I. atzigeorgiou, M. R. D. Rodrigues, I. J. Wassell Laboratory for ommunication Engineering omputer Laboratory, University of ambridge {ic1, mrdr, iw}@cam.ac.uk

More information

Center for Academic Excellence. Area and Perimeter

Center for Academic Excellence. Area and Perimeter Center for Academic Excellence Area and Perimeter Tere are many formulas for finding te area and perimeter of common geometric figures. Te figures in question are two-dimensional figures; i.e., in some

More information

Overview of MIMO Radio Channels

Overview of MIMO Radio Channels Helsinki University of Tecnology S.72.333 Postgraduate Course in Radio Communications Overview of MIMO Radio Cannels 18, May 2004 Suiyan Geng gsuiyan@cc.ut.fi Outline I. Introduction II. III. IV. Caracteristics

More information

Power Quality Issues, Problems and Related Standards Avinash Panwar1,ASSISTANT PROFESSOR, MADHAV UNIVERSITY ABU ROAD INDIA

Power Quality Issues, Problems and Related Standards Avinash Panwar1,ASSISTANT PROFESSOR, MADHAV UNIVERSITY ABU ROAD INDIA Power Quality Issues, Problems and Related Standards Avinas Panwar1,ASSISTANT PROFESSOR, MADHAV UNIVERSITY ABU ROAD INDIA 1 apanwar84@gmail.com, Summary: Te growt in power electronics as impacted many

More information

Distributed Topology Control for Stable Path Routing in Multi-hop Wireless Networks

Distributed Topology Control for Stable Path Routing in Multi-hop Wireless Networks 49t IEEE Conference on Decision and Control December 15-17, 2010 Hilton Atlanta Hotel, Atlanta, GA, USA Distributed Topology Control for Stable Pat Routing in Multi-op Wireless Networks Kiran K. Somasundaram,

More information

Genetic Algorithm for Wireless Sensor Network With Localization Based Techniques

Genetic Algorithm for Wireless Sensor Network With Localization Based Techniques International Journal of Scientific and Researc Publications, Volume, Issue 9, September 201 1 Genetic Algoritm for Wireless Sensor Network Wit Localization Based Tecniques * Kapil Uraiya, ** Dilip Kumar

More information

Estimation of Dielectric Constant for Various Standard Materials using Microstrip Ring Resonator

Estimation of Dielectric Constant for Various Standard Materials using Microstrip Ring Resonator Journal of Science and Tecnology, Vol. 9 No. 3 (017) p. 55-59 Estimation of Dielectric Constant for Various Standard Materials using Microstrip Ring Resonator Pek Jin Low 1, Famiruddin Esa 1*, Kok Yeow

More information

Energy Savings with an Energy Star Compliant Harmonic Mitigating Transformer

Energy Savings with an Energy Star Compliant Harmonic Mitigating Transformer Energy Savings wit an Energy Star Compliant Harmonic Mitigating Transformer Tony Hoevenaars, P.Eng, Vice President Mirus International Inc. Te United States Environmental Protection Agency s Energy Star

More information

Analysis of Rectangular Notch Antenna for Dual-Band Operation

Analysis of Rectangular Notch Antenna for Dual-Band Operation Engineering, 00,, 9-96 doi:0.436/eng.00.0 Publised Online February 00 (ttp://www.scirp.org/journal/eng). Analysis of Rectangular Notc Antenna for Dual-Band Operation Abstract Rajes Kumar Viswakarma, Sanjay

More information

Modelling Capture Behaviour in IEEE Radio Modems

Modelling Capture Behaviour in IEEE Radio Modems Modelling Capture Beaviour in IEEE 80211 Radio Modems Cristoper Ware, Joe Cicaro, Tadeusz Wysocki cris@titruoweduau 20t February Abstract In tis paper we investigate te performance of common capture models

More information

This study concerns the use of machine learning based

This study concerns the use of machine learning based Modern AI for games: RoboCode Jon Lau Nielsen (jlni@itu.dk), Benjamin Fedder Jensen (bfje@itu.dk) Abstract Te study concerns te use of neuroevolution, neural networks and reinforcement learning in te creation

More information

Abstract 1. INTRODUCTION

Abstract 1. INTRODUCTION Allocating armonic emission to MV customers in long feeder systems V.J. Gosbell and D. Robinson Integral nergy Power Quality Centre University of Wollongong Abstract Previous work as attempted to find

More information

A STATISTICALLY VALID METHOD FOR USING FIA PLOTS TO GUIDE SPECTRAL CLASS REJECTION IN PRODUCING STRATIFICATION MAPS

A STATISTICALLY VALID METHOD FOR USING FIA PLOTS TO GUIDE SPECTRAL CLASS REJECTION IN PRODUCING STRATIFICATION MAPS A STATISTICALLY VALID METHOD FOR USING FIA PLOTS TO GUIDE SPECTRAL CLASS REJECTION IN PRODUCING STRATIFICATION MAPS Micael L. Hoppus and Andrew J. Lier ABSRACT. A Landsat TM classification metod (iterative

More information

Loading transformers with non sinusoidal currents

Loading transformers with non sinusoidal currents LES00070-ZB rev. Loading transformers wit non sinusoidal currents K Factor Loading transformers wit non sinusoidal currents... Interpretation / example... 6 Copyrigt 007 ABB, All rigts reserved. LES00070-ZB

More information

Channel Estimation Filter Using Sinc-Interpolation for UTRA FDD Downlink

Channel Estimation Filter Using Sinc-Interpolation for UTRA FDD Downlink { Cannel Estimation Filter Using Sinc-Interpolation for UTA FDD Downlink KLAUS KNOCHE, JÜGEN INAS and KAL-DIK KAMMEYE Department of Communications Engineering, FB- University of Bremen P.O. Box 33 4 4,

More information

Training Spiking Neuronal Networks With Applications in Engineering Tasks

Training Spiking Neuronal Networks With Applications in Engineering Tasks Training Spiking Neuronal Networks Wit Applications in Engineering Tasks Pill Rowcliffe and Jianfeng Feng P. Rowcliffe is wit te Department of Informatics at te Scool of Science and Tecnology (SciTec,

More information

DAC at 50: The Second 25 Years

DAC at 50: The Second 25 Years 50 Years of DAC: Wat Lies Aead DAC at 50: Te Second 25 Years Rob A. Rutenbar University of Illinois at Urbana-Campaign Editor s notes: Tis paper is based on an invited talk presented at te 50t DAC. It

More information

h = v h 2 = height of the object is negative for inverted image and positive for erect image. is always positive. Direction of incident light

h = v h 2 = height of the object is negative for inverted image and positive for erect image. is always positive. Direction of incident light 6. C a p t e r at G l a n c e Ligt related penomena can be studied wit mirrors and lenses. A mirror is a reflecting surface wile a lens is a transparent material. Mirrors are mainly of tree types : plane

More information

Contour Measuring System CONTRACER CV-1000/2000

Contour Measuring System CONTRACER CV-1000/2000 Form Measurement Contour Measuring System CONTRACER CV-1000/2000 Catalog No.E4333-218 Digital, cost-effective contour measuring instruments feature excellent portability and versatility. Digital analysis

More information

Multi-agent coordination via a shared wireless spectrum

Multi-agent coordination via a shared wireless spectrum 217 IEEE 56t Annual Conference on Decision and Control (CDC) December 12-15, 217, Melbourne, Australia Multi-agent coordination via a sared wireless spectrum Cameron Nowzari Abstract Tis paper considers

More information

OPTI-502 Optical Design and Instrumentation I John E. Greivenkamp Homework Set 5 Fall, 2018

OPTI-502 Optical Design and Instrumentation I John E. Greivenkamp Homework Set 5 Fall, 2018 Homework Set 5 all, 2018 Assigned: 9/26/18 Lecture 11 Due: 10/3/18 Lecture 13 Midterm Exam: Wednesday October 24 (Lecture 19) 5-1) Te following combination of tin lenses in air is in a telepoto configuration:

More information

Research on harmonic analysis and Simulation of grid connected synchronous motor Jian Huang1,a, Bingyang Luo2,b

Research on harmonic analysis and Simulation of grid connected synchronous motor Jian Huang1,a, Bingyang Luo2,b 5t nternational Conference on Environment, Materials, Cemistry and Power Electronics (EMCPE 06) Researc on armonic analysis and Simulation of grid connected syncronous motor Jian Huang,a, Bingyang Luo,b

More information

Research on Three-level Rectifier Neutral-Point Voltage Balance. Control in Traction Power Supply System of High. Speed Train

Research on Three-level Rectifier Neutral-Point Voltage Balance. Control in Traction Power Supply System of High. Speed Train Researc on Tree-level Rectifier Neutral-Point Voltage Balance Control in Traction Power Supply System of Hig Speed Train LU XIAO-JUAN, WANG XIN-JU, GUO QI, LI SHU-YUAN Scool of Automation and Electric

More information

Comparative Study on Different Dual-Band HIS Structures

Comparative Study on Different Dual-Band HIS Structures ISSN (Print) : 232 3765 International Journal of Advanced Researc in Electrical, (An ISO 3297: 27 Certified Organization) Vol. 4, Issue 1, January 215 Comparative Study on Different Dual-Band HIS Structures

More information

Performance Improvement of 4x4 Extended Alamouti Scheme with Implementation of Eigen Beamforming Technique

Performance Improvement of 4x4 Extended Alamouti Scheme with Implementation of Eigen Beamforming Technique Performance Improvement of 4x4 Extended Alamouti Sceme wit Implementation of Eigen Beamforming Tecnique Maarsi N. Rindani Lecturer, EC Department RK University, Rajkot, ndia-360007 Niscal M. Rindani Sr.

More information

Loss and load reduction by coordinated control of community energy storage and OLTC

Loss and load reduction by coordinated control of community energy storage and OLTC International Journal of Smart Grid and Clean Energy Loss and load reduction by coordinated control of community energy storage and OLTC Jae Won Cang, Ki Hoon Kang, Gyu Sub Lee, Jin O Lee, Seung-Il Moon

More information

Complex-valued restricted Boltzmann machine for direct learning of frequency spectra

Complex-valued restricted Boltzmann machine for direct learning of frequency spectra INTERSPEECH 17 August, 17, Stockolm, Sweden Complex-valued restricted Boltzmann macine for direct learning of frequency spectra Toru Nakasika 1, Sinji Takaki, Junici Yamagisi,3 1 University of Electro-Communications,

More information

Sample Survey and Sampling Methods

Sample Survey and Sampling Methods Sample Survey and Sampling Metods Course unit ECON 53115 MA/MSSc in Economics Dr. WM Semasinge Dept. of Economics Tere are several important concepts relating to te sample survey and sampling metods. Population:

More information

Mathematical Review and Circuit Analysis Software Development for Small-Signal Single-Stage Transistor Amplifier Using Hybrid Parameter

Mathematical Review and Circuit Analysis Software Development for Small-Signal Single-Stage Transistor Amplifier Using Hybrid Parameter American Journal of Quantum Cemistry and Molecular Spectroscopy 208; 2(): -8 ttp://www.sciencepublisinggroup.com/j/ajqcms doi: 0.648/j.ajqcms.208020. Matematical Review and Circuit Analysis Software Development

More information

Aalborg Universitet. Published in: IET Power Electronics. DOI (link to publication from Publisher): /iet-pel Publication date: 2018

Aalborg Universitet. Published in: IET Power Electronics. DOI (link to publication from Publisher): /iet-pel Publication date: 2018 Aalborg Universitet Load-Independent Harmonic Mitigation in SCR-Fed Tree-Pase Multiple Adjustable Speed Drive Systems wit Deliberately Dispatced Firing Angles Yang, Yongeng; Davari, Pooya; Blaabjerg, Frede;

More information

Performance analysis and comparison of m x n zero forcing and MMSE equalizer based receiver for mimo wireless channel

Performance analysis and comparison of m x n zero forcing and MMSE equalizer based receiver for mimo wireless channel Songklanakarin J. Sci. Tecnol. 33 (3), 335-340, May - Jun. 0 ttp://www.sjst.psu.ac.t Original Article Performance analysis and comparison of m x n zero forcing and MMSE equalizer based receiver for mimo

More information

Global Journal of researches in engineering Electrical and electronics engineering

Global Journal of researches in engineering Electrical and electronics engineering Global Journal of researces in engineering Electrical and electronics engineering Volume 11 Issue 6 Version 1. October 211 Type: Double Blind Peer Reviewed International Researc Journal Publiser: Global

More information

Development of Outdoor Service Robots

Development of Outdoor Service Robots SICE-ICASE International Joint Conference 2006 Oct. 18-21, 2006 in Bexco, Busan, Korea Development of Outdoor Service Robots Takesi Nisida 1, Yuji Takemura 1, Yasuiro Fucikawa 1, Suici Kurogi 1, Suji Ito

More information

Image Enhancement using Histogram Equalization and Spatial Filtering

Image Enhancement using Histogram Equalization and Spatial Filtering Image Enhancement using Histogram Equalization and Spatial Filtering Fari Muhammad Abubakar 1 1 Department of Electronics Engineering Tianjin University of Technology and Education (TUTE) Tianjin, P.R.

More information

[8] K. Ogata, Modern Control Engineering. Prentice-Hall Instrumentation and Controls Series,

[8] K. Ogata, Modern Control Engineering. Prentice-Hall Instrumentation and Controls Series, [8] K. Ogata, Modern ontrol Engineering. Prentice-Hall Instrumentation and ontrols Series, Englewood lis, New Jersey: Prentice-Hall, 1970. [9] G. F. Franklin, J. D. Powell, and M. L. Workman, Digital ontrol

More information

CoE4TN4 Image Processing. Chapter 3: Intensity Transformation and Spatial Filtering

CoE4TN4 Image Processing. Chapter 3: Intensity Transformation and Spatial Filtering CoE4TN4 Image Processing Chapter 3: Intensity Transformation and Spatial Filtering Image Enhancement Enhancement techniques: to process an image so that the result is more suitable than the original image

More information

IMAGE PROCESSING: AREA OPERATIONS (FILTERING)

IMAGE PROCESSING: AREA OPERATIONS (FILTERING) IMAGE PROCESSING: AREA OPERATIONS (FILTERING) N. C. State University CSC557 Multimedia Computing and Networking Fall 2001 Lecture # 13 IMAGE PROCESSING: AREA OPERATIONS (FILTERING) N. C. State University

More information

The investment casting process can produce

The investment casting process can produce T E C H N I C L U P T E esigning for Investment Castings Te investment casting process can prouce almost any sape from almost any alloy. s wit all processes, owever, esigning for te process can lower cost

More information

Computing for Engineers in Python

Computing for Engineers in Python Computing for Engineers in Python Lecture 10: Signal (Image) Processing Autumn 2011-12 Some slides incorporated from Benny Chor s course 1 Lecture 9: Highlights Sorting, searching and time complexity Preprocessing

More information

COMPUTATION OF THE NETWORK HARMONIC IMPEDANCE WITH CHIRP-Z TRANSFORM

COMPUTATION OF THE NETWORK HARMONIC IMPEDANCE WITH CHIRP-Z TRANSFORM METROLOGY AND MEASUREMENT SYSTEMS Index 330930, ISSN 0860-8229 www.metrology.pg.gda.pl COMPUTATION OF THE NETWORK HARMONIC IMPEDANCE WITH CHIRP-Z TRANSFORM Krzysztof Duda, Dariusz Borkowski, Andrzej Bień

More information

Design and Implementation of Aperture Coupled Microstrip IFF Antenna

Design and Implementation of Aperture Coupled Microstrip IFF Antenna PIERS ONLINE, VOL. 4, NO. 1, 2008 1 Design and Implementation of Aperture Coupled Microstrip IFF Antenna M. N. Jazi 1, Z. H. Firouze 2, H. Mirmoammad-Sadegi, and G. Askari 1 Institut National de la Recerce

More information

An Efficient Handoff Scheme Using a Minimum Residual Time First Scheme

An Efficient Handoff Scheme Using a Minimum Residual Time First Scheme An Efficient Handoff Sceme Using a Minimum Residual Time First Sceme Bilal Owaidat Rola Kassem and Hamza Issa Abstract Wen a mobile station (MS) wit an ongoing call is about to leave a cell te base station

More information

Modelling and Control of Gene Regulatory Networks for Perturbation Mitigation

Modelling and Control of Gene Regulatory Networks for Perturbation Mitigation Tis article as been accepted for publication in a future issue of tis journal, but as not been fully edited. Content may cange prior to final publication. Citation information: DOI.9/TCBB.., IEEE/ACM IEEE/ACM

More information

ANTENNA GAIN EVALUATION BASED ON WEIGHTING NEAR-FIELD MEASUREMENTS

ANTENNA GAIN EVALUATION BASED ON WEIGHTING NEAR-FIELD MEASUREMENTS Forum for Electromagnetic Researc Metods and Application Tecnologies (FERMAT) ANTENNA GAIN EVALUATION BASED ON WEIGHTING NEAR-FIELD MEASUREMENTS Liliana Ancidin (1,), Razvan D. Tamas (1,), Adrian Androne

More information

Two Humanoid Simulators: Comparison and Synthesis

Two Humanoid Simulators: Comparison and Synthesis Two Humanoid Simulators: Comparison and Syntesis Nima Safii, Luis Paulo Reis, Rosaldo J. F. Rossetti Artificial Intelligence and Computer Science Laboratory Department of Informatics Engineering Faculty

More information

Telescopes and Detectors

Telescopes and Detectors Telescopes and Detectors 1 Reflection and Refraction Telescopes and lenses work because of te way ligt beaves at te interface between two different media. Te speed of ligt slows wen it passes from air

More information

Uplink Detection and BER Analysis for Ambient Backscatter Communication Systems

Uplink Detection and BER Analysis for Ambient Backscatter Communication Systems Detection and BER Analysis for Ambient Backscatter Communication Systems Gongpu Wang, Feifei Gao, Zongzao Dou, and Cinta Tellambura Scool of Computer and Information Tecnology, Beijing Jiaotong University,

More information

OPTICAL TECHNIQUES FOR RELIEF STUDY OF MONA LISA'S WOODEN SUPPORT

OPTICAL TECHNIQUES FOR RELIEF STUDY OF MONA LISA'S WOODEN SUPPORT OPTICAL TECHNIQUES FOR RELIEF STUDY OF MONA LISA'S WOODEN SUPPORT Fabrice Brémand, Pascal Doumalin, Jean-Cristope Dupré, Franck Hesser, and Valéry Valle Laboratoire de Mécanique des Solides, CNRS, UMR

More information

Optimization of high-performance monocentric lenses

Optimization of high-performance monocentric lenses Optimization of ig-performance monocentric lenses Igor Stamenov,* Ilya Agurok, and Josep E. Ford Department of Electrical and Computer Engineering, University of California San Diego, 9500 Gilman Drive,

More information

DYNAMIC BEAM FORMING USING CHIRP SIGNALS

DYNAMIC BEAM FORMING USING CHIRP SIGNALS BeBeC-018-D04 DYNAMIC BEAM FORMING USING CHIRP SIGNALS Stuart Bradley 1, Lily Panton 1 and Matew Legg 1 Pysics Department, University of Auckland 38 Princes Street, 1010, Auckland, New Zealand Scool of

More information

Image Enhancement using Hardware co-simulation for Biomedical Applications

Image Enhancement using Hardware co-simulation for Biomedical Applications Image Enhancement using Hardware co-simulation for Biomedical Applications Kalyani A. Dakre Dept. of Electronics and Telecommunications P.R. Pote (Patil) college of Engineering and, Management, Amravati,

More information

An Ultra-Low-Power temperature compensated voltage reference generator

An Ultra-Low-Power temperature compensated voltage reference generator Università di Pisa An Ultra-Low-Power temperature compensated voltage reference generator #$%&'((')*')+$,-) $')('@%,(.#A'#+,%,%')#A%C+,D.@)E'.,%F#G%((.,'-)*#+,D.@)('-)*#H%%-.@5,'-)E'.,'*# I,'J%3'(K#A'#L'3)#

More information

Achieving High Transparency in Bilateral Teleoperation Using Stiffness Observer for Passivity Control

Achieving High Transparency in Bilateral Teleoperation Using Stiffness Observer for Passivity Control Acieving Hig Transparency in Bilateral Teleoperation Using tiffness Observer for Passivity Control Reza Monfaredi Karan Razi aeed iri Gydari eied Medi Rezaei Depart. of Mecanical Eng. Depart. of Electrical

More information

ANALYSIS OF HARMONIC DISTORTION LEVELS ON A DISTRIBUTION NETWORK

ANALYSIS OF HARMONIC DISTORTION LEVELS ON A DISTRIBUTION NETWORK Presented in AUPEC 7, Pert, Western Australia, 9- December, 7 ANALYSIS OF HARMONIC DISTORTION LEVELS ON A DISTRIBUTION NETWORK Glenn Nicolson - Manukau Institute of Tecnology, Auckland, New Zealand Professor

More information

Design of Electrical Parameter Measurement System for Three Phase AC Motor Based on STM32

Design of Electrical Parameter Measurement System for Three Phase AC Motor Based on STM32 Sensors & Transducers 2014 by IFSA Publising, S. L. ttp://www.sensorsportal.com Design of Electrical Parameter Measurement System for Tree Pase AC Motor Based on STM32 Haiong Xiao, Jiming Luo, Scool of

More information

ENGINEERING RECOMMENDATION G5/5

ENGINEERING RECOMMENDATION G5/5 ENGINEERING RECOMMENDATION G5/5 EMISSION LIMITS FOR HARMONIC VOLTAGE DISTORTION AND THE CONNECTION OF NON-LINEAR AND RESONANT EQUIPMENT TO TRANSMISSION SYSTEMS AND DISTRIBUTION NETWORKS IN THE UNITED KINGDOM

More information

Influence of Ground Clutter Contamination on Polarimetric Radar Parameters

Influence of Ground Clutter Contamination on Polarimetric Radar Parameters FEBRUARY 2009 F R I E D R I C H E T A L. 251 Influence of Ground Clutter Contamination on Polarimetric Radar Parameters KATJA FRIEDRICH* AND URS GERMANN MeteoSvizzera, Locarno, Switzerland PIERRE TABARY

More information

Enhanced HARQ Technique Using Self-Interference Cancellation Coding (SICC)

Enhanced HARQ Technique Using Self-Interference Cancellation Coding (SICC) MITUBIHI ELECTRIC REEARCH LABORATORIE ttp://www.merl.com Enanced HARQ Tecnique Using elf-interference Cancellation Coding (ICC) Wataru Matsumoto, Tosiyuki Kuze, igeru Ucida, Yosida Hideo, Pilip Orlik,

More information

sketch a simplified small-signal equivalent circuit of a differential amplifier

sketch a simplified small-signal equivalent circuit of a differential amplifier INTODUCTION Te large-signal analysis of te differential amplifr sowed tat, altoug te amplifr is essentially non-linear, it can be regarded as linear oer a limited operating range, tat is, for small signals.

More information

Contour Measuring System CONTRACER CV-1000/2000

Contour Measuring System CONTRACER CV-1000/2000 Form Measurement Contour Measuring System CONTRACER CV-1000/2000 Bulletin No. 1978 Digital, cost-effective contour measuring instruments feature excellent portability and versatility. Digital analysis

More information

MIMO-based Jamming Resilient Communication in Wireless Networks

MIMO-based Jamming Resilient Communication in Wireless Networks MIMO-based Jamming Resilient Communication in Wireless Networks Qiben Yan Huaceng Zeng Tingting Jiang Ming Li Wening Lou Y. Tomas Hou Virginia Polytecnic Institute and State University, VA, USA Uta State

More information

Methodology To Analyze Driver Decision Environment During Signal Change Intervals: Application of Fuzzy Set Theory

Methodology To Analyze Driver Decision Environment During Signal Change Intervals: Application of Fuzzy Set Theory TRANSPORTATON RESEARCH RECORD 1368 49 Metodology To Analyze Driver Decision Environment During Signal Cange ntervals: Application of Fuzzy Set Teory SHNYA KKUCH AND JEFFREY R. REGNER During a signal cange

More information

Dimensions. Model Number. Features DAD15-8P/35. Optical data coupler

Dimensions. Model Number. Features DAD15-8P/35. Optical data coupler Dimensions Sensitivity adjuster 56 4 45 76 65 4 5 M6 5.5.7 0. 40. 4. 4. 5.5 4. 5.8 Model Number Optical data coupler Features 8 bit parallel data transfer Very large angle of divergence Can be connected

More information