REAL TIME COMPUTATION OF DIFFERENCE EQUATIONS

Size: px
Start display at page:

Download "REAL TIME COMPUTATION OF DIFFERENCE EQUATIONS"

Transcription

1 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 Abstract A system for real time comptation of difference eqations is presented. The prototype was implemented with a PIC18F458 microcontroller; two applications are presented. First, by means of basic fnctions: adder, delay and attenator, a complex adio processor was achieved. The second application, a digital control of a third order plant is implemented. The analog otpts are derived from a plse width otpt of PWM signals and then an external A/D converter was not reqired. The program was written in C langage. As a reslt, we get a compact device programmable for adio processing and control. 1. Introdction Some adio effects can be achieved by sperposition of the original signal and its echo; an echo is a delayed version of the original signal. By this simple processing we get some very sefl effects sch as reverberation and different inds of echoes. In the second application a digital control of an analog plant is presented. Initially we made a stability analysis of the plant to be controlled and an analog compensator is proposed. Then an eqivalent digital control is designed. A difference eqation modeled both, the adio processing and the digital control. The difference eqation mst be compted in real time. Matlab control toolbox was sed as a theoretical spport; experimental reslts were also simlated in Matlab and compared. The microcontroller system presented is sed for control and adio practices. 2. System Organization Figre 1 shows the organization of the prototype. The microcontroller acqires information throgh an adio amplifier that is sed for inpt signal conditioning. The Microchip PIC18F458 [1] was sed in this application; it provides the basic elements of a compter, lie CPU, memory for program and data, inpt/otpt ports and additionally provides a 1 bits AD converter, a 1 bits PWM modle and a CCP modle; CCP is sed to tae samples of the inpt channel, with a constant sampling period. An external memory was sed to implement large delays. An analog otpt signal is prodced by means of a low pass filter (LPF) and an adio amplifier. S/H Sampling Freqency Generator LPF and Adio Amplifier Conversion A/D. MICROCONTROLLER PIC18F458 Adio Amplifier D/A Conversion (PWM) Figre 1. Prototype Organization Resident program 2.1 RAM and Microcontroller Fnctions External RAM In this section, a first in-first ot strctre (FIFO) and some microcontroller fnctions are described: 1) A/D converter, 3) Captre/Compare/PWM (CCP) modle and 4) Resident program. To generate long time delays, a FIFO implemented in an external RAM was inclded. The interface between the microcontroller and FIFO is implemented by for variables in the program: two pointers (FIFO and L) and two registers (IREG and OREG). FIFO pointer contains the actal address to read and write to the FIFO. The L register indicates the length of the FIFO. The IREG is sed to contain the last read data; and the OREG mst contain the data to be written. Two operations are applied Page 137 ISBN:

2 to the FIFO strctre: RESET and SAVE. With a RESET operation, the pointers are left in its initial vales: FIFO and Llength of the FIFO. The SAVE operation is exected at three consective steps: first, a data is fetched from RAM to IREG; second, the data in OREG is written to RAM; and third the FIFO pointer is incremented. When the FIFO pointer reaches the vale of register L, a cero vale mst be loaded to the FIFO pointer. The 1 bits A/D converter is preceded by a Sample and Hold (S/H) modle controlled by the GO/DONE bit in a special fnction register. The S/H is normally in the sampling state, bt when the GO bit taes tre vale, the S/H goes to the Holding state while the A/D is completing a conversion. When the A/D conversion is done the DONE bit is set and the S/H retrns to the sampling state. The CCP modle was configred in the compare mode to generate a fixed time interval for sampling and CPU interrption, simltaneosly. Now, consider the PWM modle. The PWM freqency is given with a 1 bit nmber. The analog information is carried in the plse width of the PWM signal, and is given as a 1 bit nmber too. A low pass filter (LPF) recovers the analog information from the PWM signal. The LPF mst have the bandwidth of the adio or control system and a ctoff freqency less than the PWM freqency [2]. Finally, the resident program configres the system at reset and remains waiting for interrpt events. The interrpt service program reads in the samples from the analog channel and save samples in the FIFO. At the service time all comptations are done and the reslting vale are otptted. This program was implemented in C langage [3, 4] 2.2 Using External Memory The prototype is configred to drive p to 16K bytes of external RAM. PORTD is sed as a bidirectional data bs. The address bits are generated with 6 bits of PORTB and 8 bits of a Gal s implemented binary conter. PORTE generates the control signals (Write Enable, Chip Select and Otpt Enable). The memory is organized in 64 pages, with 256 samples per page. The page nmber is given at PORTB, and the conter rides throgh each page. The delay corresponding to a page corresponds to the timeof 256 samples. 3 Application 1: Adio Processor The hman ear detects easily the echo [5] when the sond bonces to a sfficient distance to generate a delay of approximately 58 ms. In order to simlate the echo, the FIFO strctre is sed; the sampled signal retrieved from the FIFO is a echo signal (delayed version of the original signal). Sampled data is stored in the external memory (FIFO) dring the interrpt service rotine to the rate of the sampling freqency. In this way, the delay obtained by means of the FIFO is obtained mltiplying the length of the FIFO by the sampling period. Then, if there were in se a memory of 16K bytes and the sampling period is of 5 s, the delay will be.8192 seconds. The amont of delay is given by N, and corresponds to the nmber of pages of the external memory assigned to save the samples. To create applications, a bloc diagram is written with the desired processing. From the diagram the eqations to be inclded in the resident code are obtained. In the crrent stage of development of the prototype, two adio processing applications were implemented and are presented in next sections. 3.1 Echo The bloc diagram in Figre 2 shows ors first example of processing. Adding the crrent adio signal e to a delayed version, the effect of an echo signal is generated: y e + (1) This eqation is introdced in the resident code, given in a simplified form in Table 1. The parameter N corresponds to the nmber of samples or capacity of the external RAM tilized, and mst be adjsted to generate the desired effect. As an example of the reslts of a Matlab simlation, the effect of N1 (x256) is shown in Figre 3. In the pper graph we see the first 35 samples of an adio signal, and in the lower graph the same signal is shown shifted by 256 samples. Additionally, Matlab reprodces the sond signal in the Personal Compter and it can be compared with the prototype. e Z -N + Figre 2.Echo y Page 138 ISBN:

3 Pass Action 1. Define initial conditions: (). 2. Reset Interrpt Reqest Flip-Flop (IRQFF) Reset Over rn Flip-Flop (OVRFF) 3. Set Enable Interrpt Flip-Flop (EIFF) 4. If OVRFF 1 {Process is halted}; else wait for an interrpt. Interrpt Service Rotine (ISR): 5. Reset IRQFF 5. y < e + 6. Send y to D/A 7. If IRQFF1 {OVRFF1;} 8. EXIT Table 1. Difference Eqation for echo Comptation: y e Pass Action 1. Define initial conditions: (). 2. Reset Interrpt Reqest Flip-Flop (IRQFF) 3. Set Enable Interrpt Flip-Flop (EIFF) 4. If OVRFF 1 {Process is halted}; else wait for an interrpt. Interrpt Service Rotine (ISR): 5. Reset IRQFF 5. x y e + >> 1 + >> 2 e + >> 1 + >> 2 + >> 3 6. Send y to D/A 7. If IRQFF1 {OVRFF1;} 8. EXIT Table 2. Difference Eqation for reverberation: y G * x N + H * Figre 3 Matlab simlation: Original and echo signals 3.2 Reverberation To obtain reverberation, in Figre 4, the echo signal is attenated and fed bac to the inpt stage to generate a damping effect [6, 7, 8]. At the otpt stage the original signal is added with the damped echo to generate reverberation. The parameters G and H given in (2) and (3) are adjsted for a desired effect. The difference eqation to be compted is given in (2). y G * x N + H * The parameters G and H are given at eqations (3). The mltipliers: 2-1, 2-2, 2-3, are sed to mae the calclations shifting rather than floating point arithmetic. (2) G H (3) e x G + + H Z -N Figre 4.Reverberation y The eqations (4, 5) are sed for reverberation in C langage notation. In these expressions, right shifting of 1, 2 and 3 places is sed to achieve the reslts for reverberation. The program is shown in Table 2. x e + >> 1 + >> 2 (4) y e + >> 1 + >> 2 + >> 3 (5) Page 139 ISBN:

4 Figre 5 shows the reslts of a Matlab simlation, with N1. In the pper graph we see the first 35 samples of an adio signal; the middle graph shows the echo signal shifted by 256 samples and finally, in the lower graphs the attenated echo signal. Additionally, Matlab reprodces the sond signal in the Personal Compter and it can be compared with the prototype The stability analysis, withot a compensator, G C (s)1, indicates an oscillatory system: 21 o of phase margin (PM), 12.5 Decibels of gain margin (GM), 55% overshoot at.7 ms and a 4.14 ms of settling time. The continos proportional integral (PI) compensator given at eqation (7) garantees a very stable system with 81.8o of phase margin (PM), 52.5 Decibels of gain margin (GM), 7% overshoot at 5 ms and 176ms of settling time..1s +. 1 G C ( s) s (7) R(t) + _ E(t) G C (s) U(t) G P (s) Y(t) a) Continos control Figre 5.Matlab simlation: original, echo and damped echo signals. R(t) E() + _ G C (z) U() G P (s) Y(t) 4 Application 2: Digital compensator Figre (6a) shows a continos feedbac control system that can be bilt sing analog electronics. The continos controller can be replaced by a digital controller as shown in figre (6b), that performs the same control tas as the continos controller. The basic difference between these controllers is that the digital system operates on discrete signals (or samples of the sensed signal) rather than on continos signals. In this section an approach to the design of a digital control is presented sing the Matlab control tool box [1, 11]. First, a stability analysis evalates the continos plant system, withot compensation; next, the addition of a continos control is proposed. Finally an eqivalent digital control is fond to replace the continos control. The plant to be controlled is given by the third order continos transfer fnction in eqation (6). ( s) s where: ( 1+ s T ) (1 + s T ) G P (6) 1 T sec; 2 T sec. b) Digital control system Figre 6 Feedbac control systems The discrete eqivalent to the continos transfer fnction (7), sing 1 ms of sampling period and the zero order hold method is given in Eqation (8). U ( z).1.1z G C ( z) (8) E( z) 1 z The corresponding bloc diagram for G C (z) is shown in figre 7. The difference eqation to the discrete transfer fnction (8) is given at eqation (9); this difference eqation mst be evalated in real time as shown in an a simplified form in the program in Table 3. (9) +.1e. 1e The step response for both, the continos and discrete compensated systems are shown in figre 8; a Page 14 ISBN:

5 Tstin discrete model was sed to simlate the continos plant. e().1 + z -1 x 1 ( () period of the A/D converter and it determines that the bandwidth (BW) of the low pass filter in the otpt. BW mst be less than 4 Hz for adio processing and 1 Hz for the digital compensator. Interfacing 16 K RAM needs 14 bits address bs and 8 bit data bs. The address bs is generated by means of 6 bits of the port B of the µc (of RB7 to RB2) and 8 bits of a binary conter implemented with a GAL22V1D. The data transfer between microcontroller and memory is controlled by means of a program implementing a FIFO strctre Step Response Figre 7 Bloc diagram for G C (z) Pass Actions 1. Define initial conditions: x 1 (). 2. Reset Interrpt Reqest Flip-Flop (IRQFF) 3. Set Enable Interrpt Flip-Flop (EIFF) 4. If OVRFF 1 {Process is halted}; else wait for an interrpt. Interrpt Service Rotine (ISR): 5. Reset IRQFF 5. <.1 * e + x 1 6. Send to D/A 7. x 1 < -.1 * e If IRQFF1 {OVRFF1;} 13. EXIT Table 3. Difference Eqation for Digital Control Comptation: +.1e. 1e 5 Prototype Implementation The prototype (Fig. 9) consists of five elements: PIC18F458, RAM, GAL22V1D and two adio amplifiers (Figre 4). Additionally, 9V-DC is the power spply to the adio amplifiers and with a 5V DC voltage reglator the microcontroller (µc) and RAM are spplied. The PIC18F458 of Microchip is the microcontroller sed in this application. Inside the PIC, an A/D converter preceded by a sample and hold (S/H) amplifier is configred with niform sampling period of 51.2 microseconds (µs) for adio processing and 1 ms for the digital compensator. Then for real time signal processing, the processing the mst be achieved in the interval among two samples. The D/A conversion are realized by means of the PWM modle. The PWM period is the same of sampling Amplitde Time (sec) Figre 8 Matlab simlation: step responses for continos and digital compensated systems. 6 Reslts and conclsions As a reslt, we have a compact system, very easy to configre and for programming. The prototype allows the ser to experiment with the sampling rate and with 1 or 8 bits of resoltion. The program warns the ser by means of a led, if the digital processing program exceeds the period of sampling. Before implementing a program, it is possible to simlate the comptations in the Matlab program and therefore it is possible to compare the reslts of the prototype. Additionally, in adio processing The Sond Forge Sond Editor of Sonic Fondry [9], gives several services and effects sing the PC. Digital control can be implemented with specialized digital signal processors, inclding DSPIC s and Real Time Operating Systems may be sed. Some limitations are to be mentioned. The sampling period pts a limit in the time to mae comptations. Then at high sampling freqencies it was necessary to avoid floating point arithmetic. Also, 16 and 24 bits resoltions are not possible in this prototype. Page 141 ISBN:

6 7 References [1] [2] Amar Parcherla, Using PWM to Generate Analog Otpt., Microchip Technology Inc [3] MPLAB C18 C Compiler User s Gide. Microchip Technology Inc. 25. [4] MPLAB C18 C Compiler Libraries. Microchip Technology Inc. 25 [5] Edardo Rene Deantes Anaya, Procesador para la creación de efectos de adio, Tesis de maestría, INAOE, agosto [6] Vinay K. Ingle, John G. Proais, Digital Signal Processing Using MATLAB V.4.: PWS Pblishing Company, [7] Ben Gold, Nelson Morgan, Speech and Adio Signal Processing, John Wiley & Sons, Inc. 2. [8] Kevin Sahill, VHDL for Programmable Logic. Cypress Semicondctor, [9] Pablo Iglesias Simon, Postprodcción Digital de Sonido por Comptadora, Alfaomega 22. [1] Gene F. Franlin and J. D. Powel, Digital Control or Dynamic Systems, Addison Wesley, [11] RA1 RC1 RA RD7 RD6 RD5 RD4 RD3 RD2 RD1 PIC 18F458 RD RB7 RB6 RB5 RB4 RB3 RB2 RE RE1 RB1 RBO RE2 RESET CF CK Q7 Q6 Q5 GAL22V1D Q4 Q3 Q2 Q1 Q LED AUDIO OUTPUT AUDIO INPUT D7 D6 D5 D4 D3 D2 D1 D A13 A12 A11 A1 A9 A8 OE WE CE A7 A6 A5 A4 A3 A2 A1 A RAM Figre 9 Prototype Implementation Page 142 ISBN:

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

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

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

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

FRT 041 System Identification Laboratory Exercise 3

FRT 041 System Identification Laboratory Exercise 3 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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

A Novel Control Method for Direct Interface Converters used for DC and AC Power Supplies

A Novel Control Method for Direct Interface Converters used for DC and AC Power Supplies A Noel Control Method for Direct Interface Conerters sed for DC and AC Power Spplies Koji Kato, Jn-ichi Itoh Nagaoka Uniersity of Technology 163-1 Kamitomioka-cho Nagaoka city Niigata, Japan Tel./FAX:

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

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

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

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

Application of Random Space Vector Pulse Width Modulation in Electric Vehicle

Application of Random Space Vector Pulse Width Modulation in Electric Vehicle dvanced Science Technology Letters Vol143 (ST 017), pp89-93 http://dxdoiorg/101457/astl01714318 pplication of Rom Space Vector Plse Width Modlation in Electric Vehicle Goqiang hen School of Mechanical

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

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

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

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

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

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

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

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

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

IEOR 130 Methods of Manufacturing Improvement Fall, 2016, Prof. Leachman Solutions to Homework Assignment 10.

IEOR 130 Methods of Manufacturing Improvement Fall, 2016, Prof. Leachman Solutions to Homework Assignment 10. IEOR 130 Methods of Manfactring Improvement Fall, 016, Prof. Leachman Soltions to Homework Assignment 10. 1. Consider a fab prodcing a NAND flash device. Prodction volme is 50,000 wafer starts per week.

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

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

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

2-Winding Transformer: Type HU 3-Winding Transformer: Type HU-1 4-Winding Transformer: Type HU-4 4-Circuit Bus: Type HU-4

2-Winding Transformer: Type HU 3-Winding Transformer: Type HU-1 4-Winding Transformer: Type HU-4 4-Circuit Bus: Type HU-4 Westinghose Application Types HU, HU1, and HU4 relays are high speed differential nits with two, three, or for restraint circits respectively; all incorporating a harmonic restraint circit to prevent false

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

An Energy-Efficient Relaying Scheme for Internet of Things Communications

An Energy-Efficient Relaying Scheme for Internet of Things Communications An Energy-Efficient Relaying Scheme for Internet of Things Commnications Ahmad Alsharoa, Xiaoyn Zhang, Daji Qiao, and Ahmed Kamal Electrical and Compter Engineering Iowa State University, Ames, Iowa Email:

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

Inveter Protocol for Solar Inverter Family

Inveter Protocol for Solar Inverter Family CONTENT page : 3/19 1 General information... 4 1.1 Packet Commnication Method... 4 1.2 Inverter Allocation... 4 There is no wait and then to directly send for the first time, SN= the serial nmber of machine....

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

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

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

ALT2000 Advanced Line Tester

ALT2000 Advanced Line Tester ALT2000 Advanced Line Tester Fll Data Sheet VONAQ ALT2000 - Technical Data Sheet MAIN FUNCTIONS Signal Generator & Selective Level Meter - Fll programmable freqencies, impedances, filters, modality Atomatic

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

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

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

Performance Comparison of Conventional STATCOM and STATCOM with Energy Storage in a Low Voltage Induction Motor Application

Performance Comparison of Conventional STATCOM and STATCOM with Energy Storage in a Low Voltage Induction Motor Application Performance Comparison of Conventional STATCOM and STATCOM with Energy Storage in a Low oltage Indction Motor Application Antti irtanen Department of Electrical Energy Engineering Tampere University of

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

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

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

II IMAGE ENHANCEMENT PART A. 1. Give the PDF of uniform noise and sketch it.(april/may 2015)(Nov./Dec.2013)

II IMAGE ENHANCEMENT PART A. 1. Give the PDF of uniform noise and sketch it.(april/may 2015)(Nov./Dec.2013) UNIT II IMAGE ENANCEMENT PART A 1. Gie the PD of niform noise and sketch it.april/may 015No./Dec.013 The probability density fnction of the continos niform distribtion is:. Define and gie the transfer

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

Interfacing to Analog World Sensor Interfacing

Interfacing to Analog World Sensor Interfacing Interfacing to Analog World Sensor Interfacing Introduction to Analog to digital Conversion Why Analog to Digital? Basics of A/D Conversion. A/D converter inside PIC16F887 Related Problems Prepared By-

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

International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 2015)

International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 2015) International Conference on Advances in Mechanical Engineering and Indstrial Informati (AMEII 05) An Improved SRS oise Estimation Algorim Based on Interference Cancellation Kewen Li a Weiwei Tian b Mingye

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

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

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

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

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

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

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

A NOVEL DECENTRALIZED MIMO-OFDM UPLINK DETECTION SCHEME. Andreas Ahrens, Xinning Wei, Tobias Weber, Shiyang Deng

A NOVEL DECENTRALIZED MIMO-OFDM UPLINK DETECTION SCHEME. Andreas Ahrens, Xinning Wei, Tobias Weber, Shiyang Deng A NOVEL DECENTRALIZED MIMO-OFDM ULINK DETECTION SCHEME Andreas Ahrens, Xinning Wei, Tobias Weber, Shiyang Deng University of Rostock Institte of Commnications {andreas.ahrens}{tobias.weber}@ni-rostock.de

More information

On the Performance of Transmitted-Reference Impulse Radio

On the Performance of Transmitted-Reference Impulse Radio MITSUBISHI LCTRIC RSARCH LABORATORIS http://wwwmerlcom On the erformance of Transmitted-Reference Implse Radio Sinan Gezici, Fredri Tfvesson, Andreas Molisch TR2004-14 November 2004 Abstract We consider

More information

Imitative Learning for Real-Time Strategy Games

Imitative Learning for Real-Time Strategy Games Imitative Learning for Real-Time Strategy Games Qentin Gemine, Firas Safadi, Raphaël Fontenea and Damien Ernst Abstract Over the past decades, video games have become increasingly poplar and complex. Virtal

More information

M20-2 analogue outputs, M30-3 analogue outputs Programmable multi-transducer

M20-2 analogue outputs, M30-3 analogue outputs Programmable multi-transducer for the measrement of electrical ariables in heay crrent power systems Application The RSH Dcer M20, M30 series of mlti - transdcers (Fig. 1) simltaneosly measre seeral ariables of an electric power system

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

Energy Measuring Unit MODEL EMU4-FD1-MB. User s Manual (Details)

Energy Measuring Unit MODEL EMU4-FD1-MB. User s Manual (Details) Energy Measring nit MODE EM4-FD-MB ser s Manal (Details) Before operating the instrment, yo shold first read thoroghly this operation manal for safe operation and optimized performance of the prodct. Delier

More information

SWISS Rectifier A Novel Three-Phase Buck-Type PFC Topology for Electric Vehicle Battery Charging

SWISS Rectifier A Novel Three-Phase Buck-Type PFC Topology for Electric Vehicle Battery Charging 01 IEEE Proceedings of the 7th Applied Power Electronics Conference and Exposition (APEC 01), Orlando Florida, USA, Febrary 5-9, 01 SWISS Rectifier A ovel Three-Phase Bck-Type PFC Topology for Electric

More information

Vienna Rectifier with Gallium Nitride (GaN) Devices

Vienna Rectifier with Gallium Nitride (GaN) Devices Vienna Rectifier with Gallim Nitride (GaN) Devices By Ytong Zh A thesis sbmitted in partial flfillment of reqirements for the degree of Master of Science (Electrical and Compter Engineering) at the University

More information

r US Al I I L.6 MOD. I I (43) Pub. Date: Apr. 30, 2015

r US Al I I L.6 MOD. I I (43) Pub. Date: Apr. 30, 2015 c19) United States c12) Patent Application Pblication CHE et al llllll lllll lllllllll lllll lllllllll lllll lllll lllllllll 1111111111111111 US 21511618Al c1) Pb o: US 215/11618 Al (43) Pb Date: Apr 3,

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

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

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

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

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

APLICACIÓN N DEL CONTROL EN MODO DE DESLIZAMIENTO EN SISTEMAS DE CONVERSIÓN DE ENERGÍA

APLICACIÓN N DEL CONTROL EN MODO DE DESLIZAMIENTO EN SISTEMAS DE CONVERSIÓN DE ENERGÍA 1 APLICACIÓN N DEL CONTROL EN MODO DE DESLIZAMIENTO EN SISTEMAS DE CONVERSIÓN DE ENERGÍA Domingo Biel Solé Advanced Control of Energy Systems (ACES) Institto de Organización y Control (IOC) Universitat

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

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

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

Perfection in all dimensions

Perfection in all dimensions 44 55 60 S c a n w i d t h Perfection in all dimensions Optical resoltion 2400 x 1200 dpi Scan and mlti-fnctional soltions Made in Germany Perfection in all dimensions 44 55 60 S c a n w i d t h The sets

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

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

Two-user MISO Broadcast Channel: Synergistic Benefits of Alternating CSIT

Two-user MISO Broadcast Channel: Synergistic Benefits of Alternating CSIT IEEE International Symposim on Information Theory Two-ser MISO Broadcast Channel: Synergistic Benefits of Alternating CSIT Ravi Tandon epartment of ECE Virginia Tech Blacksbrg VA tandonr@vt.ed Syed Ali

More information

New Transceiver Scheme for FDMA Systems Based on Discrete Sine Transform

New Transceiver Scheme for FDMA Systems Based on Discrete Sine Transform New Transceiver Scheme for FDMA Systems Based on Discrete Sine Transform BASHAR ALI FAREA AND NOR SHAHIDA MOHD SHAH Department of Commnication Engineering, University Tn Hssein Onn Malaysia Parit Raja,

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

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