Applications of Neural Networks to Control Systems

Total Page:16

File Type:pdf, Size:1020Kb

Applications of Neural Networks to Control Systems View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Universidade do Algarve APPLICATIONS OF NEURAL NETWORKS TO CONTROL SYSTEMS by António Eduardo de Barros Ruano Thesis submitted to the UNIVERSITY OF WALES for the degree of DOCTOR OF PHILOSOPHY School of Electronic Engineering Science University of Wales, Bangor February, 1992 Statement of Originality The work presented in this thesis was carried out by the candidate. It has not been previously presented for any degree, nor is at present under consideration by any other degree awarding body. Candidate:- Antonio E. B. Ruano Directors of Studies:- Dr. Dewi I. Jones Prof. Peter J. Fleming ACKNOWLEDGMENTS I would like to express my sincere thanks and gratitude to Prof. Peter Fleming and Dr. Dewi Jones for their motivation, guidance and friendship throughout the course of this work. Thanks are due to all the students and staff of the School of Electronic Engineering Science. Special thanks to the Head of Department, Prof. J.J. O’Reilly, for his encouragement; Siân Hope, Tom Crummey, Keith France and David Whitehead for their advice on software; Andrew Grace, for fruitful discussions in optimization; and Fabian Garcia, for his advice in parallel processing. I am also very grateful to Prof. Anibal Duarte from the University of Aveiro, Portugal, whose advice was decisive to my coming to Bangor. I would like to acknowledge the University of Aveiro, University College of North Wales and the ‘Comissão Permanente Invotan’ for their financial support. I am also very grateful to all my friends in Bangor, who made my time here a most enjoyable one. Special thanks and love to my parents, António Delfim and Maria Celeste, for their life-time care and encouragement. To my parents-in-law, for their continuous support. Finally I thank my wife and colleague, Maria da Graça, for her love, patience and support and for the long hours of fruitful discussions; my daughter, Carina Alexandra, for cheering me up at those special moments. À Carina e à Graça ABSTRACT This work investigates the applicability of artificial neural networks to control systems. The following properties of neural networks are identified as of major interest to this field: their ability to implement nonlinear mappings, their massively parallel structure and their capacity to adapt. Exploiting the first feature, a new method is proposed for PID autotuning. Based on integral measures of the open or closed loop step response, multilayer perceptrons (MLPs) are used to supply PID parameter values to a standard PID controller. Before being used on-line, the MLPs are trained off- line, to provide PID parameter values based on integral performance criteria. Off-line simulations, where a plant with time-varying parameters and time varying transfer function is considered, show that well damped responses are obtained. The neural PID autotuner is subsequently implemented in real-time. Extensive experimentation confirms the good results obtained in the off-line simulations. To reduce the training time incurred when using the error back-propagation algorithm, three possibilities are investigated. A comparative study of higher- order methods of optimization identifies the Levenberg-Marquardt (LM) algorithm as the best method. When used for function approximation purposes, the neurons in the output layer of the MLPs have a linear activation function. Exploiting this linearity, the standard training criterion can be replaced by a new, yet equivalent, criterion. Using the LM algorithm to minimize this new criterion, together with an alternative form of Jacobian matrix, a new learning algorithm is obtained. This algorithm is subsequently parallelized. Its main blocks of computation are identified, separately parallelized, and finally connected together. The training time of MLPs is reduced by a factor greater than 70 executing the new learning algorithm on 7 Inmos transputers. Contents Contents 1 - Introduction 1 1.1 - General overview 1 1.2 - Outline of thesis and major achievements 3 2 - Artificial Neural Networks 7 2.1 - Introduction 7 2.2 - Artificial neural networks: a brief tutorial 8 2.2.1 - Biological neural networks 10 2.2.2 - Different types of artificial neural networks 12 2.2.2.1 - Hopfield networks 16 2.2.2.2 - CMAC networks 18 2.2.2.3 - Multilayer perceptrons 20 2.3 - Applications of neural networks to control systems: an overview 24 2.3.1 - Nonlinear identification 25 2.3.1.1 - Forward models 26 2.3.1.2 - Inverse models 28 2.3.2 - Control 31 2.3.2.1 - Model reference adaptive control 31 2.3.2.2 - Predictive control 34 2.4 - Conclusions 36 3 - A Connectionist Approach to PID Autotuning 38 3.1 - Introduction 38 3.2 - The PID controller 39 3.3 - An overview of existing methods of PID autotuning 40 3.3.1 - Methods based on the frequency response 41 3.3.2 - Methods based on the step response 42 3.3.3 - Methods based upon on-line parameter estimation 46 i Contents 3.3.4 - Methods based on expert and fuzzy logic systems 47 3.3.5 - Methods based on artificial neural networks 47 3.4 - A neural PID autotuner 49 3.4.1 - Inputs of the neural networks 49 3.4.2 - Outputs of the neural networks 53 3.4.3 - Training considerations 54 3.4.4 - On-line operation 57 3.5 - Simulation results 58 3.6 - Conclusions 65 4 - Training Multilayer Perceptrons 67 4.1 - Introduction 67 4.2 - Error back-propagation 68 4.2.1 - The error back-propagation algorithm 70 4.2.2 - Limitations of the error back-propagation algorithm 75 4.3 - Alternatives to the error back-propagation algorithm 84 4.3.1 - Quasi-Newton method 87 4.3.2 - Gauss-Newton method 88 4.3.3 - Levenberg-Marquardt method 89 4.4 - A new learning criterion 95 4.4.1 - Golub and Pereyra’s approach 100 4.4.2 - Kaufman’s approach 102 4.4.3 - A new approach 102 4.5 - Conclusions 104 5 - Parallelization of the Learning Algorithm 106 5.1 - Introduction 106 5.2 - Background 107 5.3 - First steps towards parallelization 110 5.4 - Least squares solution of overdetermined systems 111 5.4.1 - Sequential QR algorithms 113 5.4.2 - Parallelization of the selected algorithm 116 ii Contents 5.4.2.1 - Triangularization phase 116 5.4.2.2 - Solution phase 129 5.4.2.3 - Specializing the algorithm 131 5.5 - Recall operation 133 5.6 - Jacobian computation 139 5.7 - Connecting the blocks 142 5.8 - Conclusions 147 6 - Real-Time Implementation 150 6.1 - Introduction 150 6.2 - Preliminary remarks 150 6.3 - Operational modes and input/output devices 152 6.4 - System architecture 153 6.4.1 - The user interface 153 6.4.2 - The controller 154 6.4.3 - The plant 156 6.4.4 - The adaptation 157 6.4.5 - System overview 159 6.5 - Results 159 6.6 - Conclusions 165 7 - Conclusions 167 7.1 - General conclusions 167 7.2 - Future Work 170 References Derivation of the Identification Measures A-1 A.1 - Background A-1 A.2 - Open loop A-3 A.3 - Closed loop A-4 The Reformulated Criterion: Theoretical Proofs B-1 iii Contents B.1 - Background B-1 B.2 - Gradient proof B-2 B.3 - Jacobian proof B-3 iv Chapter 1 Introduction Chapter 1 Introduction 1.1 General overview In recent years there has been an increasing interest in the development and application of artificial neural networks technology. Neural network research has spread through almost every field of science, several journals [1][2][3] and major conferences [4][5] now being entirely devoted to this subject. Control systems form one area where artificial neural networks have found ready application. In every major conference in the field of control systems, sessions are now devoted to artificial neural networks applications. Special issues [6][7][8] of important publications on control systems have been dedicated to this new subject. The objectives of the work described in this thesis are to investigate the potential applications of neural networks to control systems, to identify suitable applications where neural network solutions are superior to conventional techniques, and to further develop the relevant approaches, with a view to practical implementation. When this PhD. programme started, in October 1988, applications of neural networks in control systems were in a embryonic state. From a literature survey conducted at that time [9], two important properties of artificial neural networks were identified as being of great potential interest to the area of control systems: their capacity to approximate nonlinear mappings, and their ability to learn and adapt. These properties could then be exploited for nonlinear systems identification, adaptive control of nonlinear systems and PID autotuning, among other areas. Clearly, this preliminary analysis was found to be correct, as confirmed by the number of publications, appeared during these last three years, where applications of neural networks on nonlinear systems identification and adaptive control of nonlinear systems have been proposed. Because of the practical importance of the problem, the ability of artificial neural networks to arbitrarily approximate nonlinear mappings is applied, in this thesis, to PID autotuning. Despite all the advances made in control theory, the majority of the regulators in industry are of the PID type. Large industrial plants may contain hundreds of these simple regulators. Manual tuning is an operation that, to be accurately performed, takes a considerable amount of time. Whether because of plant changes or because of component 1 Chapter 1 Introduction ageing, retuning needs to be performed regularly. Methods that can provide automatic tuning of PID controllers are, therefore, of a great practical importance. Several different methods have been proposed for tuning PID regulators, starting from the work of Ziegler-Nichols [10].
Recommended publications
  • Control Theory
    Control theory S. Simrock DESY, Hamburg, Germany Abstract In engineering and mathematics, control theory deals with the behaviour of dynamical systems. The desired output of a system is called the reference. When one or more output variables of a system need to follow a certain ref- erence over time, a controller manipulates the inputs to a system to obtain the desired effect on the output of the system. Rapid advances in digital system technology have radically altered the control design options. It has become routinely practicable to design very complicated digital controllers and to carry out the extensive calculations required for their design. These advances in im- plementation and design capability can be obtained at low cost because of the widespread availability of inexpensive and powerful digital processing plat- forms and high-speed analog IO devices. 1 Introduction The emphasis of this tutorial on control theory is on the design of digital controls to achieve good dy- namic response and small errors while using signals that are sampled in time and quantized in amplitude. Both transform (classical control) and state-space (modern control) methods are described and applied to illustrative examples. The transform methods emphasized are the root-locus method of Evans and fre- quency response. The state-space methods developed are the technique of pole assignment augmented by an estimator (observer) and optimal quadratic-loss control. The optimal control problems use the steady-state constant gain solution. Other topics covered are system identification and non-linear control. System identification is a general term to describe mathematical tools and algorithms that build dynamical models from measured data.
    [Show full text]
  • Microcontroller Based Applied Digital Control
    JWBK063-FM JWBK063-Ibrahim January 4, 2006 18:11 Char Count= 0 Microcontroller Based Applied Digital Control Microcontroller Based Applied Digital Control D. Ibrahim C 2006 John Wiley & Sons, Ltd. ISBN: 0-470-86335-8 i JWBK063-FM JWBK063-Ibrahim January 4, 2006 18:11 Char Count= 0 Microcontroller Based Applied Digital Control Dogan Ibrahim Department of Computer Engineering Near East University, Cyprus iii JWBK063-FM JWBK063-Ibrahim January 4, 2006 18:11 Char Count= 0 Copyright C 2006 John Wiley & Sons Ltd, The Atrium, Southern Gate, Chichester, West Sussex PO19 8SQ, England Telephone (+44) 1243 779777 Email (for orders and customer service enquiries): [email protected] Visit our Home Page on www.wiley.com All Rights Reserved. No part of this publication may be reproduced, stored in a retrieval system or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, scanning or otherwise, except under the terms of the Copyright, Designs and Patents Act 1988 or under the terms of a licence issued by the Copyright Licensing Agency Ltd, 90 Tottenham Court Road, London W1T 4LP, UK, without the permission in writing of the Publisher. Requests to the Publisher should be addressed to the Permissions Department, John Wiley & Sons Ltd, The Atrium, Southern Gate, Chichester, West Sussex PO19 8SQ, England, or emailed to [email protected], or faxedto(+44) 1243 770620. Designations used by companies to distinguish their products are often claimed as trademarks. All brand names and product names used in this book are trade names, service marks, trademarks or registered trademarks of their respective owners.
    [Show full text]
  • Digital Control Networks for Virtual Creatures
    Digital control networks for virtual creatures Christopher James Bainbridge Doctor of Philosophy School of Informatics University of Edinburgh 2010 Abstract Robot control systems evolved with genetic algorithms traditionally take the form of floating-point neural network models. This thesis proposes that digital control sys- tems, such as quantised neural networks and logical networks, may also be used for the task of robot control. The inspiration for this is the observation that the dynamics of discrete networks may contain cyclic attractors which generate rhythmic behaviour, and that rhythmic behaviour underlies the central pattern generators which drive low- level motor activity in the biological world. To investigate this a series of experiments were carried out in a simulated physically realistic 3D world. The performance of evolved controllers was evaluated on two well known control tasks — pole balancing, and locomotion of evolved morphologies. The performance of evolved digital controllers was compared to evolved floating-point neu- ral networks. The results show that the digital implementations are competitive with floating-point designs on both of the benchmark problems. In addition, the first re- ported evolution from scratch of a biped walker is presented, demonstrating that when all parameters are left open to evolutionary optimisation complex behaviour can result from simple components. iii Acknowledgements “I know why you’re here... I know what you’ve been doing... why you hardly sleep, why you live alone, and why night after night, you sit by your computer.” I would like to thank my parents and grandmother for all of their support over the years, and for giving me the freedom to pursue my interests from an early age.
    [Show full text]
  • Topic 6: a Practical Introduction to Digital Power Supply Control
    A Practical Introduction to Digital Power Supply Control Laszlo Balogh ABSTRACT The quest for increased integration, more features, and added flexibility – all under constant cost pressure – continually motivates the exploration of new avenues in power management. An area gaining significant industry attention today is the application of digital technology to power supply control. This topic attempts to clarify some of the mysteries of digital control for the practicing analog power supply designer. The benefits, limitations, and performance of the digital control concept will be reviewed. Special attention will be focused on the similarities and differences between analog and digital implementations of basic control functions. Finally, several examples will highlight the contributions of digital control to switched-mode power supplies. I. INTRODUCTION Power management is one of the most digital delay techniques to adjust proper timing of interdisciplinary areas of modern electronics, gate drive signals, microcontrollers and state merging hard core analog circuit design with machines for battery charging and management, expertise from mechanical and RF engineering, and the list could go on. safety and EMI, knowledge of materials, If power conversion already incorporates semiconductors and magnetic components. such a large amount of digital circuitry, it is a Understandably, power supply design is regarded legitimate question to ask: what has changed? as a pure analog field. But from the very early What is this buzz about “digital power”? days, by the introduction of relays and later the first rectifiers, power management is slowly II. GOING DIGITAL incorporating more and more ideas from the Despite the tremendous amount of digital digital world.
    [Show full text]
  • Roundoff Noise in Digital Feedback Control Systems
    Chapter 17 Roundoff Noise in Digital Feedback Control Systems Digital control systems are generally feedback systems. Within their feedback loops are parts that are analog and parts that are digital. At certain points within the feed- back loop, signals are converted from analog to digital and at other points, signals are converted from digital to analog. Analog-to-digital conversion involves both sampling and quantization. Digital-to-analog conversion involves both quantization and interpolation (see Section 17.2). Analysis of quantization noise in digital control systems must therefore deal with quantization within feedback loops having both digital and analog parts.1 Command Input Error Plant Signal Signal Digital Output − ADC DAC PLANT (analog) (analog) (digital) Filter (digital) (analog) (analog) + Analog to Digital Digital to Digital Compensator Analog Converter Converter Figure 17.1 A unity-feedback digital control system. An example of a digital control system is shown in Fig. 17.1. This is a unity- feedback system whose purpose is to have the plant output follow as closely as pos- sible the command input. The plant is the system to be controlled. The command input and the plant output are analog signals. Their difference is the error signal. 1This chapter is designed to be self-contained and to present a clear picture of how to analyze the effects of quantization in digital feedback control systems. However, prior study of Chapter 16 on quantization in IIR filters would be very helpful, and prior knowledge of digital control theory would also be helpful. An excellent reference on digital control is the book of Franklin, Powell and Workman (1992).
    [Show full text]
  • Introduction to Applied Digital Control Second Edition
    Introduction to Applied Digital Control Second Edition Gregory P. Starr Department of Mechanical Engineering The University of New Mexico November 2006 ii c 2006 Gregory P. Starr Preface This book is intended to give the senior or beginning graduate student in mechanical engineering an introduction to digital control of mechanical systems with an emphasis on applications. The desire to write this book arose from my frustration with the existing texts on digital control, which|while they were exhaustive|were better suited to reference needs than for tutorial use. While the appearance of several new texts with a more student-oriented perspective has reduced my frustration a little, I still feel there is a need for an introductory text such as this. MATLAB has become an almost indispensable tool in the real-world analysis and design of control systems, and this text includes many MATLAB scripts and examples. My thanks go to my wife Anne, and four boys Paul, Keith, Mark, and Jeff for being patient during the preparation and revision of this manuscript|also my late father Duke Starr who recognized that any kid who liked mathematics and motorcycles can't be all bad. Albuquerque, New Mexico November 2006 iii iv PREFACE Contents Preface iii 1 Introduction and Scope of this Book 1 1.1 Continuous and Digital Control . 1 1.1.1 Feedback control . 1 1.1.2 Digital control . 2 1.2 Philosophy and Text Coverage . 4 2 Linear Discrete Systems and the Z-Transform 7 2.1 Chapter Overview . 7 2.2 Linear Difference Equations . 8 2.2.1 Solving Difference Equations .
    [Show full text]
  • A Kalman Filter for Active Feedback on Rotating External Kink Instabilities in a Tokamak Plasma
    A Kalman Filter for Active Feedback on Rotating External Kink Instabilities in a Tokamak Plasma Jeremy Mark Hanson SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF DOCTOR OF PHILOSOPHY IN THE GRADUATE SCHOOL OF ARTS AND SCIENCES Columbia University 2009 ○c 2009 Jeremy Mark Hanson All Rights Reserved ABSTRACT A Kalman Filter for Active Feedback on Rotating External Kink Instabilities in a Tokamak Plasma Jeremy M. Hanson The first experimental demonstration of feedback suppression of rotating external kink modes near the ideal wall limit in a tokamak using Kalman filtering to discrimi- nate the n = 1 kink mode from background noise is reported. In order to achieve the highest plasma pressure limits in tokamak fusion experiments, feedback stabilization of long-wavelength, external instabilities will be required, and feedback algorithms will need to distinguish the unstable mode from noise due to other magnetohydrodynamic activity. When noise is present in measurements of a system, a Kalman filter can be used to compare the measurements with an internal model, producing a realtime, op- timal estimate for the system’s state. For the work described here, the Kalman filter contains an internal model that captures the dynamics of a rotating, growing instabil- ity and produces an estimate for the instability’s amplitude and spatial phase. On the High Beta Tokamak-Extended Pulse (HBT-EP) experiment, the Kalman filter algo- rithm is implemented using a set of digital, field-programmable gate array controllers with 10 microsecond latencies. The feedback system with the Kalman filter is able to suppress the external kink mode over a broad range of spatial phase angles between the sensed mode and applied control field, and performance is robust at noise levels that render feedback with a classical, proportional gain algorithm ineffective.
    [Show full text]
  • Application of Kalman Filtering and Pid Control For
    APPLICATION OF KALMAN FILTERING AND PID CONTROL FOR DIRECT INVERTED PENDULUM CONTROL ____________ A Project Presented to the Faculty of California State University, Chico ____________ In Partial Fulfillment of the Requirement for the Degree Master of Science in Electrical and Computer Engineering Electronic Engineering Option ____________ by José Luis Corona Miranda Spring 2009 APPLICATION OF KALMAN FILTERING AND PID CONTROL FOR DIRECT INVERTED PENDULUM CONTROL A Project by José Luis Corona Miranda Spring 2009 APPROVED BY THE DEAN OF THE SCHOOL OF GRADUATE, INTERNATIONAL, AND INTERDISCIPLINARY STUDIES: _________________________________ Susan E. Place, Ph.D. APPROVED BY THE GRADUATE ADVISORY COMMITTEE: _________________________________ _________________________________ Adel A. Ghandakly, Ph.D. Dale Word, M.S., Chair Graduate Coordinator _________________________________ Adel A. Ghandakly, Ph.D. TABLE OF CONTENTS PAGE List of Figures............................................................................................................. v Abstract....................................................................................................................... vi CHAPTER I. Introduction.............................................................................................. 1 Purpose of the Project................................................................... 2 Limitations of the Project ............................................................. 3 II. Review of Related Literature...................................................................
    [Show full text]
  • Applied Digital Control--Theory, Design and Implementation*
    Automatica, Vol. 30, No. 11, pp. 1807-1813, 1994 Copyright © 1994 ElsevierScience Ltd Pergamon Printed in Great Britain. All rights reserved 0005-1098194 $7.00 + 0.00 Book Reviews Applied Digital Control--Theory, Design and Implementation* R. J. Leigh Reviewer: JOB VAN AMERONGEN 4--Methods of analysis and design (pp. 69-110: root locus, University of Twente, P.O. Box 217, Enschede, The frequency response (w-transformation), stability tests); Netherlands. 5--Digital control algorithms (pp. 111-197: various approaches to the design of digital controllers: ACCORDING TO the introduction, 'the book aims to establish continuous modelling, discrete controller design, trans- a strong theoretical background to support applications, formation of continuous-time controllers to discrete material relevant to the design and implementation of digital controllers, dead beat, including modified versions, use control systems'. It is meant for 'industrial 'engineers and of hill climbing for controller tuning, w'-domain (why scientists as well as for students on formal courses'. here w' and in Chapter 4 w?), design realizations such A first scan of the contents of the book shows that there is as parallel method, factorization, choice of sampling a lot of technology in the book. Examples of industrial interval, word length effects. Recent developments such control systems, such as the Honeywell TDC 3000 system are as the delta-operator are not mentioned. Emphasis is on given in the chapter on commercially available distributed translation of continuous-time designs to discrete control systems and in several case studies. The preface to algorithms, less on a complete digital design); the second edition indicates that the book has been updated 6--Elements in the control loop (pp.
    [Show full text]
  • Teaching Analog and Digital Control Theory in One Course
    Session 3663 Teaching Analog And Digital Control Theory In One Course Hakan B. Gurocak Manufacturing Engineering Washington State University 14204 NE Salmon Creek Ave. Vancouver, WA 98686 Abstract: Today's trend is towards a high level of manufacturing automation and design of smart products. All of these products or their manufacturing processes contain control systems. As indicated in a recent survey, both analog and digital control modes are used by the industry to implement controllers. In a typical undergraduate engineering curriculum a control systems course introducing the fundamental notions of analog control theory is offered. To learn digital control theory, students would have to take an extra course on digital control systems, usually at the graduate level. This paper explains the development of a hybrid classical/digital control systems course*. Also, laboratory experiments designed to support the new format are presented. Introduction Manufacturing engineering is a very broad discipline. Consequently, manufacturing engineers typically engage in a diverse range of activities such as plant engineering, manufacturing processes, machine design, and product design. In just about any of these roles a manufacturing engineer is challenged by a control system since today's trend is towards a high level of manufacturing automation and design of smart products. For example, such products include active suspensions in cars that can adjust to the road conditions or video cameras that can stabilize images that would otherwise be fuzzy due to the shaking of the hand holding the camera. As the industry continues to introduce more sophisticated control applications in its products and manufacturing processes, the engineers who design, develop and build these products and systems will face a challenging, dramatic change in their role.
    [Show full text]
  • Implementation of Kalman Filter on Visual Tracking Using Pid Controller
    Mechatronics and Applications: An International Journal (MECHATROJ), Vol. 1, No.1, January 2017 IMPLEMENTATION OF KALMAN FILTER ON VISUAL TRACKING USING PID CONTROLLER Abdurrahman,F.* 1, Gunawan Sugiarta*2 and Feriyonika*3 *Department of Electrical Engineering, Bandung State of Polytechnic, Bandung, Indonesia ABSTRACT This paper explain the design of visual control system which equip Kalman filter as an additional sub- system to predict object movement. It is a method to overcome some weakness, such as low range view of camera and low FPS (Frame per Second). It alsoassist the system to track a fast moving object. The system is implemented to 2 motor servos, which are move on horizontal and vertical axis. Digital PID (Proportional, Integral, and Derivative) controller is used in the system, and bilinear transformation is used to approximate the value of derivative in transforming the analogue to digital controller on z- transform.In conclusion, we can get the value of system responses time from both motor servos. The rise time and settling time of motor servo in horizontal axis are 0.402s and 1.63s, and vertical axis’s responses are 0.38s and 1.34s. KEYWORDS Kalman filter, PID, bilinear transformation, z-transform 1. INTRODUCTION In this digital era, robotic technologies are implementing vision-based control, such as object tracking [1], face tracking [2], and position-based control [3]. It was developed as one of the control method in robotic community. Researchers keep learning and involving the control system to transform itas close as human capability. Recent paper describes the vision-based control and computer vision as numerical theory [4], unfortunately there are lack of paper which describedand design the system in a more practical way.
    [Show full text]
  • Digital Control Engineering Analysis and Design
    Digital Control Engineering Analysis and Design Second Edition M. Sami Fadali Antonio Visioli AMSTERDAM • BOSTON • HEIDELBERG • LONDON NEW YORK • OXFORD • PARIS • SAN DIEGO SAN FRANCISCO • SINGAPORE • SYDNEY • TOKYO Academic Press is an imprint of Elsevier Academic Press is an imprint of Elsevier 225 Wyman Street, Waltham, MA 02451, USA The Boulevard, Langford Lane, Kidlington, Oxford, OX5 1GB, UK Copyright r 2013 Elsevier Inc. All rights reserved No part of this publication may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or any information storage and retrieval system, without permission in writing from the publisher. Details on how to seek permission, further information about the Publisher’s permissions policies and our arrangements with organizations such as the Copyright Clearance Center and the Copyright Licensing Agency, can be found at our website: www.elsevier.com/permissions. This book and the individual contributions contained in it are protected under copyright by the Publisher (other than as may be noted herein). Notices Knowledge and best practice in this field are constantly changing. As new research and experience broaden our understanding, changes in research methods, professional practices, or medical treatment may become necessary. Practitioners and researchers must always rely on their own experience and knowledge in evaluating and using any information, methods, compounds, or experiments described herein. In using such information or methods they should be mindful of their own safety and the safety of others, including parties for whom they have a professional responsibility. To the fullest extent of the law, neither the Publisher nor the authors, contributors, or editors, assume any liability for any injury and/or damage to persons or property as a matter of products liability, negligence or otherwise, or from any use or operation of any methods, products, instructions, or ideas contained in the material herein.
    [Show full text]