A Simple DSP Laboratory Project for Teaching Real-Time Signal Sampling Rate Conversions

Size: px
Start display at page:

Download "A Simple DSP Laboratory Project for Teaching Real-Time Signal Sampling Rate Conversions"

Transcription

1 A Simple DSP Laboratory Project for Teaching Real-Time Signal Sampling Rate Converion by Li Tan, Ph.D. Department of ECET Purdue Univerity North Central Wetville, Indiana Jean Jiang, Ph.D. Department of ECET DeVry Univerity Atlanta, Georgia Abtract: In thi paper, we preent a imple laboratory project for teaching real-time ampling rate converion of digital ignal uing low-cot digital ignal proceor. Uually, the topic of the ampling rate converion i dicued in the econd digital ignal proceing (DSP) coure in undergraduate program of engineering technology. The paper deal with a ituation for teaching ampling rate converion when the different ampling rate of analog to digital converion (ADC) and digital to analog converion (DAC) cannot be flexibly et during real-time proceing. To overcome thi barrier, we employ a compromied way in which we firt requet tudent to tore audio egment ampled at different ampling rate in the proceor memory and let tudent implement their deigned DSP algorithm to covert each pre-ampled audio egment to produce an output at the DAC ampling rate. The method could be applied a an alternative when the ampling rate for ADC and DAC device in the DSP ytem cannot be freely changed for ampling rate converion. Index Term: Real-time digital ignal proceing, ampling rate converion, decimation, interpolation, anti-aliaing filter, anti-image filter I. Introduction Recent advancement of digital ignal proceing (DSP) technology ha a dramatic impact on the dicipline of electrical, computer, and biomedical engineering technology program. Technologit are often deirable to be familiar with digital ignal and ytem, and baic

2 DSP technique, and to poe DSP working knowledge toward application in order to keep up with the indutry trend. Many undergraduate program in engineering technology not only offer a coure to cover fundamental of DSP, but alo continue to provide a econd elective DSP coure in which real-time application and correponding advanced topic uch a multi-rate ignal proceing and adaptive filtering are introduced [1]. In many DSP application, there i often a requirement for lowering or riing of a ampling rate. Such application include peech and audio ytem where the ampling rate of original data in torage media doe not match the ampling rate et in the DSP ytem. A an example in [1, 2], a DSP ytem may be required to convert an MP3 audio with a ampling rate of 48 khz to a CD audio having a ampling rate of 44.1 khz, or to digital voice at the 8 khz ampling rate, vice vera. Although we could teach baic principle of ampling rate converion uing MATLAB imulation, engineering technology tudent would prefer to have hand-on DSP coding experience for real time proceing to enhance their undertanding of the rate converion principle. On the other hand, the ampling rate of a DSP proceor may be et to be fixed along with the embedded analog anti-aliaing filter before analog to digital converion (ADC) device and analog recontruction filter after digital to analog converion (DAC) device uch a TX320TMS67C1x DSK [1, 3, 4, 5]. Thi limitation could render teaching real-time ampling rate converion to be a challenging tak due to the demand of one ampling rate required for ADC device and other different ampling rate for DAC device. To tackle thi problem for teaching the ubject, we employ a compromied approach decribed a follow. We firt requet tudent to tore audio egment ampled at different ampling rate in memory of the DSP ytem and then let tudent implement their deigned DSP algorithm to covert each pre-ampled audio egment to a proceed digital output at the DSP ytem ampling rate. Practical implementation of real-time ampling rate converion in different cae uch a ampling rate reduction uing an integer factor, ampling rate increae with an integer factor, a well a ampling rate change by a non-integer converion factor are illutrated. The teaching method can be adopted a an alternative when the ampling rate for ADC and DAC device in the DSP ytem could not be flexibly changed for the ampling rate converion proceing. In thi paper, Section II decribe the principle of ampling rate converion and laboratory conideration for real-time proceing, Section III depict a laboratory project dealing with practical real-time implementation, and finally, Section IV how ummarie and concluion. II. Sampling Rate Converion and Laboratory Conideration A. Sampling rate converion cheme Figure 1 how three typical cheme of ampling rate converion. Reduction of a ampling rate by an integer factor M, referred to down-ampling proce or decimation, i hown in Figure 1a, in which a reduced ampling rate fm = f / M can be obtained, where f i the original ampling rate in Hz. Symbol M indicate down-ampling operation in which for every M ample, the operation will keep the firt ample and dicard the ret of ( M 1)

3 ample. A an example of uing the cheme, if the original ampling rate and reduction integer factor are required to be f = 8 khz and M = 4, repectively, the cheme will produce a new ampling rate a fm = f / M = 2 khz. Since the reduced ampling rate of 2 khz ha a new Nyquit limit of 1 khz, any component with frequencie beyond 1 khz in the original data ample will be aliaed. In order to prevent poible aliaing noie after downampling proce, a digital anti-aliaing filter with the low-pa type and top frequency edge of 1 khz mut be deigned and applied prior to the down-ampling operation. Notice that in Figure 1a, x( n ) and wn ( ) are the filter input and output, repectively, and the filter operate at the original ampling rate f. Index n indicate the time index of the original ample while index m i the time index of the down-ampled output y( m ). x( n) wn ( ) ym ( ) Anti-aliaing digital filter M H(z) f f f a. Sampling rate decreae by an integer factor M M = f M x( n) wm ( ) ym ( ) L Interpolation digital filter H(z) fl = Lf fl = Lf f b. Sampling rate increae by an integer factor L x( n) f L Lf Interpolation filter H1(z) H(z) Anti-aliaing filter H2(z) c. Sampling converion by a non-integer factor L/ M ym ( ) M Lf Lf / M Fig. 1 Block diagram for variou ampling rate converion. Figure 1b depict the econd cae for increaing a ampling rate by an integer factor L, referred a up-ampling proce or interpolation. Symbol L deignate the up-ampling operation in which for each input ample, the operation will append it with ( L 1) zero. If the original ampling rate and increaing integer factor are f = 8 khz and L = 3, an increaed ampling rate will be f = Lf = 24 khz. Since the Nyquit limit of the original L

4 ample, in thi cae, i 4 khz and the up-ampling cheme reult in a new Nyquit limit of 12 khz, the image ignal between 4 khz and 12 khz will be introduced, reulting in a ditortion in the proceed output. Hence, an anti-image filter (alo called interpolation filter) with the low-pa type and top frequency edge at 4 khz hould be deigned and applied after a up-ampling operation remove the image noie. Again, ince the anti-image filter i cacaded after the up-ampling operation, it operate at the increaed rate, that i, fl = Lf, with the filter input and output deignated a wm ( ) and y( m ), repectively. Note that time indice n and m are the time indice at the original ampling rate and up-ampling rate, repectively. The third cae for changing a ampling rate with a non-integer factor L/ M i hown in Figure 1c in which if the original ampling rate f = 8 khz, and integer factor M = 4 and L = 3 are given, the converion cheme lead to a reultant ampling rate a Lf / M = 6 khz. The proce can be obtained via cacading the down-ampling cheme after the up-ampling cheme. A hown in Figure 1c, we notice that the anti-image filter (interpolation filter) H ( z ) and anti-aliaing filter H ( z ) operate at the ame rate 1 2 Lf. Hence, thee two filter can be combined into a ingle filter H( z) = H1( z) H2( z) to reduce the implementation complexity. The combined filter i alo a low-pa type and deigned by uing the mot demanding requirement extracted from both anti-image and anti-aliaing filter. In thi laboratory project, all digital filter deigned are FIR type for implicity. Engineering technology tudent are capable of deigning variou FIR filter uing the MATLAB toolbox becaue they have learnt digital filter deign in the firt required DSP coure. Before tarting thi laboratory project, the principle of ampling rate converion aociated with FIR filter are taught uing the textbook [1] at the engineering technology level. We focu on preenting a laboratory technique for tudent to experience real-time ampling rate converion. B. Laboratory Conideration For ome low-cot DSP ytem uch a the TMS320C6711 DSK, where ADC and DAC ampling rate are et to be 8 khz and analog anti-aliaing and recontruction filter are embedded, changing ampling rate for ADC and DAC i not flexible. In order to let engineering technology tudent concentrate on coding DSP algorithm, Figure 2 decribe a imple laboratory model. A hown in Figure 2, the lab ue the exiting DAC ampling rate f and analog recontruction filter, and require tudent to convert each pre-ampled audio egment ampled at different ampling rate f and tored in DSP memory. After ampling rate converion, the proceed output will be output at the exiting ampling rate f, diplayed, and played in real time. In thi way, we avoid the problem of changing different ampling rate for ADC and DAC device.

5 Memory: Audio egment TMS320C671X DSK x( n) f Sampling rate converion Digital fiterin g y( m) f DAC Analog recontruction filter H() Ocillocope Diplay Fig. 2 Laboratory etup for ample rate converion. In thi laboratory project, MATLAB offer a tool to generate audio data egment at different ampling rate f o that pre-proceed audio data egment could be loaded into proceor memory for future real-time converion. Student alo ue MATLAB to deign the antialiaing a well a anti-image filter ued in rate converion ytem. III. Laboratory Implementation The laboratory project require three phae to complete. Firt, tudent need to prepare audio data ample coniting of inuoid and pre-proceed audio data. Each ize of the audio egment i limited to a ize of 4 K byte o that after loading data ample into the DSP memory, there i till enough memory for program code. Each audio ample i encoded a 16 bit per ample and each audio egment i repetitively applied in real-time converion proceing. Table 1 lit the parameter ued for generating the different inuoidal waveform ued in thi laboratory project. Note that the firt inuoidal egment contain frequency component of 1 khz and 5 khz ampled at 16 khz. It can be demontrated that the 5 khz ignal mut be filtered (anti-aliaing filtering) before the down-ampling operation due to a fact that the DSP ytem at the 8 khz ampling rate can only handle the component with the maximum frequency up to 4 khz (Nyquit limit), otherwie, the aliaing ignal of 3 khz will be introduced intead. Segment 4 and 5 are the voice egment each containing a word of we (we.wav) obtained a follow. Student ue a voice egment (we.wav) with duration of 0.5 econd originally ampled at 48 khz with each audio ample encoded by 16 bit. Thi voice egment will be further down-ampled to have ampling rate of 2 khz and 3.2 khz for experiment, repectively. Student will perform filter deign and ampling rate converion uing MATLAB. The fundamental for ampling rate converion are covered in cla a hown in the textbook [1].

6 Table 1: Data et and converion requirement No. Seg. Frequency (Hz) Original ampling rate Size (ample) Converion type Converted ampling rate 1 1 k and 5 k Hz 1600 M= Hz Hz 1600 Hz 1600 L= Hz 3 1 k and 5 k Hz 1200 L=2, M= Hz 4 we 2000 Hz 1000 L= Hz 5 we 3200 Hz 1600 L=5, M= Hz The econd phae begin with deigning anti-aliaing and anti-image digital filter for each ampling rate converion to be performed in real time. Student are required to deign digital FIR (finite impule repone) filter (anti-aliaing, anti-image, and the combined filter) to meet pa-band ripple le than 0.1 db, top-band attenuation le than 45 db, tranition bandwidth of 800 Hz for egment 1 and egment 3, and tranition bandwidth of 400 Hz for the ret of egment. Table 2 lit each FIR filter pecification including deign with Hamming window, cutoff frequency, and number of tap (coefficient). Table 2: FIR Filter pecification (All filter are low-pa FIR filter and deigned uing Hamming window; the converted ampling rate i 8000 Hz) No. Seg. Original ampling rate Tranition band Filter Operating frequency Filter type, Cut-off frequency (fc) Number of tap (N) 1 16 khz khz 16 khz Anti-aliaing filter, fc = 3.6 khz, N= khz Hz 8 khz Anti-image filter, fc= 600 Hz, N= khz khz 24 khz Combined filter, fc=3.6 Hz, N= khz khz 8 khz Anti-image filter, fc=800 Hz, N= khz khz 16 khz Combined filter, fc=1.4 khz, N=133 According to the pecification lited in Table 2, tudent will complete each filter deign uing MATLAB function. A an example for converting the ampling rate for egment 1, a imple MATLAB function firwd() for FIR filter deign given in textbook [1] and MATLAB freqz() in the MATLAB ignal proceing toolbox can be applied a following:» b=firwd(67,1,2*pi*3600/16000,0,4); % obtain filter coefficient» freqz(b,1,16000,16000); %plot frequency repone The obtained frequency repone of the above deigned anti-aliaing filter are diplayed in Figure 3. A hown in Figure 4, performance of the pa-band ranging from 0 to 3.2 khz i atified while the attenuation of top-band ranging from 4 to 8 khz i 50 db which atifie the attenuation requirement of 45 db. The phae repone i linear in pa-band, which i

7 preferred for audio application. Other filter could be deigned accordingly. Furthermore, the deigned filter coefficient are recorded and will be ported to the DSP proceor for future real-time implementation in phae Magnitude (db) Frequency (Hz) 0 Phae (degree) Frequency (Hz) Fig. 3 Frequency repone of the anti-image filter for converting egment 1. Phae 3 i a tage of real-time implementation and teting. Student will port each of the acquired data egment to an array with 16 bit ize per ample (hort type), port the deigned FIR coefficient (floating-point format), and initialize input buffer (floating-point format) in the header file. A an example, a partial lit of the header file for proceing egment 1 i hown in Figure 4. Note that the objective in thi paper i to how the laboratory pedagogy for teaching ampling rate converion. Hence, the program lited here i made a more generic a poible and the algorithm i coded in the way that engineering technology tudent would be able to undertand eaily and perform coding. Hence, the advance coding of the DSP algorithm uing the pointer and circular buffer i not conidered in thi paper. Although the DSP program here i written for TMS320C671X DSK platform, the idea can be ued for other DSP platform.

8 #define NUM_DATA 1600 // 1600 ample /* inuoid with 1000 Hz and 5000 Hz ampled at Hz */ hort xin[num_data]= 0,5226,0,2165,8000,2165,0,5226,0,-5226,0,-2165,-8000,-2165,0,-5226, 0,5226,0,2165,8000,2165,0,5226,0,-5226,0,-2165,-8000,-2165,0,- 5226,... (not continuouly lited) /* FIR filter coefficient */ float b[67]= ,0.0008, , , ,0.0014,0.0008, , ,... (not continuouly lited) /* input buffer initialization*/ float x[67]=0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,... (not continuouly lited) Fig. 4 Partial lit of data, filter coefficient, and initialized input buffer in the header file. Next, tudent will modify the interrupt routine (AtoD() hown in Figure 5 for coding their developed DSP algorithm. The ample program for proceing egment 1 in CCS [6] i depicted in Figure 5, where for each input data, anti-aliaing filtering i performed; and program end the lat proceed output tored in variable ample (volatile type) to DAC for every M proceed output. Note that the program will retart the input data array once data in the array i ued up. To keep track of data element ued in the array, variable cnt, which i a counter, i incremented each time when loading a new element in the data array and reet to zero after the lat element in the data array i proceed. interrupt void AtoD() int i,j; float um, tmp; for (j=0;j<m;j++) for(i=66; i>0; i--) // update input buffer x[i]=x[i-1]; x[0]=(float) xin[cnt]; // load new ample cnt++; um=0.0; for(i=0;i<67;i++) // FIR filtering um=um+x[i]*b[i]; if (j== 0) tmp=um; // update DAC with proceed ample (decimation) if(cnt==num_data) cnt=0; // repeat inputting data egment ample= (int) tmp; // end down-ampled data to DAC Fig. 5 Down-ampling converion by an integer factor of M.

9 The ample program for implementing up-ampling converion for egment 2 i hown in Figure 6. A illutrated in the code, the program et firt ( L 1) input to be zero and load the L th one from the data array. Next, FIR filtering i operated and the program end each proceed output ample to DAC. Note that variable Lcount i incremented and reet to zero to count for ( L 1) inerted zero during the interpolation proce. Finally, the output ample i caled up by a factor of L before it i ent to DAC. interrupt void AtoD() int i; float um; Lcount++; for(i=66; i>0; i--) // update input buffer with zero x[i]=x[i-1]; x[0]=0; if (Lcount==L) x[0]=(float) xin[cnt]; // load new ample for every L ample cnt++; Lcount =0; if (cnt==num_data) //check the data in the buffer cnt=0; um=0.0; for(i=0;i<67;i++) // FIR filtering um=um+x[i]*b[i]; um = ((float) L)*um; // caled up by a factor L ample= (int) um; // end the up ampled data to DAC Fig. 6 Up-ampling converion by an integer factor of L. Figure 7 illutrate an implementation for the cae of proceing egment 3, which require up-ampling and down-ampling procee. Note that the combined anti-aliaing and antiimage filter operate at 24 khz rate. For each ample in the interpolation proce, whether it i a data ample from the array or from an inerted zero, the filter continue proce M time and keep one of the M proceed ample to achieve the ampling rate / f L M. A hown in the code, the lat ample for every proceed M ample i ent to DAC. Variable Lcount count ( L 1) inerted zero in the up-ampling proce.

10 interrupt void AtoD() int i,j; float um; /* implement interpolation*/ /* proce M time (at Lxf khz) and keep one to get the M/L khz ample*/ for(j=0;j<m;j++) Lcount++; // count for input the new ample for(i=98; i>0; i--) // update input buffer with zero x[i]=x[i-1]; x[0]=0; if (Lcount==1) x[0]=(float) xin[cnt]; // load new ample for every L ample cnt++; if (Lcount == L) Lcount =0; // enure load new ample for next ample proceing if (cnt==num_data) //check the data in the buffer cnt=0; um=0.0; for(i=0;i<99;i++) // FIR filtering um=um+x[i]*b[i]; um = ((float) L)*um; // caled up by a factor L /* down ampled by a factor of M */ ample= (int) um; // end the up-ampled data to DAC Fig. 7 Sampling rate converion by a non-integer factor of L/ M. Tet of converting egment 1, 2, and 3 can be conducted either by connecting the configured DAC line-out to an ocillocope or connecting the configured DAC voice output to a peaker. Student hould alo ue an ocillocope to meaure the frequency to enure the accurate ampling rate converion. For egment 4 and 5, tudent could liten to each converted voice egment from a peaker and compare their litening to the original voice egment to enure the ampling rate converion. Thi laboratory project ha been ued in the advance DSP coure in the electrical and computer engineering technology program at Purdue Univerity North Central and DeVry Univerity, Atlanta, Georgia. Student find that the approach i very attractive and timulating in real-time implementation of ampling rate converion. The real-time experiment alo encourage tudent to purue advanced implementation uch a

11 implementing polyphae tructure, ubband audio coding, ECG (electrocardiograph) ignal decimation and proceing, and other related application. IV. Concluion We propoed a imple and efficient laboratory project for teaching real-time ignal ampling rate converion. The laboratory method employ a compromied approach in which the DAC output ampling rate i alway fixed while the pre-tored audio data egment with the different ampling rate tored in the proceor memory are converted, repectively. Each converted ignal can be verified via meaurement from it ocillocope diplay meanwhile played uing a peaker in real time. Thi method could be adopted a an alternative when the ampling rate cannot be flexibly changed in the low-cot DSP proceor, or the DSP proceor that ha a limitation to et and run different ampling rate for it ADC and DAC device. Reference [1] Tan, L., Digital Signal Proceing: Fundamental and Application, Elevier/Academic Pre, [2] Li, Z. N., and Drew, M. S., Fundamental of Multimedia, Prentice Hall, Upper Saddle River, NJ 07458, [3] Kehtaranavaz, N., Simek, B.,C6x-Baed Digital Signal Proceing, Prentice Hall, Upper Saddle River, New Jerey 07458, [4] Texa Intrument, TMS320C6x CPU and Intruction Set Reference Guide, Literature ID# SPRU 189C, Texa Intrument, Dalla, Texa, [5] Spectrum Digital, Inc., TMS320C6713 Technical Reference, [6] Texa Intrument, Code Compoer Studio: Getting Started Guide, Texa Intrument, Dalla, Texa,

AC : TEACHING DIGITAL FILTER IMPLEMENTATIONS US- ING THE 68HC12 MICROCONTROLLER

AC : TEACHING DIGITAL FILTER IMPLEMENTATIONS US- ING THE 68HC12 MICROCONTROLLER AC 2011-549: TEACHING DIGITAL FILTER IMPLEMENTATIONS US- ING THE 68HC12 MICROCONTROLLER Li Tan, Purdue Univerity North Central DR. LI TAN i currently with the College of Engineering and Technology at Purdue

More information

AN EVALUATION OF DIGILTAL ANTI-ALIASING FILTER FOR SPACE TELEMETRY SYSTEMS

AN EVALUATION OF DIGILTAL ANTI-ALIASING FILTER FOR SPACE TELEMETRY SYSTEMS AN EVALUATION OF DIGILTAL ANTI-ALIASING FILTER FOR SPACE TELEMETRY SYSTEMS Alion de Oliveira Morae (1), Joé Antonio Azevedo Duarte (1), Sergio Fugivara (1) (1) Comando-Geral de Tecnologia Aeroepacial,

More information

Produced in cooperation with. Revision: May 26, Overview

Produced in cooperation with. Revision: May 26, Overview Lab Aignment 6: Tranfer Function Analyi Reviion: May 6, 007 Produced in cooperation with www.digilentinc.com Overview In thi lab, we will employ tranfer function to determine the frequency repone and tranient

More information

DESIGN OF SECOND ORDER SIGMA-DELTA MODULATOR FOR AUDIO APPLICATIONS

DESIGN OF SECOND ORDER SIGMA-DELTA MODULATOR FOR AUDIO APPLICATIONS DESIGN OF SECOND ORDER SIGMA-DELTA MODULATOR FOR AUDIO APPLICATIONS 1 DHANABAL R, 2 BHARATHI V, 3 NAAMATHEERTHAM R SAMHITHA, 4 G.SRI CHANDRAKIRAN, 5 SAI PRAMOD KOLLI 1 Aitant Profeor (Senior Grade), VLSI

More information

Chapter Introduction

Chapter Introduction Chapter-6 Performance Analyi of Cuk Converter uing Optimal Controller 6.1 Introduction In thi chapter two control trategie Proportional Integral controller and Linear Quadratic Regulator for a non-iolated

More information

DIGITAL COMMUNICATION

DIGITAL COMMUNICATION DEPARTMENT OF ELECTRICAL &ELECTRONICS ENGINEERING DIGITAL COMMUNICATION Spring 2010 Yrd. Doç. Dr. Burak Kelleci OUTLINE Line Code Differential Encoding Regeneration, Decoding and Filtering Delta Modulation

More information

Communication Systems, 5e

Communication Systems, 5e Communication Sytem, 5e Chapter 6: Sampling and pule modulation A. Bruce Carlon Paul B. Crilly 00 The McGraw-Hill Companie Chapter 6: Sampling and pule modulation Sampling theory and practice Pule-amplitude

More information

Active vibration isolation for a 6 degree of freedom scale model of a high precision machine

Active vibration isolation for a 6 degree of freedom scale model of a high precision machine Active vibration iolation for a 6 degree of freedom cale model of a high preciion machine W.B.A. Boomma Supervior Report nr : Prof. Dr. Ir. M. Steinbuch : DCT 8. Eindhoven Univerity of Technology Department

More information

SCK LAB MANUAL SAMPLE

SCK LAB MANUAL SAMPLE SCK LAB MANUAL SAMPLE VERSION 1.2 THIS SAMPLE INCLUDES: TABLE OF CONTENTS TWO SELECTED LABS FULL VERSION IS PROVIDED FREE WITH KITS Phone: +92 51 8356095, Fax: +92 51 8311056 Email: info@renzym.com, URL:www.renzym.com

More information

REAL-TIME IMPLEMENTATION OF A NEURO-AVR FOR SYNCHRONOUS GENERATOR. M. M. Salem** A. M. Zaki** O. P. Malik*

REAL-TIME IMPLEMENTATION OF A NEURO-AVR FOR SYNCHRONOUS GENERATOR. M. M. Salem** A. M. Zaki** O. P. Malik* Copyright 2002 IFAC 5th Triennial World Congre, Barcelona, Spain REAL-TIME IMPLEMENTATION OF A NEURO- FOR SYNCHRONOUS GENERATOR M. M. Salem** A. M. Zaki** O. P. Malik* *The Univerity of Calgary, Canada

More information

Formatting and Baseband. Formatting & Baseband. Page 1. Formatting and Baseband Modulation. CSE4214 Digital Communications

Formatting and Baseband. Formatting & Baseband. Page 1. Formatting and Baseband Modulation. CSE4214 Digital Communications CSE4214 Digital Communication CSE4214 Digital Communication Chapter 2 Formatting Formatting and Baeband Modulation Formatting & Baeband Formatting and Baeband 3 4 Page 1 1 What i Formatting? Information

More information

SINGLE-PHASE ACTIVE FILTER FOR HIGH ORDER HARMONICS COMPENSATION

SINGLE-PHASE ACTIVE FILTER FOR HIGH ORDER HARMONICS COMPENSATION .jee.ro SINGLE-PHASE ACTIVE FILTER FOR HIGH ORDER HARMONICS COMPENSATION Kyo-Beum Lee Diviion of Electrical and Computer Engineering, Ajou Univerity San5, Woncheon-dong, Yeontong-gu, Suon 44-749, Korea

More information

ISSN: ISO 9001:2008 Certified International Journal of Engineering and Innovative Technology (IJEIT)

ISSN: ISO 9001:2008 Certified International Journal of Engineering and Innovative Technology (IJEIT) ISSN: 777 ISO 9: Certified Volume, Iue, April Deign of Coine Modulated Filter Bank uing Computationally Efficient Multiplierle FIR Filter Jyotna Ogale, Alok Jain Abtract Thi reearch work preent a computationally

More information

HIGH VOLTAGE DC-DC CONVERTER USING A SERIES STACKED TOPOLOGY

HIGH VOLTAGE DC-DC CONVERTER USING A SERIES STACKED TOPOLOGY HIGH VOLTAGE DC-DC CONVERTER USING A SERIES STACKED TOPOLOGY Author: P.D. van Rhyn, Co Author: Prof. H. du T. Mouton Power Electronic Group (PEG) Univerity of the Stellenboch Tel / Fax: 21 88-322 e-mail:

More information

Gemini. The errors from the servo system are considered as the superposition of three things:

Gemini. The errors from the servo system are considered as the superposition of three things: Gemini Mount Control Sytem Report Prediction Of Servo Error Uing Simulink Model Gemini 9 July 1996 MCSJDW (Iue 3) - Decribe the proce of etimating the performance of the main axi ervo uing the non-linear

More information

An FM signal in the region of 4.2 to 4.6

An FM signal in the region of 4.2 to 4.6 A LOW COST, HIGH ACCURACY RADAR ALTIMETER Thi article decribe the development of a frequency modulated (FM) radar altimeter for meauring the height of flying object. The entire tructure comprie two part:

More information

Frequency Calibration of A/D Converter in Software GPS Receivers

Frequency Calibration of A/D Converter in Software GPS Receivers Frequency Calibration of A/D Converter in Software GPS Receiver L. L. Liou, D. M. Lin, J. B. Tui J. Schamu Senor Directorate Air Force Reearch Laboratory Abtract--- Thi paper preent a oftware-baed method

More information

Typical wireless DSP system. Lecture 2 Data Conversion. Typical hard disk DSP system. Typical PCM voiceband DSP system.

Typical wireless DSP system. Lecture 2 Data Conversion. Typical hard disk DSP system. Typical PCM voiceband DSP system. Lecture Data Converion Typical wirele DSP ytem Objective: Review ignal converion in context of DSP ytem Important iue relating to ignal converion including: Sampling and aliaing Signal to quantization

More information

Basic Study of Radial Distributions of Electromagnetic Vibration and Noise in Three-Phase Squirrel-Cage Induction Motor under Load Conditions

Basic Study of Radial Distributions of Electromagnetic Vibration and Noise in Three-Phase Squirrel-Cage Induction Motor under Load Conditions http://dx.doi.org/0.42/jicem.203.2.2.54 54 Journal of International Conference on Electrical Machine and Sytem Vol. 2, No. 2, pp. 54 ~58, 203 Baic Study of Radial Ditribution of Electromagnetic Vibration

More information

A Feasibility Study on Frequency Domain ADC for Impulse-UWB Receivers

A Feasibility Study on Frequency Domain ADC for Impulse-UWB Receivers A Feaibility Study on Frequency Domain ADC for Impule-UWB Receiver Rajeh hirugnanam and Dong Sam Ha VV (Virginia ech VLSI for elecommunication Lab Department of Electrical and Computer Engineering Virginia

More information

MODAL ANALYSIS OF A BEAM WITH CLOSELY SPACED MODE SHAPES

MODAL ANALYSIS OF A BEAM WITH CLOSELY SPACED MODE SHAPES ME 164 Senior Captone Deign The Cooper Union Spring 2011 MODAL ANALYSIS O A BEAM WITH CLOSELY SPACED MODE SHAPES Eglind Myftiu The Cooper Union New York City, NY, USA ABSTRACT Thi paper invetigate the

More information

Mechatronics Laboratory Assignment 5 Motor Control and Straight-Line Robot Driving

Mechatronics Laboratory Assignment 5 Motor Control and Straight-Line Robot Driving Mechatronic Laboratory Aignment 5 Motor Control and Straight-Line Robot Driving Recommended Due Date: By your lab time the week of March 5 th Poible Point: If checked off before your lab time the week

More information

Active Harmonic Elimination in Multilevel Converters Using FPGA Control

Active Harmonic Elimination in Multilevel Converters Using FPGA Control Active Harmonic Elimination in Multilevel Converter Uing FPGA Control Zhong Du, Leon M. Tolbert, John N. Chiaon Electrical and Computer Engineering The Univerity of Tenneee Knoxville, TN 7996- E-mail:

More information

MAX3610 Synthesizer-Based Crystal Oscillator Enables Low-Cost, High-Performance Clock Sources

MAX3610 Synthesizer-Based Crystal Oscillator Enables Low-Cost, High-Performance Clock Sources Deign Note: HFDN-31.0 Rev.1; 04/08 MAX3610 Syntheizer-Baed Crytal Ocillator Enable Low-Cot, High-Performance Clock Source MAX3610 Syntheizer-Baed Crytal Ocillator Enable Low-Cot, High-Performance Clock

More information

California State University, Bakersfield Computer & Electrical Engineering & Computer Science ECE 3220: Digital Design with VHDL Laboratory 6

California State University, Bakersfield Computer & Electrical Engineering & Computer Science ECE 3220: Digital Design with VHDL Laboratory 6 California State Univerity, Bakerfield Computer & Electrical Engineering & Computer Science ECE 322: Digital Deign with VHDL Laboratory 6 The purpoe of thi exercie i to examine arithmetic circuit that

More information

Lab 7 Rev. 2 Open Lab Due COB Friday April 27, 2018

Lab 7 Rev. 2 Open Lab Due COB Friday April 27, 2018 EE314 Sytem Spring Semeter 2018 College of Engineering Prof. C.R. Tolle South Dakota School of Mine & Technology Lab 7 Rev. 2 Open Lab Due COB Friday April 27, 2018 In a prior lab, we et up the baic hardware

More information

RESEARCH ON NEAR FIELD PASSIVE LOCALIZATION BASED ON PHASE MEASUREMENT TECHNOLOGY BY TWO TIMES FREQUENCY DIFFERENCE

RESEARCH ON NEAR FIELD PASSIVE LOCALIZATION BASED ON PHASE MEASUREMENT TECHNOLOGY BY TWO TIMES FREQUENCY DIFFERENCE RESEARCH ON NEAR FIED PASSIVE OCAIZATION BASED ON PHASE MEASUREMENT TECHNOOGY BY TWO TIMES FREQUENCY DIFFERENCE Xuezhi Yan, Shuxun Wang, Zhongheng Ma and Yukuan Ma College of Communication Engineering

More information

Experiment 4: Active Filters

Experiment 4: Active Filters Experiment : Active Filter In power circuit filter are implemented with ductor and capacitor to obta the deired filter characteritic. In tegrated electronic circuit, however, it ha not been poible to realize

More information

Position Control of a Large Antenna System

Position Control of a Large Antenna System Poition Control of a Large Antenna Sytem uldip S. Rattan Department of Electrical Engineering Wright State Univerity Dayton, OH 45435 krattan@c.wright.edu ABSTRACT Thi report decribe the deign of a poition

More information

Experiment 3 - Single-phase inverter 1

Experiment 3 - Single-phase inverter 1 ELEC6.0 Objective he Univerity of New South Wale School of Electrical Engineering & elecommunication ELEC6 Experiment : Single-phae C-C Inverter hi experiment introduce you to a ingle-phae bridge inverter

More information

IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 11, 2016 ISSN (online):

IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 11, 2016 ISSN (online): IJSRD - International Journal for Scientific Reearch & Development Vol. 3, Iue 11, 2016 ISSN (online): 2321-0613 Deign and Analyi of IIR Peak & Notch Ravi Choudhary 1 Pankaj Rai 2 1 M.Tech. Student 2 Aociate

More information

MIMO Systems: Multiple Antenna Techniques

MIMO Systems: Multiple Antenna Techniques ADVANCED MIMO SYSTEMS MIMO Sytem: Multiple Antenna Technique Yiqing ZOU, Zhengang PAN, Kai-Kit WONG Dr, Senior Member of IEEE, Aociate Editor, IEEE TWirele, IEEE CL, and JoC (AP), Senior Lecturer, Department

More information

A Real-Time Wireless Channel Emulator For MIMO Systems

A Real-Time Wireless Channel Emulator For MIMO Systems A eal-time Wirele Channel Emulator For MIMO Sytem Hamid Elami, Ahmed M. Eltawil {helami,aeltawil}@uci.edu Abtract: The improvement in channel capacity hailed by MIMO ytem i directly related to intricate

More information

Power Electronics Laboratory. THE UNIVERSITY OF NEW SOUTH WALES School of Electrical Engineering & Telecommunications

Power Electronics Laboratory. THE UNIVERSITY OF NEW SOUTH WALES School of Electrical Engineering & Telecommunications .0 Objective THE UNIVERSITY OF NEW SOUTH WALES School of Electrical Engineering & Telecommunication ELEC464 Experiment : C-C Step-own (Buck) Converter Thi experiment introduce you to a C-C tep-down (buck)

More information

Comm 502: Communication Theory. Lecture 5. Intersymbol Interference FDM TDM

Comm 502: Communication Theory. Lecture 5. Intersymbol Interference FDM TDM Lecture 5 Interymbol Interference FDM TDM 1 Time Limited Waveform Time-Limited Signal = Frequency Unlimited Spectrum Square Pule i a Time-Limited Signal Fourier Tranform 0 T S -3/T S -2/T S -1/T S 0 1/T

More information

Design, Realization, and Analysis of PIFA for an RFID Mini-Reader

Design, Realization, and Analysis of PIFA for an RFID Mini-Reader Deign, Realization, and Analyi of PIFA for an RFID Mini-Reader SUNG-FEI YANG ; TROY-CHI CHIU ; CHIN-CHUNG NIEN Indutrial Technology Reearch Intitute (ITRI) Rm. 5, Bldg. 5, 95, Sec., Chung Hing Rd., Chutung,

More information

Adaptive Groundroll filtering

Adaptive Groundroll filtering Adaptive Groundroll filtering David Le Meur (CGGVerita), Nigel Benjamin (CGGVerita), Rupert Cole (Petroleum Development Oman) and Mohammed Al Harthy (Petroleum Development Oman) SUMMARY The attenuation

More information

Phase-Locked Loops (PLL)

Phase-Locked Loops (PLL) Phae-Locked Loop (PLL) Recommended Text: Gray, P.R. & Meyer. R.G., Analyi and Deign of Analog Integrated Circuit (3 rd Edition), Wiley (992) pp. 68-698 Introduction The phae-locked loop concept wa firt

More information

Analysis. Control of a dierential-wheeled robot. Part I. 1 Dierential Wheeled Robots. Ond ej Stan k

Analysis. Control of a dierential-wheeled robot. Part I. 1 Dierential Wheeled Robots. Ond ej Stan k Control of a dierential-wheeled robot Ond ej Stan k 2013-07-17 www.otan.cz SRH Hochchule Heidelberg, Mater IT, Advanced Control Engineering project Abtract Thi project for the Advanced Control Engineering

More information

The Cascode and Cascaded Techniques LNA at 5.8GHz Using T-Matching Network for WiMAX Applications

The Cascode and Cascaded Techniques LNA at 5.8GHz Using T-Matching Network for WiMAX Applications International Journal of Computer Theory and Engineering, Vol. 4, No. 1, February 01 The Cacode and Cacaded Technique LNA at 5.8Hz Uing T-Matching Network for WiMAX Application Abu Bakar Ibrahim, Abdul

More information

Resonant amplifier L A B O R A T O R Y O F L I N E A R C I R C U I T S. Marek Wójcikowski English version prepared by Wiesław Kordalski

Resonant amplifier L A B O R A T O R Y O F L I N E A R C I R C U I T S. Marek Wójcikowski English version prepared by Wiesław Kordalski A B O R A T O R Y O F I N E A R I R U I T S Reonant amplifier 3 Marek Wójcikowki Englih verion prepared by Wieław Kordalki. Introduction Thi lab allow you to explore the baic characteritic of the reonant

More information

A Flyback Converter Fed Multilevel Inverter for AC Drives

A Flyback Converter Fed Multilevel Inverter for AC Drives 2016 IJRET olume 2 Iue 4 Print IN: 2395-1990 Online IN : 2394-4099 Themed ection: Engineering and Technology A Flyback Converter Fed Multilevel Inverter for AC Drive ABTRACT Teenu Joe*, reepriya R EEE

More information

STRUCTURAL SEMI-ACTIVE CONTROL DEVICE

STRUCTURAL SEMI-ACTIVE CONTROL DEVICE STRUCTURAL SEMI-ACTIVE CONTROL DEVICE Ming-Hiang SHIH SUMMARY Method for vibration reduction of tructure under dynamic excitation uch a wind and earthquake were generally claified into active control and

More information

A COMPARISON OF METHODS FOR EVALUATING THE TEST ZONE PERFORMANCE OF ANECHOIC CHAMBERS DESIGNED FOR TESTING WIRELESS DEVICES

A COMPARISON OF METHODS FOR EVALUATING THE TEST ZONE PERFORMANCE OF ANECHOIC CHAMBERS DESIGNED FOR TESTING WIRELESS DEVICES A COMPARISON OF METHODS FOR EVALUATING THE TEST ZONE PERFORMANCE OF ANECHOIC CHAMBERS DESIGNED FOR TESTING WIRELESS DEVICES Jame D. Huff John C. Mantovani Carl W. Sirle The Howland Company, Inc. 4540 Atwater

More information

Method to Improve Range and Velocity Error Using De-interleaving and Frequency Interpolation for Automotive FMCW Radars

Method to Improve Range and Velocity Error Using De-interleaving and Frequency Interpolation for Automotive FMCW Radars International Journal o Signal Proceing, Image Proceing and Pattern Recognition Vol. 2, No. 2, June 2009 Method to Improve Range and Velocity Error Uing De-interleaving and Frequency Interpolation or Automotive

More information

Sampling Theory MODULE XIII LECTURE - 41 NON SAMPLING ERRORS

Sampling Theory MODULE XIII LECTURE - 41 NON SAMPLING ERRORS Sampling Theory MODULE XIII LECTURE - 41 NON SAMPLING ERRORS DR. SHALABH DEPARTMENT OF MATHEMATICS AND STATISTICS INDIAN INSTITUTE OF TECHNOLOG KANPUR 1 It i a general aumption in ampling theory that the

More information

Observations on Windows

Observations on Windows Obervation on Window Window with low idelobe level have large tranition bandwidth'. Tranition bandwidth i inverely proportional to N for a given window. Indeed, the ratio of tranition width over idelobe

More information

CHAPTER 2 WOUND ROTOR INDUCTION MOTOR WITH PID CONTROLLER

CHAPTER 2 WOUND ROTOR INDUCTION MOTOR WITH PID CONTROLLER 16 CHAPTER 2 WOUND ROTOR INDUCTION MOTOR WITH PID CONTROLLER 2.1 INTRODUCTION Indutrial application have created a greater demand for the accurate dynamic control of motor. The control of DC machine are

More information

SIMULINK for Process Control

SIMULINK for Process Control SIMULINK for Proce Control Simulink for Control MATLAB, which tand for MATrix LABoratory, i a technical computing environment for high-performance numeric computation and viualization. SIMULINK i a part

More information

Experiment 8: Active Filters October 31, 2005

Experiment 8: Active Filters October 31, 2005 Experiment 8: Active Filter October 3, In power circuit filter are implemented with ductor and capacitor to obta the deired filter characteritic. In tegrated electronic circuit, however, it ha not been

More information

A Two-Stage Optimization PID Algorithm

A Two-Stage Optimization PID Algorithm PID' Brecia (Italy), March 8-3, ThB. A Two-Stage Optimization PID Algorithm Gíli Herjólfon Anna Soffía Haukdóttir Sven Þ. Sigurðon Department of Electrical and Computer Engineering,Univerity of Iceland

More information

Available online at ScienceDirect. Procedia Technology 17 (2014 )

Available online at  ScienceDirect. Procedia Technology 17 (2014 ) Available online at www.ciencedirect.com ScienceDirect Procedia Technology 17 (014 ) 791 798 Conference on Electronic, Telecommunication and Computer CETC 013 DC-DC buck converter with reduced impact Miguel

More information

Constant Switching Frequency Self-Oscillating Controlled Class-D Amplifiers

Constant Switching Frequency Self-Oscillating Controlled Class-D Amplifiers http://dx.doi.org/.5755/j.eee..6.773 ELEKTRONIKA IR ELEKTROTECHNIKA, ISSN 39 5, OL., NO. 6, 4 Contant Switching Frequency Self-Ocillating Controlled Cla-D Amplifier K. Nguyen-Duy, A. Knott, M. A. E. Anderen

More information

ECE 6640 Digital Communications

ECE 6640 Digital Communications ECE 6640 Digital Communication Dr. Bradley J. Bazuin Aitant Profeor Department of Electrical and Computer Engineering College of Engineering and Applied Science Chapter 2 2. Formatting and Baeband Modulation.

More information

Digital Control of Boost PFC AC-DC Converters with Predictive Control

Digital Control of Boost PFC AC-DC Converters with Predictive Control Proceeding of the th International Middle Eat Power Sytem Conference (MEPCON ), Cairo Univerity, Egypt, December 9-,, Paper ID 7. Digital Control of Boot PFC AC-DC Converter with Predictive Control H.Z.Azazi

More information

Adaptive Space/Frequency Processing for Distributed Aperture Radars

Adaptive Space/Frequency Processing for Distributed Aperture Radars Adaptive Space/Frequency Proceing for Ditributed Aperture Radar Raviraj Adve a, Richard Schneible b, Robert McMillan c a Univerity of Toronto Department of Electrical and Computer Engineering 10 King College

More information

Massachusetts Institute of Technology Haystack Observatory WESTFORD, MASSACHUSETTS DATE 07/15/2009

Massachusetts Institute of Technology Haystack Observatory WESTFORD, MASSACHUSETTS DATE 07/15/2009 BBD Memo #033 Maachuett Intitute of Technolog Hatack Obervator WESTFORD, MASSACHUSETTS 0886 DATE 07/5/2009 To: Broadband Development Group From: C. J. Beaudoin Subject: Holographic Proceing and Conideration

More information

Automatic Voltage Regulator with Series Compensation

Automatic Voltage Regulator with Series Compensation Automatic Voltage Regulator with Serie Compenation 1 Neethu Sajeev, 2 Najeena K S, 3 Abal Nabi 1 M.Tech Student, 2, 3 Aitant Proffeor, Electrical and Electronic Dept ILAHIA College of Engineering and Technology

More information

LCL Interface Filter Design for Shunt Active Power Filters

LCL Interface Filter Design for Shunt Active Power Filters [Downloaded from www.aece.ro on Sunday, November 4, 00 at 8::03 (TC) by 79.7.55.48. Retriction apply.] Advance in Electrical and Computer Engineering Volume 0, Number 3, 00 LCL nterface Filter Deign for

More information

A Faster and Accurate Method for Spectral Testing Applicable to Noncoherent Data

A Faster and Accurate Method for Spectral Testing Applicable to Noncoherent Data A Fater and Accurate ethod for Spectral Teting Applicable to Noncoherent Data inhun Wu 1,2, Degang Chen 2, Guican Chen 1 1 School of Electronic and Information Engineering Xi an Jiaotong Univerity, Xi

More information

ELG4139: Passive Filters

ELG4139: Passive Filters EG439: Paive Filter A ilter i a ytem that procee a ignal in ome deired ahion. There are two broad categorie o ilter: An analog ilter procee continuou-time ignal A digital ilter procee dicrete-time ignal.

More information

Hardware-in-the-loop tuning of a feedback controller for a buck converter using a GA

Hardware-in-the-loop tuning of a feedback controller for a buck converter using a GA SPEEDAM 8 International Sympoium on Power Electronic, Electrical Drive, Automation and Motion Hardware-in-the-loop tuning of a feedback controller for a buck converter uing a GA Mr K. D. Wilkie, Dr M.

More information

EEEE 480 Analog Electronics

EEEE 480 Analog Electronics EEEE 480 Analog Electronic Lab #1: Diode Characteritic and Rectifier Circuit Overview The objective of thi lab are: (1) to extract diode model parameter by meaurement of the diode current v. voltage characteritic;

More information

Techniques for Implementing a Model Simulated on a Physical Drive Vector Control

Techniques for Implementing a Model Simulated on a Physical Drive Vector Control 3 rd International Sympoium on Electrical Engineering and Energy er September 24-25, 2009, Suceava Technique for Implementing a Model Simulated on a Phyical Drive Vector Control Ciprian AFANASOV "Stefan

More information

Modeling and Simulation of Digital Filter Jie Zhao

Modeling and Simulation of Digital Filter Jie Zhao 4th National Conference on Electrical, Electronic and Comuter Engineering (NCEECE 05) Modeling and Simulation of Digital Filter Jie Zhao School of Electronic Information and Electrical Engineering, Shangluo

More information

Self-Programmable PID Compensator for Digitally Controlled SMPS

Self-Programmable PID Compensator for Digitally Controlled SMPS 6 IEEE COMPEL Workhop, Renelaer Polytechnic Intitute, Troy, NY, USA, July 16-19, 6 Self-Programmable PID Compenator for Digitally Controlled SMPS Zhenyu Zhao and Alekandar Prodi Univerity of Toronto Toronto,

More information

Digitally Programmable Voltage Mode Quadrature Oscillator Using Current Conveyors

Digitally Programmable Voltage Mode Quadrature Oscillator Using Current Conveyors International Journal of Engineering eearch and Development e-iss: 78-67X, p-iss : 78-8X, www.ijerd.com Volume, Iue 8 (January 3), PP. -6 Digitally Programmable Voltage Mode Quadrature Ocillator Uing urrent

More information

UNIVERSITY OF SASKATCHEWAN EE456: Digital Communications FINAL EXAM, 9:00AM 12:00PM, December 9, 2010 (open-book) Examiner: Ha H.

UNIVERSITY OF SASKATCHEWAN EE456: Digital Communications FINAL EXAM, 9:00AM 12:00PM, December 9, 2010 (open-book) Examiner: Ha H. Name: Page 1 UNIVERSIY OF SASKACHEWAN EE456: Digital Communication FINAL EXAM, 9:00AM 1:00PM, December 9, 010 (open-book) Examiner: Ha H. Nguyen Permitted Material: Only textbook and calculator here are

More information

Identification of Image Noise Sources in Digital Scanner Evaluation

Identification of Image Noise Sources in Digital Scanner Evaluation Identification of Image Noie Source in Digital Scanner Evaluation Peter D. Burn and Don William Eatman Kodak Company, ocheter, NY USA 4650-95 ABSTACT For digital image acquiition ytem, analyi of image

More information

NEW BACK-TO-BACK CURRENT SOURCE CONVERTER WITH SOFT START-UP AND SHUTDOWN CAPABILITIES

NEW BACK-TO-BACK CURRENT SOURCE CONVERTER WITH SOFT START-UP AND SHUTDOWN CAPABILITIES NEW BACK-TO-BACK CURRENT SOURCE CONVERTER WITH SOFT START-UP AND SHUTDOWN CAPABILITIES I. Abdelalam, G.P. Adam, D. Holliday and B.W. William Univerity of Strathclyde, Glagow, UK Ibrahim.abdallah@trath.ac.uk

More information

The Performance Analysis of MIMO OFDM System with Different M-QAM Modulation and Convolution Channel Coding

The Performance Analysis of MIMO OFDM System with Different M-QAM Modulation and Convolution Channel Coding The Performance Analyi of MIMO OFDM Sytem with Different M-QAM Modulation and Convolution Channel Coding H. S. Shwetha M.tech, Digital Communication Engineering Siddaganga Intitute of Technology Tumakuru,

More information

ECE 6640 Digital Communications

ECE 6640 Digital Communications ECE 6640 Digital Communication Dr. Bradley J. Bazuin Aitant Profeor Department of Electrical and Computer Engineering College of Engineering and Applied Science Chapter. Formatting and Baeband Modulation.

More information

Comparative Study of PLL, DDS and DDS-based PLL Synthesis Techniques for Communication System

Comparative Study of PLL, DDS and DDS-based PLL Synthesis Techniques for Communication System International Journal of Electronic Engineering, 2(1), 2010, pp. 35-40 Comparative Study of PLL, DDS and DDS-baed PLL Synthei Technique for Communication Sytem Govind Singh Patel 1 & Sanjay Sharma 2 1

More information

Reinforcement Learning Based Anti-jamming with Wideband Autonomous Cognitive Radios

Reinforcement Learning Based Anti-jamming with Wideband Autonomous Cognitive Radios 1 Reinforcement Learning Baed Anti-jamming with Wideband Autonomou Cognitive Radio Stephen Machuzak, Student Member, IEEE, and Sudharman K. Jayaweera, Senior Member, IEEE Communication and Information

More information

A Programmable Compensation Circuit for System-on- Chip Application

A Programmable Compensation Circuit for System-on- Chip Application http://dx.doi.org/0.5573/jsts.0..3.98 JOURAL OF SEMICODUCTOR TECHOLOGY AD SCIECE, VOL., O.3, SEPTEMBER, 0 A Programmable Compenation Circuit for Sytem-on- Chip Application Woo-Chang Choi* and Jee-Youl

More information

DSP-Based Control of Boost PFC AC-DC Converters Using Predictive Control

DSP-Based Control of Boost PFC AC-DC Converters Using Predictive Control DSP-Baed Control of Boot PFC AC-DC Converter Uing Predictive Control H.Z.Azazi*, E. E. E-Kholy**, S.A.Mahmoud* and S.S.Shokralla* * Electrical Engineering Department, Faculty of Engineering, Menoufiya

More information

Kalman Filtering Based Object Tracking in Surveillance Video System

Kalman Filtering Based Object Tracking in Surveillance Video System (669 -- 917) Proceeding of the 3rd (2011) CUSE International Conference Kalman Filtering Baed Object racking in Surveillance Video Sytem W.L. Khong, W.Y. Kow, H.. an, H.P. Yoong, K..K. eo Modelling, Simulation

More information

HARMONIC COMPENSATION ANALYSIS USING UNIFIED SERIES SHUNT COMPENSATOR IN DISTRIBUTION SYSTEM

HARMONIC COMPENSATION ANALYSIS USING UNIFIED SERIES SHUNT COMPENSATOR IN DISTRIBUTION SYSTEM HARMONIC COMPENSATION ANAYSIS USING UNIFIED SERIES SHUNT COMPENSATOR IN DISTRIBUTION SYSTEM * Montazeri M. 1, Abai Garavand S. 1 and Azadbakht B. 2 1 Department of Electrical Engineering, College of Engineering,

More information

ELEC353 Practice Problem Set #6

ELEC353 Practice Problem Set #6 EEC353 Practice Problem Set #6. The value of load impedance mut be found by meaurement, at 200 MHz. An engineer meaure the tanding-wave pattern a hown in the figure above. The figure how the amplitude

More information

Phase Angle Balance Control for Harmonic Filtering of A Three Phase Shunt Active Filter System

Phase Angle Balance Control for Harmonic Filtering of A Three Phase Shunt Active Filter System Phae Angle Balance Control for Harmonic Filtering of A Three Phae Shunt Active Filter Sytem Souvik Chattopadhyay, V. Ramanarayanan Power Electronic Group Department of Electrical Engineering, Indian Intitute

More information

Reactive Power Control of Photovoltaic Systems Based on the Voltage Sensitivity Analysis Rasool Aghatehrani, Member, IEEE, and Anastasios Golnas

Reactive Power Control of Photovoltaic Systems Based on the Voltage Sensitivity Analysis Rasool Aghatehrani, Member, IEEE, and Anastasios Golnas 1 Reactive ower Control of hotovoltaic ytem Baed on the Voltage enitivity Analyi Raool Aghatehrani, Member, IEEE, and Anataio Golna Abtract: Thi paper addree the voltage fluctuation caued by the output

More information

Operation of the Discrete Wavelet Transform: basic overview with examples

Operation of the Discrete Wavelet Transform: basic overview with examples Operation o the Dicrete Wavelet Tranorm: baic overview with example Surname, name Antonino Daviu, Joe Alono (joanda@die.upv.e) Department Centre Ecuela Técnica Superior de Ingeniero Indutriale Departamento

More information

Time-Domain Coupling to a Device on Printed Circuit Board Inside a Cavity. Chatrpol Lertsirimit, David R. Jackson and Donald R.

Time-Domain Coupling to a Device on Printed Circuit Board Inside a Cavity. Chatrpol Lertsirimit, David R. Jackson and Donald R. Time-Domain Coupling to a Device on Printed Circuit Board Inide a Cavity Chatrpol Lertirimit, David R. Jackon and Donald R. Wilton Applied Electromagnetic Laboratory Department of Electrical Engineering,

More information

Optimal Control for Single-Phase Brushless DC Motor with Hall Sensor

Optimal Control for Single-Phase Brushless DC Motor with Hall Sensor Reearch Journal of Applied Science, Engineering and Technology 5(4): 87-92, 23 ISSN: 24-7459; e-issn: 24-7467 Maxwell Scientific Organization, 23 Submitted: June 22, 22 Accepted: Augut 7, 22 Publihed:

More information

Hashiwokakero. T. Morsink. August 31, 2009

Hashiwokakero. T. Morsink. August 31, 2009 Hahiwokakero T. Morink Augut 31, 2009 Content 1 Introduction 3 2 What i Hahiwokakero? 3 2.1 The rule............................. 3 2.2 Eay olving tatement..................... 4 3 Building an Own Solver

More information

Sloppy Addition and Multiplication

Sloppy Addition and Multiplication Sloppy Addition and Multiplication IMM-Technical Report-2011-14 Alberto Nannarelli Dept. Informatic and Mathematical Modelling Technical Univerity of Denmark Kongen Lyngby, Denmark Email: an@imm.dtu.dk

More information

Renewable Energy 36 (2011) 2508e2514. Contents lists available at ScienceDirect. Renewable Energy. journal homepage:

Renewable Energy 36 (2011) 2508e2514. Contents lists available at ScienceDirect. Renewable Energy. journal homepage: Renewable Energy 36 (2011) 2508e2514 Content lit available at ScienceDirect Renewable Energy journal homepage: www.elevier.com/locate/renene Implementation of photovoltaic array MPPT through fixed tep

More information

/09/$ IEEE 472

/09/$ IEEE 472 Bai Puruit for Robut Paive Acoutic Beamforming Ben Shapo and Chri Kreucher Integrity Application Incorporated 900 Victor Way, Suite 220 Ann Arbor, MI 48108 bhapo@integrity-app.com, ckreuche@umich.edu Abtract

More information

Improved Selective Harmonic Elimination for Reducing Torque Harmonics of Induction Motors in Wide DC Bus Voltage Variations

Improved Selective Harmonic Elimination for Reducing Torque Harmonics of Induction Motors in Wide DC Bus Voltage Variations Improved Selective Harmonic Elimination for Reducing Torque Harmonic of Induction Motor in Wide DC Bu Voltage Variation Hoein Valiyan Holagh, Tooraj Abbaian Najafabadi School of Electrical and Computer

More information

Loss Reduction of AS/AC Networks with Holographic Optical Switches

Loss Reduction of AS/AC Networks with Holographic Optical Switches 7th WEA International Conference on Electric Power ytem, High Voltage, Electric Machine, Venice, Italy, ovember -3, 007 36 Lo Reduction of A/AC etwork with Holograhic Otical witche Jiun-hiou Deng, Chien-Yi

More information

Instantaneous Cycle-Slip Detection and Repair of GPS Data Based on Doppler Measurement

Instantaneous Cycle-Slip Detection and Repair of GPS Data Based on Doppler Measurement Intantaneou Cycle-Slip Detection and Repair of GPS Data Baed on Doppler Meaurement Zhoufeng Ren, Liyan Li, Jie Zhong, and Minjian Zhao Abtract In GPS receiver, carrier phae meaurement can be ued to improve

More information

Control of Electromechanical Systems using Sliding Mode Techniques

Control of Electromechanical Systems using Sliding Mode Techniques Proceeding of the 44th IEEE Conference on Deciion and Control, and the European Control Conference 25 Seville, Spain, December 2-5, 25 MoC7. Control of Electromechanical Sytem uing Sliding Mode Technique

More information

Real-Time Frequency Tracking Using Novel Adaptive Harmonic IIR Notch Filter

Real-Time Frequency Tracking Using Novel Adaptive Harmonic IIR Notch Filter Real-Time Frequency Tracking Using Novel Adaptive Harmonic IIR Notch Filter Li Tan, Ph.D. College of Engineering and Technology Purdue University North Central lizhetan@pnc.edu Jean Jiang, Ph.D. College

More information

The optimal design of receiving circuit in acoustic logging while drilling tool Zhang Zheng, Xin Penglai, He Hongbin

The optimal design of receiving circuit in acoustic logging while drilling tool Zhang Zheng, Xin Penglai, He Hongbin International Indutrial Informatic and Computer Engineering Conference (IIICEC 05) The optimal deign of receiving circuit in acoutic logging while drilling tool Zhang Zheng, Xin Penglai, He Hongbin Ultraound

More information

Published in: Proceedings of the 26th European Solid-State Circuits Conference, 2000, ESSCIRC '00, September 2000, Stockholm, Sweden

Published in: Proceedings of the 26th European Solid-State Circuits Conference, 2000, ESSCIRC '00, September 2000, Stockholm, Sweden Uing capacitive cro-coupling technique in RF low noie amplifier and down-converion mixer deign Zhuo, Wei; Embabi, S.; Pineda de Gyvez, J.; Sanchez-Sinencio, E. Publihed in: Proceeding of the 6th European

More information

Self Resonance Cancellation for Joint Torque Control Using Torque Sensor

Self Resonance Cancellation for Joint Torque Control Using Torque Sensor IEEJ International Workhop on ening, Actuation, Motion Control, and Optimization elf onance Cancellation for Joint Torque Control Uing Torque enor Akiyuki Haegawa tudent Member, Hirohi Fujimoto enior Member

More information

COST OF TRANSMISSION TRANSACTIONS: Comparison and Discussion of Used Methods

COST OF TRANSMISSION TRANSACTIONS: Comparison and Discussion of Used Methods INTERNATIONAL CONFERENCE ON RENEWABLE ENERGY AND POWER QUALITY (ICREPQ 03) COST OF TRANSMISSION TRANSACTIONS: Comparion and Dicuion of Ued Method Judite Ferreira 1, Zita Vale 2, A. Almeida Vale 3 and Ricardo

More information

Integral Control AGC of Interconnected Power Systems Using Area Control Errors Based On Tie Line Power Biasing

Integral Control AGC of Interconnected Power Systems Using Area Control Errors Based On Tie Line Power Biasing ISSN (Online) 232 24 ISSN (Print) 232 5526 Vol. 2, Iue 4, April 24 Integral Control AGC of Interconnected Power Sytem Uing Area Control Error Baed On Tie Line Power Biaing Charudatta B. Bangal Profeor,

More information

Published in: Proceedings of 2018 IEEE 19th Workshop on Control and Modeling for Power Electronics (COMPEL)

Published in: Proceedings of 2018 IEEE 19th Workshop on Control and Modeling for Power Electronics (COMPEL) Aalborg Univeritet A Synchronization Method for Grid Converter with Enhanced Small-Signal and Tranient Dynamic Steinkohl, Joachim; Taul, Mad Graungaard; Wang, Xiongfei; Blåbjerg, Frede; Haler, Jean- Philippe

More information

EFFECT OF THE FEEDER CABLE AND TRANSFORMER IMPEDANCE ON THE MECHANICAL OUTPUT CHARACTERISTIC OF THE INDUCTION MOTOR

EFFECT OF THE FEEDER CABLE AND TRANSFORMER IMPEDANCE ON THE MECHANICAL OUTPUT CHARACTERISTIC OF THE INDUCTION MOTOR Intenive Programme Renewable Energy Source May 2011, Železná Ruda-Špičák, Univerity of Wet Bohemia, Czech Republic EFFECT OF THE FEEDER CABLE AND TRANSFORMER IMPEDANCE ON THE MECHANICAL OUTPUT CHARACTERISTIC

More information