FRT 041 System Identification Laboratory Exercise 3

Size: px
Start display at page:

Download "FRT 041 System Identification Laboratory Exercise 3"

Transcription

1 FRT 041 System Identification Laboratory Exercise 3 Ulf Holmberg Revised: Kjell Gstafsson Karl Henrik Johansson Anders Wallén Johan Nilsson Rolf Johansson Johan Bengtsson Maria Henningsson Department of Atomatic Control Lnd Institte of Technology Lnd University October 1987 Revised: September 1989, March 1994, March 1995, Febrary 1996, Febrary 1997, Febrary 1999, March 2005, Febrary 2011

2 Identification and Controller Design Theprposeofidentificationisoftentogetamodelthatcanbesedfor controllerdesign.whatisaimedatisalowordermodelthatcaptresthe mainpropertiesoftheprocess,andwhichcanbesedforanalysisand synthesis. It is important that the model is accrate for a freqency band arond the crossover freqency, while higher order dynamics and weak nonlinearities often can be discarded. Also the low freqency properties are often less important, since the closed loop behavior at these freqencies is determined by having integration(high gain) in the controller. Still, the signofthestaticgainhastobeknown. The model is valid only for a limited freqency range, and probably ncertain also within this range. Therefore when doing the design of the controller a synthesis method reslting in a robst controller shold be sed, i.e., the performance of the controller shold not be affected by small changes in the model. In this laboratory exercise an identification experiment will be done. UsingMATLABamodelwillbeestimatedandsedtodesignacontroller. The controller is then tested on the real process. Throghot the laboratory exercise MATLAB is sed. This manal contains many references to MATLAB fnctions. Some of these are standard MATLAB fnctions while others were written to facilitate the exercise. Wheneveryoareindobtabotwhatacertainfnctiondoes,se help. Preparation Read throgh A Manal For System Identification [Andersson et al.(1998)] whichwassedinlab2andbringittothelaboratoryexercise. 1. The process The process tobe designed isalittle tricky to control. It consists of a rectanglarplatehanginginoneofitsedges,seefigre1.theplateis montedschthatitcanswingbackandforth.aweightismontedon onesideoftheplatetomakeitdeflectfromtheverticalplane.afanis positionedashortdistancefromtheplateandsedtoblowanairstream on the plate, ths affecting its position. The angle between the plate and theverticalplaneismeasredandactasotptfromtheprocess.itis possibletocontroltheplateanglesingthevoltagetothefanmotoras control variable. The process has the following properties Thereisatimeconstantinthefanmotorandhencetheairstream is not immediately affected when varying the motor voltage. Theprocesscontainsatimedelaysinceittakessometimefortheair stream to reach the plate. Theplateactslikeapendlmresltinginalightlydampedresonance. Trblence cases noise which affects the process. Try to control the process manally. Use a potentiometer to vary the voltage tothefanmotor.trytoestimatethetimeconstantoftheprocessandthe 1

3 Figre 1 The process. freqencyoftheresonancesothatyolatermayjdgeiftheidentified model is reasonable. 2. The identification experiment Yo are to perform an open loop identification experiment on the process. StartMATLABandtype initlab3atthecommandprompt.thissetsp MATLABandopenstheSIMULINKmodel logger,whichwillbesedto logdata,seefigre2.themodelgeneratesaprbs(psedorandombinary seqence) signal which is sed as inpt to the process. The excitation signal andtheprocessotptareloggedandsavedintheworkspaceas and y for later processing in MATLAB. measred y measred y PRBS generator Ot1 measred jitter Process To Workspace y To workspace Note: Skip initial data from the seqences de to real time problems with initialization (see the jitter plot) measred otpt jitter time Clock To Workspace2 Figre 2 Simlink model for logging data. The plate is to be controlled approximately arond its downright position, i.e. a plate angle slightly greater than zero. This corresponds to a certainvoltagefedtothefanmotorsincetheweightontheplatecases ittodeflect.adjstthemeanvaleoftheexcitationsignaltogetasmall positiveplateangle.oneeasywaytoachievethisistoseanexternal adjstable voltage added to the signal to the fan motor. When the mean vale is adjsted, set the amplitde of the excitation signal to 0.5 V. According to Åström and Wittenmark(1997) it is reasonable tochoosethesampleperiodhschthat ωh ,where ω isthe resonance freqency of the plate estimated above. Ths we may choose h=50ms.frtherwedecidetocollect1200datapoints,andtosetthe PRBSperiodto10.Starttheloggingandconsidertheloggeddatainthe scopes. 2

4 Figre 3 GUI for System Identification Toolbox. 3. The identification The System Identification Toolbox in MATLAB will be sed to estimate a model of the process. The identification may be done either by writing the commands below or by sing the graphical ser interface of the System Identification Toolbox, see Figre 3 The graphical ser interface is started by writing at the command prompt ident The rest of this section describes command-line identification. Yo can follow the same procedre in the graphical ser interface. Beginbylookingatthedatabyrnning plot([y ]) Do the signals look all right? What transients shold be neglected? Pick ot the process otpt and the excitation signal and remove the bias sing z = [y ]; z = detrend(z, constant ); whichgivesamatrixwithtwocolmns yand.wecheckinwhatfreqency interval a good model might be estimated by plotting the coherence fnction Γ y (ω)= S y (ω) S (ω)s y (ω) sing the command 3

5 mscohere(,y,[],[],[],1/h); In a previos laboratory exercise we did freqency response analysis. An alternative is to do spectral analysis in order to get an estimated freqency response. The qality of this estimate will highly depend on the length of the Hamming window sed. This makes spectral analysis sometimes hard toseinpractice.ithasbeenshownthatforordataawindowlengthof abot100isgood.try g = spa(z,100,[],[],h); plot(g); It is often sefl to split the data into two seqences; one for identification and one for verification: nz = size(y,1); z1 = iddata(y(1:nz/2),(1:nz/2),h); z2 = iddata(y(nz/2+1:nz),(nz/2+1:nz),h); z1 = detrend(z1,0); z2 = detrend(z2,0); Use the fnction armax(z,[na,nb,nc,k]) to estimate an ARMAX model inthebackwardshiftoperator(q 1 )accordingto M : (1+a 1 q 1 + a na q na )y(t) =(b 1 q k + b nb q k nb+1 )(t) +(1+c 1 q 1 + c nc q nc )e(t) Note that nb corresponds to the nmber of b-parameters and not the degree of the B polynomial. The parameter k denotes the time delay in the system. Remembertohave k>0togetacasalmodelwithotanydirectterm. Do yo have any ideas abot initial vales for [na,nb,nc,k]? Theresltofthecommand armaxisrepresentedonaspecialform,the theta-form. The command present will list the parameter vales, their variance, the vale of the loss fnction, and the Akaike FPE(final prediction error) vale. An example is th3222 = armax(z1,[3,2,2,2]); present(th3222) UsetheFPEandthevarianceoftheparametervalestodeterminea sitabletimedelay(k)andmodelorder(na, nband nc).trytofindagood model with an order as low as possible(the order eqals max(na,nb+k-1)). Agoodwaytoverifythemodelistocompareitsotptsignalwiththe process otpt. This can be done as follows ym = idsim(z2.inptdata,th3222); t = h [1:1:length(z2.OtptData)]; plot(t,z2.otptdata,t,ym); Notethatwese z2andnotthedatathatweresedformodelestimation when we simlate the model. Yosholdalsotakealookatthepole-zeroconfigrationofthemodel. Atoolargemodelordermayshowpaspolesandzerosthatalmostcancel. Use pzmap(th3222) 4

6 Thefinalmodel,i.e.theonethatismostsatisfactory,sholdbesed todesignacontroller.thisisalsodoneinmatlab.themacrosthatdo thedesignneedaprocessmodelontheform B(q)/A(q),with B(q)and A(q) being polynomials in the forward shift operator. The two polynomials have to be extracted from the theta-form and converted to forward shift operatorform. Aand Binbackwardshiftoperatorarederivedby A = th3222.a; B = th3222.b; Rewrite the transfer fnction into forward shift representation on a piece ofpaper.matlabcommandsforwhatyohavedoneare A = [A zeros(1,k+nb-1-na)] B(1:k) = [], B = [B zeros(1,na-k-nb+1)] Make sre yo nderstand that these commands convert from backward to forward shift. Compare the zeros of A with the expected closed-loop poles from the introdction. 4. The controller design Thedesignmethodthatisgoingtobesedispoleplacement.Itmaybe hardtodecidewheretoplaceallthepoles,soforsimplicitywewillchoose apolepatternandonlyvaryitsdistancefromtheorigin.thisiseqivalent torestrictingthetimeresponseoftheclosedloopsystemtoacertainform, andthenonlyvaryits speed (why?).wewillvarythedesired speed and try to evalate the robstness of the reslting closed loop system. Finally, some promising designs will be stored for ftre tests on the real process. Hereisastepbystepdescriptionofthedesignmethod. 1. Firstlookatthefreqencyresponseofthemodeltotrytogetanidea ofhowmchitispossibletodemandfromtheclosedloopsystem. Plot the Bode diagram sing bode(th3222) AsoneexpectsthereisalargeresonanceintheBodediagram,corresponding to the plate acting as a pendlm. The freqency of this resonance tells abot the natral freqency of the open loop system andgivesahintabotwhattoexpectfromtheclosedloopsystem. The controller shold take care of the resonance and damp it. Trying to get a closed loop bandwidth differing mch from the resonance freqency will reqire a large control effort and a very accrate model. (Comparewithhowtheclosedlooppolesaremovedinarootlocs plot when a proportional controller is sed.) What do yo regard as a reasonable range for the closed loop bandwidth? PlotalsotheNyqistcrveofthemodelsing nyqist(th3222) Is proportional feedback sfficient to get a stable closed loop system with reasonable performance? 5

7 Figre 4 The continos time pole pattern sed in the design. 2. Poleplacementwillbesedasdesignmethod,seeÅströmandWittenmark(1997).Thedesiredcharacteristicpolynomial A m andthe observerpolynomiala o havetobechosen.togetacasalcontroller itmstholdthat dega o 2degA dega m degb + 1 whereb + isthecanceled(stable)partofb.forsimplicityletsdecide nottocancelanyzeros,i.e.b + =1, B =B,andchoosedegA m = dega n.then dega o n 1 ChoosingdegA o =n 1givesacontrollerwithdirectterm.Toget anintegratorinthecontroller,thedegreeoftheobserverhastobe increased(why?). Ths dega o n Itmaybehardtorelatediscretetimepolestothepropertiesofthe closedloopsystem(atleasttheathorbelievesthisishard).wewill thereforerelatethechoiceofa m anda o tocontinostimepoles.for simplicitychoosethepoleseqallyspacedonasegmentofacirclein thelefthalfplaneofthes-plane.theradisofthecircleis ω m and halftheopeningangleis45 (akindofbtterworthconfigration, seefigre4).theobserverpolesarechoseninthesamewaybt attwicethedistancefromtheorigin,i.e. ω o =2ω m.thecontinos timepoles are translated todiscrete time throgh z= e sh.for a non-integrating controller the commands are Amc = polybtt(n,wm,45); Aoc = polybtt(n-1,2*wm,45); Am = real(poly(exp(roots(amc)*h))); Ao = real(poly(exp(roots(aoc)*h))); Thereisonlyoneparameter, ω m,tovaryinthedesign.itcorresponds totheclosedloopbandwidth,andwewillchooseitinrelationtoor observations in step 1. The choice of pole pattern is natrally jst a sggestion. It is probably possible to make a better design by choosing a different pattern. If 6

8 yo have time, try other configrations, e.g. mltiple poles on the real axis. 3. The controller is calclated by solving the DAB-eqation(Diophantine- Aryabhatta-Bezot) AR 1 +B S=A m A o with B=B + B and B m = B mb.thecontrollerpolynomialsare given by R=R 1 B + S=S T=t 0 A o B m wheret 0 issedtoadjstthestaticgainoftheclosedloopsystemto one. In MATLAB the calclations are done sing(do help rstd): [R,S,T] = rstd(1,b,a,1,am,ao,ar) ThepolynomialA r isforcedintorwhensolvingthedab-eqation. This makes it possible to inclde integral action in the controller, i.e. A r =q 1orinMATLABnotation Ar = [1-1].Ifnointegratoris wantedjstpt Ar = When the controller has been calclated it needs to be evalated. This canbedonebyplottingthenyqistcrveofthelooptransferfnctiong o (q)=b(q)s(q)/a(q)r(q).ifthenyqistcrvepassesclose to 1 or design is probably not very good. Natrally, the controller stabilizes the model, bt since the model does not exactly describe the treprocessitmayverywellbethattherealsystemwillbenstable.thereforetrytofindan ω m thatgivesareasonableclosedloop bandwidth, bt withot having a Nyqist crve passing too close to 1.Ifthiscanbesatisfieditislikelythatthecontrollerwillperform well even if the tre process shold differ slightly from or model. When interpreting closeness to 1, think in terms of gain and phase margin.trytogetaloopwithgainmarginapproximatelyeqalto2 andphasemarginapproximatelyeqalto60. PlottheNyqistcrveofG o (q) nyqist(series(tf(s,r,h),tf(b,a,h))); Evalate the controller first by simlation. To save a controller for later se, do save regname R S T This command saves yor controller in a file regname.mat. Of corse, the controller shold be casal. Check the polynomial degrees so that this reqirement is flfilled. Iterate the design steps ntil a cople of good controllers are fond. At least, try to find two with integration and two withot integration. 7

9 5. Testing the controller Wearenowreadytotestthecontrollersdesignedabove.Ifnotalready closed, close the logger-model and then type lab3_controller to bring p thesimulinkmodelwhichwillbesedforcontrol, seefigre5.the model consists of a reference generator, a controller on RST-form, the I/O connection to the process, and some scopes for displaying the signals of the system. Mx yref and y Signal Generator 0.2 Sm y_ref y Discrete RST controller measred y measred jitter Process offset jitter Figre 5 Simlink model for real-time control. Startbychoosingasqarewavewithmean0.1V,amplitde0.05V,and period 20 s as reference signal. Load a controller in workspace by execting load regname Finally, test the performance of the controller by varying the process parameters: change the distance between the fan and the plate, or change the weight on the plate. Compare yor different controllers. Do they behave as yo expected from the design phase above? Which controller wold yo prefer? 6. References Andersson, L., U. Jönsson, and K. H. Johansson(1998): A manal for system identification. In Laboratory Exercises in System Identification. KF Sigma i Lnd AB. Department of Atomatic Control, Lnd Institte of Technology, Box 118, S Lnd, Sweden. Åström, K. J. and B. Wittenmark(1997): Compter-Controlled Systems. Prentice Hall. 8

Neuro-predictive control based self-tuning of PID controllers

Neuro-predictive control based self-tuning of PID controllers Nero-predictive control based self-tning of PID controllers Corneli Lazar, Sorin Carari, Dragna Vrabie, Maris Kloetzer Gh. Asachi Technical Universit of Iasi, Department of Atomatic Control Blvd. D. Mangeron

More information

International Conference on Intelligent Systems Research and Mechatronics Engineering (ISRME 2015)

International Conference on Intelligent Systems Research and Mechatronics Engineering (ISRME 2015) International Conference on Intelligent Systems Research and Mechatronics Engineering (ISRME 2015) An Improved Control Strategy for Fll-controlled Single-phase H Bridge Rectifier Qi Sheng-long 1, a, X

More information

Application of digital filters for measurement of nonlinear distortions in loudspeakers using Wolf s method

Application of digital filters for measurement of nonlinear distortions in loudspeakers using Wolf s method Application o digital ilters or measrement o nonlinear distortions in lodspeakers sing Wol s method R. Siczek Wroclaw University o Technology, Wybrzeze Wyspianskiego 7, 50-70 Wroclaw, Poland raal.siczek@pwr.wroc.pl

More information

Control of Servo System of CNC Machine using PID

Control of Servo System of CNC Machine using PID International Jornal of Engineering, Applied and Management Sciences Paradigms, Vol. 42, Isse 0 Pblishing Month: December 206 Control of Servo System of CNC Machine sing PID Ahmed Msa Ahmed Mohamed and

More information

Hybrid Digital-Analog Transmission Taking Into Account D/A and A/D Conversion

Hybrid Digital-Analog Transmission Taking Into Account D/A and A/D Conversion Hybrid -Analog Transmission Taking Into Accont and Conversion Matthias Rüngeler and Peter Vary Institte of Commnication Systems and Data Processing ( ) RWTH Aachen University, Germany {rengeler vary}@ind.rwth-aachen.de

More information

RELAY METHOD ON AUTO-TUNING AUTOMATION SOLUTIONS. Marco Gonçalo de Sousa Neves

RELAY METHOD ON AUTO-TUNING AUTOMATION SOLUTIONS. Marco Gonçalo de Sousa Neves RELAY METHOD ON AUTO-TUNING AUTOMATION SOLUTIONS Marco Gonçalo de Sosa Neves Universidade Técnica de Lisboa, Institto Sperior Técnico, Lisboa, Portgal. Abstract: The PID controller is in the back-bone

More information

TEN TOWERS OF TEN. Getting Ready. The Activity. Overview. Introducing

TEN TOWERS OF TEN. Getting Ready. The Activity. Overview. Introducing TEN TOWERS OF TEN NUMER PROAILIT/STATISTICS Addition Chance Eqations Getting Ready What o ll Need Snap Cbes, 60 of each of 2 colors per pair Die, 1 per pair Ten Towers of Ten game board, 1 per pair, page

More information

AUTOMATIC SYNTHESIS USING GENETIC PROGRAMMING OF IMPROVED PID TUNING RULES

AUTOMATIC SYNTHESIS USING GENETIC PROGRAMMING OF IMPROVED PID TUNING RULES AUTOMATIC SYNTHESIS USING GENETIC PROGRAMMING OF IMPROVED PID TUNING RULES Matthew J. Streeter 1, Martin A. Keane, and John R. Koza 3 1 Genetic Programming, Inc. Econometrics, Inc. 3 Stanford University

More information

REAL TIME COMPUTATION OF DIFFERENCE EQUATIONS

REAL TIME COMPUTATION OF DIFFERENCE EQUATIONS REAL TIME COMPUTATION OF DIFFERENCE EQUATIONS Carlos Celaya Borges, Jorges Illescas Chávez, Esteban Torres León, Artro Prieto Fenlabrada Institto Tecnológico de Pebla, Universidad Atónoma de Pebla ccelaya@si.bap.mx,

More information

Robust Control with Classical Methods QFT

Robust Control with Classical Methods QFT Robst Control with Classical Methods QFT Per-Olof Gtman Review of the classical Bode-Nichols control problem QFT in the basic Single Inpt Single Otpt (SISO) case Fndamental Design Limitations Identification

More information

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors We are IntechOpen, the world s leading pblisher of Open Access books Bilt by scientists, for scientists 3,500 108,000 1.7 M Open access books available International athors and editors Downloads Or athors

More information

A Novel Concept for Mains Voltage Proportional Input Current Shaping of a VIENNA Rectifier Eliminating Controller Multipliers

A Novel Concept for Mains Voltage Proportional Input Current Shaping of a VIENNA Rectifier Eliminating Controller Multipliers 1 of 10 A Novel Concept for Mains Voltage Proportional Inpt Crrent Shaping of a VIENNA Rectifier Eliminating Controller Mltipliers Part I: Basic Theoretical Considerations and Experimental Verification

More information

MODELLING AND CONTROL OF A SINGLE DEGREE-OF-FREEDOM DYNAMIC WIND TUNNEL RIG

MODELLING AND CONTROL OF A SINGLE DEGREE-OF-FREEDOM DYNAMIC WIND TUNNEL RIG MODELLING AND CONTROL OF A SINGLE DEGREE-OF-FREEDOM DYNAMIC WIND TUNNEL RIG Pal M. Davison, Mario di Bernardo, Mark H. Lowenberg Departments of Aerospace Engineering and Engineering Mathematics, University

More information

Comparative Evaluation of Multi-Loop Control Schemes for a High-Bandwidth AC Power Source with a Two-Stage LC Output Filter

Comparative Evaluation of Multi-Loop Control Schemes for a High-Bandwidth AC Power Source with a Two-Stage LC Output Filter 22 IEEE Proceedings of the International Conference on Renewable Energy Research and Applications (ICRERA 22), Nagasaki, Japan, November -4, 22 Comparative Evalation of Mlti-Loop Control Schemes for a

More information

Analogue amplifier modules for 4/3 and 4/2 proportional directional valves 4WRE

Analogue amplifier modules for 4/3 and 4/2 proportional directional valves 4WRE Analoge amplifier modles for 4/3 and 4/ proportional directional valves 4WRE RE 309/06.05 Replaces:.04 /0 Types VT-MRPA and VT-MRPA Component series X H677 Table of contents Contents Page Featres Ordering

More information

Intended Learning Outcomes (ILO s):

Intended Learning Outcomes (ILO s): Grade 3-5 Alignment to Utah Core Crriclm Learning Otcome Skills Yo ll Use Inference Observation Recording Wondering Intended Learning Otcomes (ILO s): There are many ways to record and organize 1. Use

More information

Novel Approach to Uncertainty of Antenna Factor Measurement. Bittera Mikulas, Smiesko Viktor, Kovac Karol 1

Novel Approach to Uncertainty of Antenna Factor Measurement. Bittera Mikulas, Smiesko Viktor, Kovac Karol 1 7 th Symposim IEKO TC 4, rd Symposim IEKO TC 9 and 5 th IWADC Workshop Instrmentation for the ICT Era Sept. 8-0, 00, Kosice, Slovakia Novel Approach to Uncertainty of Antenna Factor easrement Bittera iklas,

More information

Parameter Estimation and Tuning of a Multivariable RF Controller with FPGA technique for the Free Electron Laser FLASH

Parameter Estimation and Tuning of a Multivariable RF Controller with FPGA technique for the Free Electron Laser FLASH 28 American Control Conference Westin Seattle Hotel, Seattle, Washington, USA Jne -3, 28 ThBI2.2 Parameter Estimation and Tning of a Mltivariable RF Controller with FPGA techniqe for the Free Electron

More information

An Adaptive Power Allocation Scheme for Space-Time Block Coded MIMO Systems

An Adaptive Power Allocation Scheme for Space-Time Block Coded MIMO Systems An Adaptive Power Allocation Scheme for Space-Time Block Coded IO Systems LiangXianandHapingLi School of Electrical Engineering and Compter Science Oregon State University Corvallis, OR 9733 USA Email:

More information

Double Closed-Loop Controller Design of Brushless DC Torque Motor. Based on RBF Neural Network Denghua Li 1,a, Zhanxian Chen 1,b, Shuang Zhai 1,c

Double Closed-Loop Controller Design of Brushless DC Torque Motor. Based on RBF Neural Network Denghua Li 1,a, Zhanxian Chen 1,b, Shuang Zhai 1,c Advanced aterials Research Online: 202-04-2 ISSN: 662-8985, Vols. 503-504, pp 35-356 doi:0.4028/www.scientific.net/ar.503-504.35 202 Trans Tech Pblications, Switzerland Doble Closed-Loop Controller Design

More information

SENSOR TECHNOLGY APPLICATIONS FOR MEDIUM VOLTAGE

SENSOR TECHNOLGY APPLICATIONS FOR MEDIUM VOLTAGE 1(8) SENSOR TECHNOLGY APPLICATIONS FOR MEDIUM VOLTAGE )** Athor & Presenter: Bo Westerholm B.Sc. Prodct development engineer, ABB Oy, Medim Voltage Technology 1. Introdction Sensors are a new soltion for

More information

Minimization of the DC Current Ripple of a Three-Phase Buck+Boost PWM Unity Power Factor Rectifier

Minimization of the DC Current Ripple of a Three-Phase Buck+Boost PWM Unity Power Factor Rectifier Minimization of the DC Crrent Ripple of a Three-Phase Bck+Boost PWM Unity Power Factor Rectifier Martina Bamann Vienna University of Technology Department of Electrical Drives and Machines Gsshasstrasse

More information

Document Version Publisher s PDF, also known as Version of Record (includes final page, issue and volume numbers)

Document Version Publisher s PDF, also known as Version of Record (includes final page, issue and volume numbers) Three-port bi-directional converter for electric vehicles: focs on high-freqency coaxial transformer Waltrich, G.; Darte, J.L.; Hendrix, M.A.M.; Palides, J.J.H. Pblished in: Proceedings of the 5th EVER

More information

Apply Double-Angle and Half-Angle Formulas

Apply Double-Angle and Half-Angle Formulas 47 a2, 2A2A; P3A TEKS Apply Doble-Angle and Half-Angle Formlas Before Yo evalated expressions sing sm and difference formlas Now Yo will se doble-angle and half-angle formlas Why? So yo can find the distance

More information

UNCERTAINTY ANALYSIS OF MEASURING SYSTEM FOR INSTANTANEOUS POWER RESEARCH

UNCERTAINTY ANALYSIS OF MEASURING SYSTEM FOR INSTANTANEOUS POWER RESEARCH Metrol. Meas. Syst., Vol. XIX (0), No. 3, pp. 573-58. METROLOGY AND MEASUREMENT SYSTEMS Index 330930, ISSN 0860-89 www.metrology.pg.gda.pl UNCERTAINTY ANALYSIS OF MEASURING SYSTEM FOR INSTANTANEOUS POWER

More information

Berner, Josefin; Soltesz, Kristian; Hägglund, Tore; Åström, Karl Johan

Berner, Josefin; Soltesz, Kristian; Hägglund, Tore; Åström, Karl Johan An experimental comparison of PID atotners Berner, Josefin; Soltesz, Kristian; Hägglnd, Tore; Åström, Karl Johan Pblished in: Control Engineering Practice DOI: 1.116/j.conengprac.218.1.6 218 Docment Version:

More information

Adaptive Generation Method of OFDM Signals in SLM Schemes for Low-complexity

Adaptive Generation Method of OFDM Signals in SLM Schemes for Low-complexity Adaptive Generation Method of OFDM Signals in SLM Schemes for Low-compleity Kee-Hoon Kim, Hyn-Seng Joo, Jong-Seon No, and Dong-Joon Shin 1 ariv:128.6412v1 [cs.it] 31 Ag 212 Abstract There are many selected

More information

Implementation of SVPWM Based Three Phase Inverter Using 8 Bit Microcontroller

Implementation of SVPWM Based Three Phase Inverter Using 8 Bit Microcontroller International Jornal of Science, Engineering and Technology Research (IJSETR), Volme 4, Isse 6, Jne 015 Implementation of SVPWM Based Three Phase Inverter Using 8 Bit Microcontroller Prof. S. K. Patil

More information

Common-Mode Leakage Current Eliminated Photovoltaic Grid- Connected Power System for Domestic Distribution

Common-Mode Leakage Current Eliminated Photovoltaic Grid- Connected Power System for Domestic Distribution International Jornal of Engineering Research and Development e-issn: 78-067X, p-issn: 78-800X, www.ijerd.com Volme 10, Isse (Febrary 014), PP.106-111 Common-Mode eakage Crrent Eliminated Photovoltaic Grid-

More information

Modelling and Control of Photovoltaic Inverter Systems with Respect to German Grid Code Requirements

Modelling and Control of Photovoltaic Inverter Systems with Respect to German Grid Code Requirements 1 Modelling and Control of Photovoltaic Inverter Systems with Respect to German Grid Code Reqirements Tobias Nemann, Stdent Member, IEEE, István Erlich, Senior Member, IEEE Abstract The increasing share

More information

Frequency Synchronization Analysis in Digital lock-in Methods for Bio-impedance Determination

Frequency Synchronization Analysis in Digital lock-in Methods for Bio-impedance Determination .478/msr-4-47 Freqency ynchronization Analysis in Digital lock-in Methods for Bio-impedance Determination obert Brajkovič, Tomaž Žagar and Dejan Križaj niversity of Ljbljana, Faclty of Electrical Engineering,

More information

Switching the Shannon Switching Game

Switching the Shannon Switching Game Switching the Shannon Switching Game A Senior Project sbmitted to The Diision of Science, Mathematics, and Compting of Bard College by Kimberly Wood Annandale-on-Hdson, New York May, 2012 Abstract The

More information

XIV International PhD Workshop OWD 2012, October Lumped Parameter Model of a Resistance Spot Welding DC-DC converter

XIV International PhD Workshop OWD 2012, October Lumped Parameter Model of a Resistance Spot Welding DC-DC converter XIV International PhD Workshop OWD, 3 October Lmped Parameter Model of a Resistance Spot Welding DC-DC converter Martin Petrn, University of Maribor (prof. dr. Drago Dolinar, University of Maribor) Abstract

More information

SWITCHING TRANSIENT PHENOMENA IN POWER SYSTEMS AT THE 400 KV HIGH VOLTAGE UNLOADED LINE

SWITCHING TRANSIENT PHENOMENA IN POWER SYSTEMS AT THE 400 KV HIGH VOLTAGE UNLOADED LINE 8th WSEAS International onference on POWE SYSTEMS (PS 8), Santander, antabria, Spain, September 3-5, 8 SWITHING TANSIENT PHENOMENA IN POWE SYSTEMS AT THE 4 KV HIGH VOLTAGE UNLOADED LINE P. TUSALIU () M.

More information

Wireless Image Transmissions over Frequency Selective Channel Using Recent OFDMA Systems

Wireless Image Transmissions over Frequency Selective Channel Using Recent OFDMA Systems American Jornal of Comptation, Commnication and Control 2018; 5(1): 30-38 http://www.aascit.org/jornal/ajccc ISSN: 2375-3943 Wireless Image Transmissions over Freqency Selective Channel sing Recent OFDA

More information

Review Paper Geometric Configuration Optimization for Baseline Interferometry

Review Paper Geometric Configuration Optimization for Baseline Interferometry Research Jornal of Recent Sciences ISSN 2277-252 Vol. 2(5), 78-82, May (213) Res.J.Recent Sci. Reiew Paper Geometric Configration Optimization for Baseline Interferometry Abstract Aidin Gharahdaghi Amirkabir

More information

PDHonline Course L175J (6 PDH) GPS Surveying. Instructor: Jan Van Sickle, P.L.S. PDH Online PDH Center

PDHonline Course L175J (6 PDH) GPS Surveying. Instructor: Jan Van Sickle, P.L.S. PDH Online PDH Center PDHonline Corse L175J (6 PDH GPS Srveying Instrctor: Jan Van Sickle, P.L.S. 01 PDH Online PDH Center 57 Meadow Estates Drive Fairfax, VA 0306658 Phone & Fax: 7039880088 www.pdhonline.org www.pdhcenter.com

More information

Research on Three Phase Power Phase Locked Loop Technology. Qi-long ZHANG*, Li-xia ZHANG and Hong-xian GAO

Research on Three Phase Power Phase Locked Loop Technology. Qi-long ZHANG*, Li-xia ZHANG and Hong-xian GAO 07 International Conference on Energy, Environment and Sstainable Development (EESD 07) ISBN: 978--60595-45-3 Research on Three Phase Power Phase Locked Loop Technology Qi-long ZHANG*, Li-xia ZHANG and

More information

Performance Analysis of MIMO MC-DS/CDMA System Using Chaotic Spreading Sequence

Performance Analysis of MIMO MC-DS/CDMA System Using Chaotic Spreading Sequence Performance Analysis of IO C-DS/CDA System Using Chaotic Spreading Seqence V.Nagarajan and P. Dananjayan 1 Abstract This paper presents a novel chaotic spreading seqence for mltiple inpt mltiple otpt mlti-carrier

More information

Two Control Strategies for Aggregated Wind Turbine Model with Permanent Magnet Synchronous Generator

Two Control Strategies for Aggregated Wind Turbine Model with Permanent Magnet Synchronous Generator Eropean Association for the Development of Renewable Energies, Environment and Power Qality (EA4EPQ) International Conference on Renewable Energies and Power Qality (ICREPQ ) Santiago de Compostela (Spain),

More information

External control electronics for the SYDFE1 control of A10VSO axial piston pumps Analogue amplifier, configurable

External control electronics for the SYDFE1 control of A10VSO axial piston pumps Analogue amplifier, configurable External control electronics for the SYDFE control of A0VSO axial piston pmps Analoge amplifier, configrable RE 04/0.0 Replaces: 08.06 /8 Type VT 504 From Component series 5 H685_d Table of contents Contents

More information

RAPIDLY increasing energy demand from industrial and

RAPIDLY increasing energy demand from industrial and IEEE TRANSACTIONS ON INDUSTRIAL ELECTRONICS, VOL. 60, NO. 4, APRIL 2013 1335 Parallel PI Voltage H Crrent Controller for the Netral Point of a Three-Phase Inverter Tomas Hornik, Member, IEEE, and Qing-Chang

More information

External control electronics for the SYDEF1 adjustment of the A10VSO axial piston pump

External control electronics for the SYDEF1 adjustment of the A10VSO axial piston pump External control electronics for the SYDEF adjstment of the A0VSO axial piston pmp RE 04/0.0 Replaces: 04 /0 Type VT 504-X/... Component series X H09_d Table of contents Content Page Featres Ordering code

More information

Accurate Absolute and Relative Power Measurements Using the Agilent N5531S Measuring Receiver System. Application Note

Accurate Absolute and Relative Power Measurements Using the Agilent N5531S Measuring Receiver System. Application Note Accrate Absolte and Relative ower easrements Using the Agilent N5531S easring Receiver System Application Note Table of Contents Introdction... N5531S easring Receiver System...3 N553A/B sensor modle...3

More information

Image and Multidimensional Signal Processing

Image and Multidimensional Signal Processing Image and Mltidimensional Signal Processing Professor William off Dept of Electrical Engineering &Compter Science Image and Mltidimensional Signal Processing http://inside.mines.ed/~whoff/ Deconoltion

More information

Interactive tools can be used to complement books and

Interactive tools can be used to complement books and » LECTURE NOTES Interactive Learning Modles for PID Control Using Interactive Graphics to Learn PID Control and Develop Intition JOSÉ LUIS GUZMAN, KARL JOHAN ÅSTRÖM, SEBASTIAN DORMIDO, TORE HÄGGLUND, MANUEL

More information

Practical solutions of numerical noise problems at simulation of switching transients to ship electric power systems

Practical solutions of numerical noise problems at simulation of switching transients to ship electric power systems Practical soltions of nmerical noise problems at simlation of switching transients to ship electric power systems J. PROUSALIDIS 1 S. PERROS 2 I.K.HATZILAU 3 N. HATZIARGYRIOU 4 1 NATIONAL TECHNICAL UNIVERSITY

More information

ANALYSIS OF THE EFFECT OF CALIBRATION ERROR ON LIGHT FIELD SUPER- RESOLUTION RENDERING

ANALYSIS OF THE EFFECT OF CALIBRATION ERROR ON LIGHT FIELD SUPER- RESOLUTION RENDERING 04 IEEE International Conference on Acostic, Speech and Signal Processing (ICASSP) ANALYSIS OF THE EFFECT OF CALIBRATION ERROR ON LIGHT FIELD SUPER- RESOLUTION RENDERING Kang-Ts Shih, Chen-Y Hs, Cheng-Chieh

More information

External control electronics for the SYDFE1 control of the A10VSO axial piston variable displacement pump

External control electronics for the SYDFE1 control of the A10VSO axial piston variable displacement pump + (0)0 9999 enqiries@hyqip.co.k www.hyqip.co.k/web/index External control electronics for the SYDFE control of the A0VSO axial piston variable displacement pmp Type VT 0 RE 0 Edition: 0-0 Replaces:. Component

More information

W-CDMA for UMTS Principles

W-CDMA for UMTS Principles W-CDMA for UMTS Principles Introdction CDMA Backgrond/ History Code Division Mltiple Access (CDMA) Why CDMA? CDMA Principles / Spreading Codes Mlti-path Radio Channel and Rake Receiver Problems to Solve

More information

Extremum Tracking in Sensor Fields with Spatio-temporal Correlation

Extremum Tracking in Sensor Fields with Spatio-temporal Correlation The Military Commnications Conference - Unclassified Program - Networking Protocols and Performance Track Extremm Tracking in Sensor Fields with Spatio-temporal Correlation Prithwish Bas Raytheon BBN Technologies

More information

Frequency Domain Artificial Reverberation using Spectral Magnitude Decay

Frequency Domain Artificial Reverberation using Spectral Magnitude Decay sing Spectral Magnitde Decay Earl Vickers 1, Jian-Lng (Larry) W 2, Praveen Gobichettipalayam Krishnan 3, and Ravirala Narayana Karthik Sadanandam 4 1 The Sond Gy, Inc., Seaside, CA 93955, USA sfx@sfxmachine.com

More information

SHARING OF SPECTRUM USED BY SATELLITE SYSTEMS

SHARING OF SPECTRUM USED BY SATELLITE SYSTEMS SHARING OF SPECTRUM USED BY SATELLITE SYSTEMS HOW SATELLITE SYSTEMS SHARE SPECTRUM AMONG THEMSELVES, AND WITH TERRESTRIAL SYSTEMS Jose Albqerqe Chief, Satellite Division FCC May 17, 2017 Jly 20, 2015 Sharing

More information

SIDES AND ANGLES. Getting Ready. The Activity. Overview. Introducing

SIDES AND ANGLES. Getting Ready. The Activity. Overview. Introducing SIDES AND ANGLES Getting Ready What Yo ll Need Color Tiles, 50 per pair Color Tile grid paper, several sheets per pair, page 90 Crayons Overhead Color Tiles and/or Color Tile grid paper transparency (optional)

More information

Simulation of Leakage current and THD Compensation in a Large PV system

Simulation of Leakage current and THD Compensation in a Large PV system Simlation of Leakage crrent and THD Compensation in a Large system Mohamed Yossef Tarnini 1, abil Abdel-Karim and Khaled Chahine 3 1,, 3 Beirt Arab University, Electrical and Compter Department, Power

More information

IQI Problem in Discrete Sine Transform Based FDMA Systems

IQI Problem in Discrete Sine Transform Based FDMA Systems IQI Problem in Discrete Sine Transform Based FDMA Systems BASHAR ALI FAREA AND NOR SHAHIDA MOHD SHAH Department of Commnications Engineering University Tn hssein Onn Malaysia Parit raja, Bat pahat, Johor

More information

AN ENERGY-AWARE AUCTION FOR HYBRID ACCESS IN HETEROGENEOUS NETWORKS UNDER QOS REQUIREMENTS

AN ENERGY-AWARE AUCTION FOR HYBRID ACCESS IN HETEROGENEOUS NETWORKS UNDER QOS REQUIREMENTS AN ENERGY-AWARE AUCTION FOR HYBRID ACCESS IN HETEROGENEOUS NETWORKS UNDER QOS REQUIREMENTS Fei Shen, Pin-Hsn Lin +, Lca Sanginetti, Meroane Debbah, Edard A. Jorswieck + Large Networks and System Grop (LANEAS,

More information

FIR Filter Design Using The Signed-Digit Number System and Carry Save Adders A Comparison

FIR Filter Design Using The Signed-Digit Number System and Carry Save Adders A Comparison (IJAA) International Jornal of Advanced ompter cience and Applications, Vol. 4, No., 03 FIR Filter Design Using The igned-digit Nmber ystem and arry ave Adders A omparison Hesham Altwaijry ompter Engineering

More information

Time Delay Estimation of Stochastic Signals Using Conditional Averaging

Time Delay Estimation of Stochastic Signals Using Conditional Averaging MEASUREMENT 11, Proceedings of the 8th International Conference, Smolenice, Slovakia Time Delay Estimation of Stochastic Signals Using Conditional Averaging 1 A. Kowalcyk, 1 R. Hans, 1 A. Slachta 1 Resow

More information

Automatic Design of Both Topology and Tuning of a Common Parameterized Controller for Two Families of Plants using Genetic Programming

Automatic Design of Both Topology and Tuning of a Common Parameterized Controller for Two Families of Plants using Genetic Programming Atomatic Design of Both Topology and Tning of a Common Parameterized Controller for Two Families of Plants sing Genetic Programming Jessen Y Genetic Programming Inc., Los Altos, California jy@cs.stanford.ed

More information

Massive MIMO for Crowd Scenarios: A Solution Based on Random Access

Massive MIMO for Crowd Scenarios: A Solution Based on Random Access Massive MIMO for Crowd Scenarios: A Soltion Based on Random Access Jesper H. Sørensen, Elisabeth de Carvalho and Petar Popovski Aalborg University, Department of Electronic Systems, Fredrik Bajers Vej

More information

Multi-Cell Switch-Mode Power Amplifier with Closed-Loop Hybrid Output Voltage Filter

Multi-Cell Switch-Mode Power Amplifier with Closed-Loop Hybrid Output Voltage Filter PIM Erope 05, 9 May 05, remberg, Germany Mlti-ell Switch-Mode Power Amplifier with losed-oop Hybrid Otpt Voltage Filter H.. Votzi, H. Ertl niversity of echnology Vienna, Institte of Energy Systems and

More information

External control electronics for the SYDFE1 control of the A10VSO axial piston variable displacement pump

External control electronics for the SYDFE1 control of the A10VSO axial piston variable displacement pump External control electronics for the SYDFE control of the A0VSO axial piston variable displacement pmp Type VT 504 RE 04 Edition: 0-06 Replaces:. Component series X Analog, Ero-card format Part of the

More information

Equivalence between Fuzzy PID Controllers and Conventional PID Controllers

Equivalence between Fuzzy PID Controllers and Conventional PID Controllers applied sciences Article Eqivalence between Fzzy PID Controllers Conventional PID Controllers Chn-Tang Chao, Nana Starna, Jing-Shian Chio * Chi-Jo Wang Department of Electrical Engineering, Sorn Taiwan

More information

ON THE DETECTION OF NON-STATIONARY SIGNALS IN THE MATCHED SIGNAL TRANSFORM DOMAIN

ON THE DETECTION OF NON-STATIONARY SIGNALS IN THE MATCHED SIGNAL TRANSFORM DOMAIN ON THE DETECTION OF NON-STATIONARY SIGNALS IN THE MATCHED SIGNAL TRANSFORM DOMAIN Andrei Anghel Gabriel Vasile Cornel Ioana Rems Cacovean Silvi Ciochina Grenoble INP / CNRS, Grenoble-Image-sPeech-Signal-Atomatics

More information

Phase Rotation Shift Keying for Low Power and High Performance WBAN In-body systems

Phase Rotation Shift Keying for Low Power and High Performance WBAN In-body systems Phase Rotation Shift Keying for Low Power and High Performance WBAN In-body systems Jng-Yeol Oh *, Jeong-Ki Kim, Hyng-Soo Lee *, Sang-Sng Choi *, Dong S. Ha Dept. Of Electrical and Compter Engineering

More information

Improvement in direction discrimination: No role for eye movements

Improvement in direction discrimination: No role for eye movements Perception & Psychophysics 1985, 38 (6), 554-558 Improvement in direction discrimination: No role for eye movements WILLIAM KOSNIK, JOHN FIKRE, and ROBERT SEKULER Northwestern University, Evanston, Illinois

More information

Flexible Full-duplex Cognitive Radio Networks by Antenna Reconfiguration

Flexible Full-duplex Cognitive Radio Networks by Antenna Reconfiguration IEEE/CIC ICCC Symposim on Wireless Commnications Systems Flexible Fll-dplex Cognitive Radio Networks by Antenna Reconfigration Liwei Song Yn Liao and Lingyang Song State Key Laboratory of Advanced Optical

More information

Uploading Images & Supporting Text Guidelines for applications to: BSc Immersive Systems Design

Uploading Images & Supporting Text Guidelines for applications to: BSc Immersive Systems Design Uploading Images & Spporting Text Gidelines for applications to: BSc Immersive Systems Design How is my application assessed? Stage 1: Admissions staff from the programme yo have applied to will view the

More information

Optimized Cosecant Patterns from Arrays of Discrete Sources

Optimized Cosecant Patterns from Arrays of Discrete Sources International Jornal of Compter Applications (975 8887) Volme 3 No. 8, March 25 Optimized Cosecant Patterns from Arrays of Discrete Sorces M. Chandrasekhar Research Scholar, Dept. of Electronics and Commnication

More information

Study of Color Quality Uniformity in Digital Dry Toner Electro-photographic Printing

Study of Color Quality Uniformity in Digital Dry Toner Electro-photographic Printing International Jornal of Modern Commnication Technologies & Research (IJMCTR) ISSN: 2321-0850, Volme-2, Isse-9, September 2014 Stdy of Color Qality Uniformity in Digital Dry Toner Electro-photographic Printing

More information

High-Throughput Low-Complexity Successive- Cancellation Polar Decoder Architecture using One s Complement Scheme

High-Throughput Low-Complexity Successive- Cancellation Polar Decoder Architecture using One s Complement Scheme JOURNAL OF SEMICONDUCTOR TECHNOLOGY AND SCIENCE, VOL.5, NO.3, JUNE, 5 ISSN(Print) 598-657 http://dx.doi.org/.5573/jsts.5.5.3.47 ISSN(Online) 33-4866 High-Throghpt Low-Complexity Sccessive- Cancellation

More information

Comparison of Current Control Strategies for Four-Leg Shunt Active Power Filter in Matlab-Simulink

Comparison of Current Control Strategies for Four-Leg Shunt Active Power Filter in Matlab-Simulink Kamil ANTONIEWICZ, Marisz MALINOWSKI Faclty of Electrical Engineering, Warsaw University of Technology, l. Koszykowa 75-66 Warsaw Comparison of Crrent Control Strategies for For-Leg Shnt Active Power Filter

More information

Pixel race. Resolution. f/2.8 For a 0.8 µm pixel pitch, the f-number needs to be lowered to f/2.0, according to the definition on the previous slide.

Pixel race. Resolution. f/2.8 For a 0.8 µm pixel pitch, the f-number needs to be lowered to f/2.0, according to the definition on the previous slide. Pixel race Sense and sensitivity 29 International Image Sensor Workshop Mats Wernersson and Henrik Eliasson Not a race for more pixels: it s a race for smaller pixels! Why do pixels shrink? Becase we can!

More information

William H. Weedon t, Weng Cho Chew and Chad A. Ruwet Department of Electrical and Computer Engineering University of Illinois, Urbana, IL 61801

William H. Weedon t, Weng Cho Chew and Chad A. Ruwet Department of Electrical and Computer Engineering University of Illinois, Urbana, IL 61801 A STEP-FREQUENCY RADAR SYSTEM FOR BROADBAND MCROWAVE NVERSE SCATTERNG AND MAGNG NTRODUCTON William H. Weedon t, Weng Cho Chew and Chad A. Rwet Department of Electrical and Compter Engineering University

More information

A Mathematical Model for Joint Optimization of Coverage and Capacity in Self-Organizing Network in Centralized Manner

A Mathematical Model for Joint Optimization of Coverage and Capacity in Self-Organizing Network in Centralized Manner 2012 7th International ICST Conference on Commnications and Networking in China (CHINACOM) A Mathematical Model for Joint Optimization of Coverage and Capacity in Self-Organizing Network in Centralized

More information

DRAFT Proceedings of IMECE ASME International Mechanical Engineering Congress & Exposition Washington, D.C., November 15-21, 2003

DRAFT Proceedings of IMECE ASME International Mechanical Engineering Congress & Exposition Washington, D.C., November 15-21, 2003 RAFT Proceeings of IMECE 3 3 ASME International Mechanical Engineering Congress & Exposition Washington,.C., November 5-, 3 IMECE3-4743 PREICTIVE PRESSRE CONTROL OF A MONOPROPELLANT POWERE ACTATOR Bobby

More information

Mohammed.H. Ali. Figure 1 Scheme of the system with two-level inverter and load [3].

Mohammed.H. Ali. Figure 1 Scheme of the system with two-level inverter and load [3]. Vol.1 No.1, 2017 مجلد 1 العدد 2017 1 Mathematical Driving Model of Three Phase, Two Level Inverter by (Method of Interconnected Sbsystem) Mohammed.H. Ali Electrical power and machines Engineering Department

More information

4G LTE PRODUCT CATALOGUE

4G LTE PRODUCT CATALOGUE 4G LTE PRODUCT CATALOGUE AO100/4G/SMA Otdoor GSM/LTE Colinear Antenna AO100/4G/SMA/LL_15-0 Otdoor GSM/LTE Colinear Antenna SMA (Male) - options available on reqest 5m RG58 - other lengths are available

More information

HIGH ACCURACY FILTER TRANSMISSION MEASUREMENT FOR DETERMINATION OF THE DETECTION EFFICIENCY CALIBRATION OF Si-SPAD DETECTORS

HIGH ACCURACY FILTER TRANSMISSION MEASUREMENT FOR DETERMINATION OF THE DETECTION EFFICIENCY CALIBRATION OF Si-SPAD DETECTORS 10th International DM Baltic Conference "INDUSTRIL ENGINEERING" 1-13 May 015, Tallinn, Estonia HIGH CCURCY FILTER TRNSMISSION MESUREMENT FOR DETERMINTION OF THE DETECTION EFFICIENCY CLIBRTION OF Si-SPD

More information

A Low Power Capacitive Interface IC with Automatic Parasitic Offset Calibration using Dual-Range Digital Servo Loop

A Low Power Capacitive Interface IC with Automatic Parasitic Offset Calibration using Dual-Range Digital Servo Loop IDE Jornal of Integrated ircits and Systems, VOL 02, No.1, pril 2016 Low Power apacitive Interface I with tomatic Parasitic Offset alibration sing Dal-Range Digital Servo Loop Yeongjin Mn, Ynjong Park,

More information

Aalborg Universitet. Published in: I E E E Antennas and Wireless Propagation Letters

Aalborg Universitet. Published in: I E E E Antennas and Wireless Propagation Letters Aalborg Universitet Throghpt Modeling and Validations for MIMO-OTA Testing with Arbitrary Mltipath Chen Xiaoming; Fan Wei; Hentilä Lassi; Kyösti Pea; Pedersen Gert F. Pblished in: I E E E Antennas and

More information

Lecture - 10 Image Enhancement in the Frequency Domain

Lecture - 10 Image Enhancement in the Frequency Domain Lectre - Image Enhancement in the Freqenc Domain Cosimo Distante Backgrond An fnction that periodicall repeats itself can be epressed as the sm of sines and/or cosines of different freqencies each mltiplied

More information

Optimisation for the Telecommunication Industry using Quantum Annealing

Optimisation for the Telecommunication Industry using Quantum Annealing Optimisation for the Telecommnication Indstry sing Qantm Annealing Catherine White, Tdor Popa BT Applied Research Plantagenet SYSTEMS BT Adastral Park http://atadastral.co.k/abot/bt-labs/ HARD PROBLEMS

More information

Study on Performance of Non-Linear Reactive Power Compensation by Using Active Power Filter under Load Conditions

Study on Performance of Non-Linear Reactive Power Compensation by Using Active Power Filter under Load Conditions http://dx.doi.org/10.5755/j01.eee.22.1.14098 ELEKTRONIKA IR ELEKTROTECHNIKA, ISSN 1392-1215, VOL. 22, NO. 1, 2016 Stdy on Performance of Non-Linear Reactive Power Compensation by Using Active Power Filter

More information

Automatic Synthesis of Both the Topology and Tuning of a Common Parameterized Controller for Two Families of Plants using Genetic Programming

Automatic Synthesis of Both the Topology and Tuning of a Common Parameterized Controller for Two Families of Plants using Genetic Programming Atomatic Synthesis of Both the opology and ning of a Common Parameterized Controller for wo Families of Plants sing Genetic Programming Martin A. Keane Econometrics Inc. Chicago, Illinois makeane@ix.netcom.com

More information

An Accurate Method to Determine the Muzzle Leaving Time of Guns

An Accurate Method to Determine the Muzzle Leaving Time of Guns Sensors & Transdcers 4 by IFSA Pblishing, S. L. http://www.sensorsportal.com An Accrate Method to Determine the Mzzle Leaving Time of Gns H. X. Chao, M. Go, H. S. Hang, X. Y. Gao, S. L. Li, W. B. D Northwest

More information

Chapter 5 Design of a Digital Sliding Mode Controller

Chapter 5 Design of a Digital Sliding Mode Controller Chapter 5 Design of a Digital Sliding Mode Controller In chapter 4 the linear controllers PID and RST are developed to reglate the Bck converter pt voltage. Frthermore based on the PID and RST control

More information

PowPak 20 A Relay Module

PowPak 20 A Relay Module PowPak 20 A Relay Modle The PowPak 20 A Relay Modle is a radio-freqency (RF), receptacle switching soltion that is capable of controlling 20 A receptacles based on inpt from Pico wireless controls and

More information

Navegação e Determinação de Atitude em Aeronaves Através de Múltiplos Receptores GNSS

Navegação e Determinação de Atitude em Aeronaves Através de Múltiplos Receptores GNSS Navegação e Determinação de Atitde em Aeronaves Através de Múltiplos Receptores GNSS Afonso Rodriges Gonçalves Institto Sperior Técnico, Universidade Técnica de Lisboa Avenida Rovisco Pais, 1-149-1 Lisbon,

More information

ANALYSIS O VIENNA RECTI IER

ANALYSIS O VIENNA RECTI IER Electrical Power Qality and Utilisation, Jornal Vol. XI, No., 005 ANALYSIS O VIENNA RECTI IER Grzegorz RADOMSKI Technical University of Kielce, Poland Smmary: It is common to find the inexpensive bt robst

More information

Telematics Solutions. Solutions. Telematics Solutions.

Telematics Solutions. Solutions. Telematics Solutions. Telematics Soltions Soltions Telematics Soltions www.cti-int.com Telematics Telematics... Telematics is defined as machine-to-machine commnication, whereby a device plgged into the on-board diagnostics

More information

Design and Implementation of Multilevel QAM Band pass Modems (8QAM, 16QAM, 32QAM and 64QAM) for WIMAX System Based on SDR Using FPGA

Design and Implementation of Multilevel QAM Band pass Modems (8QAM, 16QAM, 32QAM and 64QAM) for WIMAX System Based on SDR Using FPGA International Jornal of Soft Compting and Engineering (IJSCE) ISSN: 223-237, Volme-4, Isse-, March 24 esign and Implementation of Mltilevel AM Band pass Modems (8AM, 6AM, 32AM and 64AM) for WIMAX System

More information

current-injection Josephson ~atch emp~oying a single-flux quantum. ~

current-injection Josephson ~atch emp~oying a single-flux quantum. ~ crrent-injection Josephson atch empoying a single-flx qantm. Jn'ichi Sone and Toshishige Yamada Microelectronics Research Laboratories NEC Corporation Miyazaki 4-1-1. Miyamae-k. Kawasaki. Kanagawa 213.

More information

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

OPTI-502 Optical Design and Instrumentation I John E. Greivenkamp Homework Set 11 Fall, 2017 Assigned: 11/8/17 Lectre 23 De: 11/15/17 Lectre 25 11-1) A teleconverter is an optical component that is placed between or camera lens and camera to increase the focal length of the lens. Common varieties

More information

SIMSEN : A MODULAR SOFTWARE PACKAGE FOR THE ANALYSIS OF POWER NETWORKS AND ELECTRICAL MACHINES

SIMSEN : A MODULAR SOFTWARE PACKAGE FOR THE ANALYSIS OF POWER NETWORKS AND ELECTRICAL MACHINES SIMSEN : A MODULA SOFTWAE PACKAGE FO THE ANALYSIS OF POWE NETWOKS AND ELECTICAL MACHINES Dr A. Sapin, Prof. Dr J.J. Simond Swiss Federal Institte of Technology Electrical Engineering Dept CH1015 EcblensLasanne

More information

LBC 3210/00 Line Array Indoor/Outdoor Loudspeaker

LBC 3210/00 Line Array Indoor/Outdoor Loudspeaker Commnications Systems LBC 3210/00 Line Array Indoor/Otdoor Lodspeaker LBC 3210/00 Line Array Indoor/Otdoor Lodspeaker www.boschsecrity.com Extended listening area Excellent intelligibility of speech and

More information

Preamble Design and Coarse Synchronization Using CAZAC Sequence for Uplink Cable Modem

Preamble Design and Coarse Synchronization Using CAZAC Sequence for Uplink Cable Modem Pamble Design and Coarse Synchronization Using Seqence for Uplink Cable Modem Yongje Kim ), Jnseo Lee ), Hynj Ha ), Engdon Lee 2), Yn-Jeong Song 2), Wangrok Oh ), Whanwoo Kim ) Div. of Electronic Engineering,

More information

Field-oriented control of five-phase induction motor with open-end stator winding

Field-oriented control of five-phase induction motor with open-end stator winding ARCHIVES OF ELECTRICAL ENGINEERING VOL. 6(3), pp. 39-41 (216) DOI 1.11/aee-216-29 Field-oriented control of five-phase indction motor with open-end stator winding JACEK LISTWAN, KRZYSZTOF PIEŃKOWSKI Wroclaw

More information

In-band Full Duplex Radio: A survey

In-band Full Duplex Radio: A survey In-band Fll Dplex Radio: A srvey Ashish Kmar Rao Research Scholar, Department of Electronics Engineering Institte of Engineering and Technology Lcknow, UP, India Rajiv Kmar Singh Assistant Professor Department

More information