Book Python For Control
Book Python For Control
Book Python For Control
May 1, 2016
2
Contents
1 Introduction 9
1.1 Install the packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
1.2 The simplest way . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
1.3 Linux . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
1.4 Windows . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
1.5 Mac OSX . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
3
4 CONTENTS
4 System analysis 25
4.1 Time response . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
4.2 Frequency analysis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
4.3 Poles, zeros and root locus analysis . . . . . . . . . . . . . . . . . . . . . . . . . 32
5 Modeling 35
5.1 Model of a DC motor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
5.1.1 Plant . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
5.1.2 Modules and constants . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
5.1.3 Reference frames . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
5.1.4 Body and inertia of the load . . . . . . . . . . . . . . . . . . . . . . . . . 36
5.1.5 Forces and torques . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
5.1.6 Model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
5.1.7 State-space matrices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
5.2 Model of the inverted pendulum . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
5.2.1 Modules and constants . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
5.2.2 Frames - Car and pendulum . . . . . . . . . . . . . . . . . . . . . . . . . 40
5.2.3 Points, bodies, masses and inertias . . . . . . . . . . . . . . . . . . . . . 40
5.2.4 Forces, frictions and gravity . . . . . . . . . . . . . . . . . . . . . . . . . 40
5.2.5 Final model and linearized state-space matrices . . . . . . . . . . . . . . 41
5.3 Model of the Ball-on-Wheel plant . . . . . . . . . . . . . . . . . . . . . . . . . . 42
5.3.1 Modules and constants . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
5.3.2 Reference frames . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
5.3.3 Centers of mass of the ball . . . . . . . . . . . . . . . . . . . . . . . . . . 43
5.3.4 Masses and inertias . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
5.3.5 Forces and torques . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
5.3.6 Kanes model and linearized state-space matrices . . . . . . . . . . . . . 44
6 Control design 47
6.1 PI+Lead design example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
6.1.1 Define the system and the project specifications . . . . . . . . . . . . . . 47
6.1.2 PI part . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
6.1.3 Lead part . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
6.1.4 Controller Gain . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
6.1.5 Simulation of the controlled system . . . . . . . . . . . . . . . . . . . . . 52
6.2 Discrete-state feedback controller design . . . . . . . . . . . . . . . . . . . . . . 54
6.2.1 Plant and project specifications . . . . . . . . . . . . . . . . . . . . . . . 54
6.2.2 Motor parameters identification . . . . . . . . . . . . . . . . . . . . . . . 54
6.2.3 Required modules . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
6.2.4 Function for least square identification . . . . . . . . . . . . . . . . . . . 54
6.2.5 Parameter identification . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
6.2.6 Check of the identified parameters . . . . . . . . . . . . . . . . . . . . . . 55
6.2.7 Continuous and discrete model . . . . . . . . . . . . . . . . . . . . . . . 56
6.2.8 Controller design . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
6.2.9 Observer design . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
6.2.10 Controller in compact form . . . . . . . . . . . . . . . . . . . . . . . . . 58
CONTENTS 5
9 Example 73
9.1 The plant . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
9.2 The plant model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
9.3 Controller design . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
9.4 Observer design . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
9.5 Simulation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
9.6 Real-time controller . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
6 CONTENTS
List of Figures
7
8 LIST OF FIGURES
Chapter 1
Introduction
1.3 Linux
The required modules can be simply installed using the usual package manager of the Linux
distribution. It is also possible to install the Anaconda distribution [2] for Linux to get the
basic Python modules.
It is important to check the versions of the Python modules, in particular numpy, scipy and
sympy. Old versions of these packages dont allows to perform all the tasks described in this
document. In case of old versions, it is possible to download the last versions of these packages
from the SciPy download page [3], and install them from a Linux shell.
Under Debian jessie we can use the apt manager to install the following packages:
python-numpy (Vers. 1.8.2)
python-matplotlib
python-setuptools
python-psutils
ipython
ipython-qtconsole
9
10 CHAPTER 1. INTRODUCTION
Under Debian and Ubuntu it is possible to check if all the required development packages are
correctly installed using the shell command
The following packages are not available as distribution packages and should be installed sep-
arately.
For the second part of the project (code generation etc.) the following packages are required
python-pyqt4
python-pyqt4-dev
python-qwt5-qt4
This features presented in the second part of this document are at present only interesting under
the Linux OS, because the real-time code is generated for a Linux PREEMPT-RT machine..
1.4 Windows
Under Windows it is sufficient to install the Anaconda package [2], to have all the python and
ipython modules installed. The Slycot libraries for Windows can be downloaded from here [7].
At present it is not possible to perform hybrid simulation and code generation under the
Windows OS.
2.1 Basics
There are important differences between Matlab and Python. In particular, the Python ap-
proach to matrices and to indexed objects is quite different compared to Matlab.
More information about a comparison between Python and Matlab is available online at [8].
The web contains a lot of documentation about Python and its packages. In particular, the
book of David Pine [9] gives a good introduction about the features of Python for scientific
applications.
Other links present tutorials for numpy [10], scipy [11], matplotlib [12] and sympy [13].
or
ipython --pylab
Sometimes not all the functions and modules are explicitly loaded at the beginning of the
examples. In addition, ipython implements some useful commands like for example whos and
run (for launching scripts).
In the ipython shell it is possible to start single commands, paste a set of commands or launch
a .py program using run.
11
12 CHAPTER 2. PYTHON - SOME HINTS FOR MATLAB USERS
In [ 1 ] : # s i n g l e command
In [ 2 ] : a = 5
In [ 3 ] : # p a s t e a s e t o f commands
In [ 4 ] : a=5
...: b=7
...: c=a b
...: print c
...:
35
In [ 5 ] : # run a . py f i l e
In [ 6 ] : run DCmotorKane . py
Matrix ( [ [ Dmw( t ) + k t I ( t ) ] ] )
Matrix ( [ [ J D e r i v a t i v e (w( t ) , t ) ] ] )
[ [ 0 1]
[ 0 Dm/ J ] ]
[[0]
[ kt /J ] ]
In [ 1 ] : a=5
In [ 2 ] : b=2.7
In [ 3 ] : c = [ [ 1 , 2 , 3 ] , [ 4 , 5 , 6 ] ]
In [ 4 ] : d= Ciao
In [ 5 ] : whos
Variable Type Data / I n f o
a int 5
b float 2.7
c list n=2
d str Ciao
2.5 List
A Python list implements the Matlab cell. It represents the simplest and default indexed
object.
2.6. ARRAYS 13
In [ 1 ] : a = [ [ [ 1 , 2 ] , [ 3 , 4 ] ] , abcd , 2 ]
In [ 2 ] : b = [ [ 1 , 2 , 3 ] , [ 4 , 5 , 6 ] , [ 7 , 8 , 9 ] ]
In [ 3 ] : whos
Variable Type Data / I n f o
a list n=3
b list n=3
2.6 Arrays
In Python the array is a multidimensional variable that implements sets of values of the same
type. Usually the elements of an array are numbers, but can also be booleans, strings, or other
objects. An array is the basic instance for most scientific applications.
Operations like *, /, ** etc. implement the dot operations of the Matlab environment (.*,
./ and .). For example, the multiplication of two arrays a a represents the value-by-value
multiplication implemented in Matlab with the operation a. a.
In [ 2 ] : a=a r r a y ( [ [ 1 , 2 , 3 ] , [ 4 , 5 , 6 ] ] )
In [ 3 ] : b=a r r a y ( [ [ 1 ] , [ 2 ] ] )
In [ 4 ] : print a a
[ [ 1 4 9]
[ 1 6 25 3 6 ] ]
In [ 5 ] : print a b
[ [ 1 2 3]
[ 8 10 1 2 ] ]
2.7 Matrices
The matrix object is useful in case of linear algebra operations. In this case the variables are
instanced using the mat or the matrix function.
14 CHAPTER 2. PYTHON - SOME HINTS FOR MATLAB USERS
In [ 2 ] : a=mat ( a )
In [ 3 ] : b=a r r a y ( [ [ 1 ] , [ 2 ] , [ 3 ] ] )
In [ 4 ] : a b
Out [ 5 ] :
m a tr i x ( [ [ 1 4 ] ,
[32]])
In [ 6 ] : a=a r r a y ( a )
In [ 7 ] : a b
ValueError Traceback ( most r e c e n t
call last )
<i p y th o ninput 98201 c27d19b7 > in <module >()
> 1 a b
V a l u e E r r o r : o p e r a n d s c o u l d not be b r o a d c a s t t o g e t h e r with
shapes (2 , 3) (3 , 1)
In [ 8 ] : b=mat ( b )
In [ 9 ] : a b
Out [ 1 0 ] :
m a tr i x ( [ [ 1 4 ] ,
[32]])
2.8 Indexing
Indexing in Python is quite different compared with the syntax used in Matlab. Indices start
from 0 (and not 1 as in Matlab). In addition, the syntax is different for lists, arrays and
matrices.
2.9 Lists
1-dimension lists can be accessed using one index (ex. a[2]). Multidimensional lists require
multiple indices in the form [i][j]. . .
2.10. ARRAYS 15
In [ 1 ] : a = [ 1 , 2 , 3 , 4 , 5 ]
In [ 2 ] : %whos
Variable Type Data / I n f o
a list n=5
In [ 3 ] : a [ 3 ]
Out [ 3 ] : 4
In [ 4 ] : b = [ [ 1 , 2 , 3 ] , [ 4 , 5 , 6 ] ]
In [ 5 ] : %whos
Variable Type Data / I n f o
a list n=5
b list n=2
In [ 6 ] : b [ 1 ] [ 2 ]
Out [ 6 ] : 6
In [ 7 ] : b [ 0 ]
Out [ 7 ] : [ 1 , 2 , 3 ]
2.10 Arrays
Multidimensional arrays allow the use of indices in the forms [i, j] and [i][j].
In [ 2 ] : a=a r r a y ( [ 1 , 2 , 3 , 4 , 5 ] )
In [ 3 ] : b=a r r a y ( [ [ 1 , 2 , 3 ] , [ 4 , 5 , 6 ] ] )
In [ 4 ] : %whos
Variable Type Data / I n f o
a ndarray 5 : 5 elems , type i n t 6 4 , 40 b y t e s
b ndarray 2 x3 : 6 elems , type i n t 6 4 , 48 b y t e s
16 CHAPTER 2. PYTHON - SOME HINTS FOR MATLAB USERS
In [ 5 ] : a . shape
Out [ 5 ] : ( 5 , )
In [ 6 ] : b . shape
Out [ 6 ] : ( 2 , 3 )
In [ 7 ] : a [ 3 ]
Out [ 7 ] : 4
In [ 8 ] : b [ 0 , 2 ]
Out [ 8 ] : 3
In [ 9 ] : b [ 0 ] [ 2 ]
Out [ 9 ] : 3
In [ 1 0 ] : b [ : , 0 ]
Out [ 1 0 ] : a r r a y ( [ 1 , 4 ] )
In [ 1 1 ] : b [ 0 , : ]
Out [ 1 1 ] : a r r a y ( [ 1 , 2 , 3 ] )
In [ 1 2 ] : b [ 0 ]
Out [ 1 2 ] : a r r a y ( [ 1 , 2 , 3 ] )
2.11 Matrices
Matrices can be only indexed using the [i, j] syntax. A matrix has always a minimum of 2
dimensions.
In [ 2 ] : a=a r r a y ( [ 1 , 2 , 3 , 4 , 5 ] )
In [ 3 ] : b=a r r a y ( [ [ 1 , 2 , 3 ] , [ 4 , 5 , 6 ] ] )
In [ 4 ] : %whos
Variable Type Data / I n f o
a m a tr i x [[1 2 3 4 5]]
b m a tr i x [ [ 1 2 3]\n [4 5 6 ] ]
In [ 5 ] : a . shape
Out [ 5 ] : ( 1 , 5 )
In [ 6 ] : b . shape
Out [ 6 ] : ( 2 , 3 )
2.12. MULTIDIMENSIONAL ARRAYS AND MATRICES 17
In [ 7 ] : a [ 0 , 2 ]
Out [ 7 ] : 3
In [ 8 ] : b [ 1 , 1 ]
Out [ 8 ] : 5
In [ 9 ] : b [ : , 0 ]
Out [ 9 ] :
m a tr i x ( [ [ 1 ] ,
[4]])
In [ 1 0 ] : b [ 0 , : ]
Out [ 1 0 ] : m a tr i x ( [ [ 1 , 2 , 3 ] ] )
In [ 2 ] : a=z e r o s ( ( 3 , 3 , 3 ) , i n t 8 )
In [ 3 ] : a . shape
Out [ 3 ] : ( 3 , 3 , 3 )
In [ 4 ] : %whos
Variable Type Data / I n f o
a ndarray 3 x3x3 : 27 elems , type i n t 8 , 27
bytes
In [ 5 ] : a [ 1 , 1 , 1 ]
Out [ 5 ] : 0
In [ 6 ] : a [ 1 , 1 , 1 ] = 5
In [ 7 ] : a
Out [ 7 ] :
array ( [ [ [ 0 , 0 , 0 ] ,
[0 , 0 , 0] ,
[0 , 0, 0]] ,
[[0 , 0 , 0] ,
[0 , 5 , 0] ,
[0 , 0, 0]] ,
[[0 , 0 , 0] ,
[0 , 0 , 0] ,
[ 0 , 0 , 0 ] ] ] , dtype=i n t 8 )
18 CHAPTER 2. PYTHON - SOME HINTS FOR MATLAB USERS
Chapter 3
3.1 Basics
The Python Control Systems Library, is a package initially developed by Richard Murray at
Caltech. This toolbox contains a set of python classes and functions that implement common
operations for the analysis and design of feedback control systems. In addition, a MATLAB
compatibility package (control.matlab) has been integrated in order to provide functions equiv-
alent to the commands available in the MATLAB Control Systems Toolbox.
3.2 Models
19
20 CHAPTER 3. THE PYTHON CONTROL SYSTEM TOOLBOX
In [ 1 ] : from c o n t r o l import
In [ 2 ] : a = [ [ 0 , 1 ] , [ 1 , 1 ] ]
In [ 3 ] : b = [ [ 0 ] , [ 1 ] ]
In [ 4 ] : c = [ 1 , 0 ]
In [ 5 ] : d=0
In [ 6 ] : s y s = s s ( a , b , c , d )
In [ 7 ] : print s y s
A = [ [ 0 1]
[ 1 1 ] ]
B = [[0]
[1]]
C = [[1 0]]
D = [[0]]
In [ 1 ] : from c o n t r o l import
In [ 2 ] : g=t f ( 1 , [ 1 , 1 , 1 ] )
In [ 3 ] : print g
1
s 2 + s + 1
3.6 Zeros-Poles-Gain
This method is not implemented in control toolbox yet. It is available in the package scipy.signal
but it is not completely compatible with the class of LTI objects defined in the Python control
toolbox.
In [ 4 ] : a = [ [ 0 , 1 ] , [ 1 , 1 ] ]
In [ 5 ] : b = [ [ 0 ] , [ 1 ] ]
In [ 6 ] : c =[1 , 1]
In [ 7 ] : d=0
In [ 8 ] : s y s d = s s ( a , b , c , d , 0 . 0 1 )
In [ 9 ] : print s y s d
A = [ [ 0 1]
[ 1 1]]
B = [[0]
[1]]
C = [ [ 1 1]]
D = [[0]]
dt = 0 . 0 1
In [ 1 ] : from c o n t r o l import
In [ 2 ] : g=t f ( [ 1 , 1 ] , [ 1 , 1 , 1 ] , 0 . 0 1 )
In [ 3 ] : print g
z 1
z 2 z + 1
dt = 0 . 0 1
3.10 Conversions
The Python control system toolbox only implements conversion from continuous time systems
to discrete-time systems ( c2d ) with the methods zoh, tustin and matched. No conver-
sion from discrete to continuous has been implemented yet.
The supsictrl.yottalab package implements both functions c2d and d2c with the methods zoh,
foh, tustin and matched (matched is only implemented in c2d).
22 CHAPTER 3. THE PYTHON CONTROL SYSTEM TOOLBOX
In [ 1 ] : from c o n t r o l import
In [ 3 ] : g=t f ( 1 , [ 1 , 1 , 1 ] )
In [ 4 ] # Matlab c o m p a t i b i l i t y
In [ 5 ] : gd = c2d ( g , 0 . 0 1 )
In [ 6 ] # control toolbox
In [ 7 ] : gd2 = s a m p l e s y s te m ( g , 0 . 0 1 )
In [ 8 ] : print g
1
s 2 + s + 1
In [ 9 ] : print gd
4 . 9 8 3 e 05 z + 4 . 9 6 7 e 05
z 2 1 . 9 9 z + 0 . 9 9
dt = 0 . 0 1
In [ 1 ] : from c o n t r o l import
In [ 4 ] : g=t f ( 1 , [ 1 , 1 , 1 ] )
In [ 5 ] : gd =c2d ( g , 0 . 0 1 )
In [ 6 ] : g2=d2c ( gd )
In [ 7 ] : print g
1
s 2 + s + 1
In [ 8 ] : print g2
1 . 7 2 9 e 14 s + 1
s 2 + s + 1
3.11 Casting
The control.matlab module implements the casting functions to transform LTI systems to a
transfer function (tf) or to a state-space form (ss).
3.12. MODELS INTERCONNECTION 23
In [ 8 ] : g = t f ( s y s )
In [ 9 ] : print g
1
s 2 + s + 1
In [ 1 0 ] : s y s = s s ( g )
In [ 1 1 ] : print s y s
A = [ [ 0 . 1.]
[ 1. 1.]]
B = [[ 1.]
[ 0.]]
C = [[ 0. 1.]]
D = [[ 0.]]
Commands like parallel and series are available in order to interconnect systems. The op-
erators + and * have been overloaded for the LTI class to perform the same operations. In
addition the command feedback is implemented exactly as in Matlab.
In [ 1 ] : from c o n t r o l import
In [ 2 ] : g1=t f ( 1 , [ 1 , 1 ] )
In [ 3 ] : g2=t f ( 1 , [ 1 , 2 ] )
In [ 4 ] : print p a r a l l e l ( g1 , g2 )
2 s + 3
s 2 + 3 s + 2
In [ 5 ] : print g1+g2
2 s + 3
s 2 + 3 s + 2
24 CHAPTER 3. THE PYTHON CONTROL SYSTEM TOOLBOX
In [ 6 ] : print s e r i e s ( g1 , g2 )
1
s 2 + 3 s + 2
In [ 7 ] : print g1 g2
1
s 2 + 3 s + 2
In [ 8 ] : print f e e d b a c k ( g1 , g2 )
s + 2
s 2 + 3 s + 3
Chapter 4
System analysis
1.2
In [ 1 ] : from c o n t r o l import
1.0
In [ 2 ] : import m a t p l o t l i b . p y p l o t a s p l t
0.8
In [ 3 ] : g = t f ( 1 , [ 1 , 1 , 1 ] )
0.6
y
In [ 4 ] : t , y = s t e p r e s p o n s e ( g )
0.4
In [ 5 ] : plt . plot (t , y)
...: plt . grid ()
0.2
...: plt . xlabel ( t )
...: plt . ylabel ( y )
0.0
0 2 4 6 8 10 12 14 16
t
or alternatively
In [ 1 ] : from c o n t r o l import
In [ 3 ] : import m a t p l o t l i b . p y p l o t a s p l t
In [ 4 ] : g = t f ( 1 , [ 1 , 1 , 1 ] )
In [ 5 ] : y , t = s t e p ( g )
In [ 6 ] : plt . plot (t , y)
...: plt . xlabel ( t )
...: plt . ylabel ( y )
...: plt . grid ()
25
26 CHAPTER 4. SYSTEM ANALYSIS
1.2
In [ 1 ] : from c o n t r o l import
1.0
In [ 2 ] : from c o n t r o l . matlab import c2d
0.8
In [ 3 ] : import m a t p l o t l i b . p y p l o t a s p l t
In [ 4 ] : g = t f ( 1 , [ 1 , 1 , 1 ] ) 0.6
y
In [ 5 ] : gz=c2d ( g , 0 . 1 ) 0.4
In [ 6 ] : t=a r a n g e ( 0 , 1 6 , 0 . 1 ) 0.2
In [ 7 ] : t1 , y = s t e p r e s p o n s e ( gz , t ) 0.0
0 2 4 6 8 10 12 14 16
In [ 8 ] : p l t . s t e p ( t , y .T [ 0 ] ) # t r a n s p o s e t
col m at r i x y [ 0 ]
...: plt . grid ()
...: plt . xlabel ( t )
...: plt . ylabel ( y )
or alternatively
In [ 1 ] : from c o n t r o l import
In [ 3 ] : import m a t p l o t l i b . p y p l o t a s p l t
In [ 4 ] : g = t f ( 1 , [ 1 , 1 , 1 ] )
In [ 5 ] : gz=c2d ( g , 0 . 1 )
In [ 6 ] : t=a r a n g e ( 0 , 1 6 , 0 . 1 )
In [ 7 ] : y , t1 = s t e p ( gz , t )
1.4
In [ 1 ] : from c o n t r o l import
1.2
In [ 2 ] : import m a t p l o t l i b . p y p l o t a s p l t 1.0
0.8
In [ 3 ] : a = [ [ 0 , 1 ] , [ 1 , 1 ] ]
0.6
In [ 4 ] : b = [ [ 0 ] , [ 1 ] ]
y
0.4
In [ 5 ] : c = [ 1 , 0 ] 0.2
0.0
In [ 6 ] : d = [ 0 ]
0.2
In [ 7 ] : s y s=s s ( a , b , c , d ) 0.4
0 2 4 6 8 10 12 14
In [ 8 ] : t , y=i n i t i a l r e s p o n s e ( s y s , t
X0 = [ 1 , 1 ] )
In [ 9 ] : plt . plot (t , y)
...: plt . grid ()
...: plt . xlabel ( t )
...: plt . ylabel ( y )
or alternatively
In [ 1 ] : from c o n t r o l import
In [ 3 ] : import m a t p l o t l i b . p y p l o t a s p l t
In [ 4 ] : a = [ [ 0 , 1 ] , [ 1 , 1 ] ]
In [ 5 ] : b = [ [ 0 ] , [ 1 ] ]
In [ 6 ] : c = [ 1 , 0 ]
In [ 7 ] : d = [ 0 ]
In [ 8 ] : s y s=s s ( a , b , c , d )
In [ 9 ] : y , t= i n i t i a l ( s y s , X0 = [ 1 , 1 ] )
In [ 1 0 ] : plt . plot (t , y)
...: plt . xlabel ( t )
...: plt . ylabel ( y )
...: plt . grid ()
0.6
In [ 1 ] : from c o n t r o l import
0.5
In [ 2 ] : import m a t p l o t l i b . p y p l o t a s p l t
In [ 3 ] : g = t f ( 1 , [ 1 , 1 , 1 ] ) 0.4
In [ 4 ] : t , y = i m p u l s e r e s p o n s e ( g ) 0.3
y
In [ 5 ] : plt . plot (t , y) 0.2
...: plt . grid ()
...: plt . xlabel ( t ) 0.1
...: plt . ylabel ( y )
0.0
or alternatively 0.1
0 2 4 6 8 10 12 14 16
t
In [ 1 ] : from c o n t r o l import
In [ 3 ] : import m a t p l o t l i b . p y p l o t a s p l t
In [ 4 ] : g = t f ( 1 , [ 1 , 1 , 1 ] )
In [ 5 ] : y , t = i m p u l s e ( g )
In [ 6 ] : plt . plot (t , y)
...: plt . grid ()
...: plt . xlabel ( t )
...: plt . ylabel ( y )
1 .0
In [ 1 ] : from c o n t r o l import
In [ 2 ] : import m a t p l o t l i b . p y p l o t a s p l t
0.5
In [ 3 ] : g=t f ( [ 1 , 2 ] , [ 1 , 2 , 3 , 4 ] )
In [ 4 ] : t=l i n s p a c e ( 0 , 6 p i ) 0.0
y
In [ 5 ] : u=s i n ( t )
0.5
In [ 6 ] : t , y , x = f o r c e d r e s p o n s e ( g , t , u )
In [ 7 ] : plt . plot (t , y) 1 .0
...: plt . xlabel ( t ) 0 5 10 15 20
...: plt . ylabel ( y ) t
or alternatively
In [ 1 ] : from c o n t r o l import
In [ 3 ] : import m a t p l o t l i b . p y p l o t a s p l t
In [ 4 ] : g=t f ( [ 1 , 2 ] , [ 1 , 2 , 3 , 4 ] )
In [ 5 ] : t=l i n s p a c e ( 0 , 6 p i )
In [ 6 ] : u=s i n ( t )
In [ 7 ] : y , t , x = l s i m ( g , u , t )
In [ 8 ] : plt . plot (t , y)
...: plt . xlabel ( t )
...: plt . ylabel ( y )
...: plt . grid ()
The frequency analysis includes some commands like bode response, nyquist response,
nichols response and the corresponding Matlab versions bode, nyquist and nichols. (See
figures 4.6, 4.7 and 4.8)
0
In [ 1 ] : from c o n t r o l import )
B 0
d(
e 0
In [ 2 ] : g=t f ( [ 1 ] , [ 1 , 0 . 5 , 1 ] ) d
u
i
t
n 20
g
In [ 3 ] : b o d e p l o t ( g , dB=True ) ; a 30
M
40
- 0
0 0 0
or alternatively )
g
e
d(
es
a
h
In [ 1 ] : from c o n t r o l import P
In [ 3 ] : g=t f ( [ 1 ] , [ 1 , 0 . 5 , 1 ] )
In [ 4 ] : bode ( g , dB=True ) ;
The command margins returns the gain margin, the phase margin and the corresponding
crossover frequencies.
In [ 1 ] : from c o n t r o l import
In [ 2 ] : g=t f ( 2 , [ 1 , 2 , 3 , 1 ] )
In [ 4 ] : gm # Gain , n ot dB !
Out [ 4 ] : 2 . 5 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3
In [ 5 ] : pm
Out [ 5 ] : 7 6 . 2 7 4 0 7 5 2 5 6 9 2 1 3 9 2 # deg
In [ 6 ] : wg
Out [ 6 ] : 0 . 8 5 8 6 4 8 7 7 6 1 0 1 6 7 2 0 1 # rad / s
In [ 7 ] : wp
Out [ 7 ] : 1 . 7 3 2 0 5 0 8 0 7 5 6 8 8 7 7 6 # rad / s
In addition, the command stability margins returns the stability margin and the correspond-
ing frequency. The stability margin values ws and sm , which correspond to the shortest distance
from the Nyquist curve to the critical point 1, are useful for the sensitivity analysis.
4.2. FREQUENCY ANALYSIS 31
0. 8
In [ 1 ] : from c o n t r o l import
0.6
In [ 2 ] : import m a t p l o t l i b . p y p l o t a s p l t
0.4
In [ 3 ] : g=t f ( [ 1 ] , [ 1 , 2 , 1 ] ) 0.2
0.2
0.4
or alternatively
0.6
0.8
In [ 1 ] : from c o n t r o l import .0 0.5 0.0 0.5 .0
In [ 2 ] : import m a t p l o t l i b . p y p l o t a s p l t
In [ 4 ] : g=t f ( 1 , [ 1 , 2 , 1 ] )
In [ 5 ] : n y q u i s t ( g ) , p l t . g r i d ( )
0.0 0.0
or alternatively
M
00 00.0 00.0
20.0 20.0
In [ 3 ] : nichols (g)
In [ 1 ] : from c o n t r o l import
In [ 2 ] : g=t f ( 2 , [ 1 , 2 , 3 , 1 ] )
In [ 3 ] : gm, pm, sm , wg , wp , ws = s t a b i l i t y m a r g i n s ( g )
In [ 4 ] : gm
Out [ 4 ] : 2 . 5 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 # Gain n ot dB
In [ 5 ] : pm
Out [ 5 ] : 7 6 . 2 7 4 0 7 5 2 5 6 9 2 1 3 9 2 # deg
In [ 6 ] : wg
Out [ 6 ] : 1 . 7 3 2 0 5 0 8 0 7 5 6 8 8 7 7 6 # rad / s
In [ 7 ] : wp
Out [ 7 ] : 0 . 8 5 8 6 4 8 7 7 6 1 0 1 6 7 2 0 1 # rad / s
In [ 8 ] : sm
Out [ 8 ] : 0 . 5 4 4 9 7 5 7 7 5 5 3 0 9 6 4 2 1 #
In [ 9 ] : ws
Out [ 9 ] : 1 . 3 6 6 9 3 7 1 2 0 6 5 3 8 0 9 7 # rad / s
In [ 1 ] : from c o n t r o l import
1.5
In [ 3 ] : g=t f ( [ 1 , 1 ] , [ 1 , 2 , 3 , 4 , 0 ] ) 0.5
In [ 4 ] : g . p o l e ( )
Im
0.0
Out [ 4 ] :
a r r a y ([ 1 . 6 5 0 6 2 9 1 9 + 0 . j , 0.5
0.17468540+1.5468688 9 j ,
1.0
0.17468540 1.54686889 j ,
0.00000000+0. j ]) 1.5
In [ 5 ] : g . z e r o ( ) 2.0
2.0 1.5 1.0 0.5 0.0 0.5
Out [ 5 ] : a r r a y ( [ 1 . ] ) Re
In [ 6 ] : p o l e s , z e r o s = pzmap ( g ) , g r i d ( )
In [ 7 ] : poles
Out [ 7 ] :
a r r a y ([ 1 . 6 5 0 6 2 9 1 9 + 0 . j ,
0.17468540+1.5468688 9 j ,
0.17468540 1.54686889 j ,
0.00000000+0. j ])
In [ 8 ] : z e r o s
Out [ 8 ] : a r r a y ( [ 1 . ] )
$0
In [ 1 ] : from c o n t r o l import
In [ 2 ] : g=t f ( 1 , [ 1 , 2 , 3 , 0 ] )
5
+
./
, 0
+
mI
or alternatively
#5
In [ 1 ] : from c o n t r o l import
# $0
In [ 2 ] : g=t f ( 1 , [ 1 , 2 , 3 , 0 ] ) # $2 # $0 #% #6 #4 #2 0 2 4 6
R&'*
In [ 3 ] : k=l o g s p a c e ( 3 , 3 , 1 0 0 )
Modeling
The sympy module (symbolic python) contains a full set of operations to manage physical
systems. In particular, it is possible to find the linearized model of a mechanical system using
the Lagranges method or the Kanes method. More details about the Kanes method are
available at [14], [15], [16], [17], [18] and [19].
In the next sections we present the modelling of 3 plants that we can find in our laboratories
and that are quite familiar to us.
5.1.1 Plant
In this first example we model a DC servo motor with a current input in order to find its
state-space representation. The motor is characterized by a torque constant kt , an inertia
(motor+load) J and a friction constant Dm .
The input of the plant is the current I and the output is the position . The rotation center is
the point O, the main coordinates system is N and we add a local reference frame Nr which
rotates with the load (angle and speed ).
35
36 CHAPTER 5. MODELING
In [ 3 ] : # Mechanics
...: I o = J o u t e r ( Nr . x , Nr . x )
...:
...: InT = ( Io , O)
...:
...: B = RigidBody ( B , O, Nr , M, InT )
...:
In [ 4 ] : # For c e s and t o r q u e s
. . . : f o r c e s = [ ( Nr , ( k t IDmw) N. x ) ]
...:
. . . : k i n d i f f s = [ ( ph . d i f f ( t )w) ]
...:
. . . : b o d i e s =[B ]
...:
5.1.6 Model
Using the Kanes method is now possible to find the dynamic matrices related to the plant.
In [ 5 ] : # Model
. . . : KM = KanesMethod (N, q i n d =[ph ] , u i n d =[w ] , k d e q s=
kindiffs )
. . . : f r , f r s t a r = KM. k a n e s e q u a t i o n s ( f o r c e s , b o d i e s )
...:
. . . : print f r
. . . : print f r s t a r
...:
Matrix ( [ [ Dmw( t ) + k t I ( t ) ] ] )
Matrix ( [ [ J D e r i v a t i v e (w( t ) , t ) ] ] )
From the results of the Kanes model identification, we can now extract the matrices A and B
of the state-space representation.
In [ 6 ] : # s y m b o l i c a l l y l i n e a r i z e ab ou t a r b i t r a r y
equilibrium
. . . : l i near s tate m atr i x , linear input matrix , inputs =
KM. l i n e a r i z e ( new method=True )
...:
. . . : # set the the equilibrium point
. . . : eq pt = [ 0 , 0]
. . . : e q d i c t = d i c t ( zip ( [ ph , w ] , e q p t ) )
...:
. . . : f A l i n = l i n e a r s t a t e m a t r i x . subs ( e q d i c t )
. . . : f B l i n = l i n e a r i n p u t m a t r i x . subs ( e q d i c t )
. . . : m mat = KM. m a s s m a t r i x f u l l . s u b s ( e q d i c t )
...:
. . . : # compute A and B m a t r i c e s
. . . : A = np . m a tr i x ( m mat . i n v ( ) f A l i n )
. . . : B = np . m a tr i x ( m mat . i n v ( ) f B l i n )
38 CHAPTER 5. MODELING
In [ 6 ] : print A
. . . : print B
...:
[ [ 0 1]
[ 0 Dm/ J ] ]
[[0]
[ kt /J ] ]
The second example is represented by the classical inverted pendulum as shown in figure 5.1.
P
th, w
x1
y
y1
F C
x, v
The global reference frame is Nf (x, y) The point P is the center of mass of the pendulum. The
car is moving with speed v and position C. The pole is rotating with the angle th and angular
velocity w, In addition to the main coordinate frame Nf (x, y), we define a local body-fixed
frame to the pendulum Npend (x1 , y1 ).
5.2. MODEL OF THE INVERTED PENDULUM 39
In [ 3 ] : I = o u t e r ( Nf . z , Nf . z )
. . . : I n e r t i a t u p l e = ( J I , P)
. . . : Bp = RigidBody ( Bp , P , Npend , m, I n e r t i a t u p l e )
...:
In [ 4 ] : # For c e s and t o r q u e s
. . . : f o r c e s = [ ( C, F Nf . xdv Nf . x ) , ( P,m g Nf . y ) ]
. . . : f r a m e s = [ Nf , Npend ]
. . . : p o i n t s = [ C, P ]
...:
. . . : k i n d i f f s = [ x . d i f f ( t )v , th . d i f f ( t ) w ]
. . . : p a r t i c l e s = [ Car , Bp ]
...:
5.2. MODEL OF THE INVERTED PENDULUM 41
n [ 5 ] : # Model
. . . : KM = KanesMethod ( Nf , q i n d =[x , th ] , u i n d =[v , w ] ,
k d e q s=k i n d i f f s )
. . . : f r , f r s t a r = KM. k a n e s e q u a t i o n s ( f o r c e s , p a r t i c l e s )
...:
. . . : # Equilibrium point
. . . : eq pt = [ 0 , pi /2 ,0 ,0]
. . . : e q d i c t = d i c t ( zip ( [ x , th , v , w ] , e q p t ) )
...:
. . . : # s y m b o l i c a l l y l i n e a r i z e ab ou t a r b i t r a r y
equilibrium
. . . : l i near s tate m atr i x , linear input matrix , inputs =
KM. l i n e a r i z e ( new method=True )
...:
. . . : # s u b i n t h e e q u i l i b r i u m p o i n t and t h e par am e t e r s
. . . : f A l i n = l i n e a r s t a t e m a t r i x . subs ( e q d i c t )
. . . : f B l i n = l i n e a r i n p u t m a t r i x . subs ( e q d i c t )
. . . : m mat = KM. m a s s m a t r i x f u l l . s u b s ( e q d i c t )
...:
. . . : # compute A and B
. . . : A = m mat . i n v ( ) f A l i n
. . . : B = m mat . i n v ( ) f B l i n
...:
In [ 6 ] : A
Out [ 6 ] :
Matrix ( [
[0 , 0 , 1 , 0] ,
[0 , 0 , 0 , 1] ,
[0 , g m2 r 2 / ( J M + J m + Mm r 2 ) , d (m2 r 2 / ( (
M + m) ( J M + J m
+ Mm r 2 ) ) + 1 / (M + m) ) , 0 ] ,
[ 0 , g m r (M + m) / ( J M + J m + Mm r 2 ) ,
dm r / ( J M + J m + Mm r 2 ) , 0 ] ] )
In [ 7 ] : B
Out [ 7 ] :
Matrix ( [
[
0] ,
[
0] ,
[m2 r 2 / ( (M + m) ( JM + Jm + Mm r 2 ) ) + 1 / (M + m) ] ,
[ m r / ( J M + J m + Mm r 2 ) ] ] )
and
0
0
B=
Jc+mr 2
JcM +Jcm+M mr 2
mr
JcM +Jcm+M mr 2
A more complex plant is represented by the Ball-on-Wheel system of figure 5.3, where a ball
must be maintened in the unstable equilibrium point on the top of a bike wheel.
y2
y1
ph2, w2 ph0
y
x2
x1
ph1, w1, T
In this system we have 4 reference frames. The frame N is the main reference frame, N0 rotates
with the line connecting the centers of mass of the wheel (O) and of the ball (CM2), N1 (x1 ,
y1 ) rotates with the wheel and N2 (x2 , y2 ) is body-fixed to the ball.
The radius of the wheel and of the ball are respectively R1 and R2 . The non sliding condition
is given by
The input of the system is represented by the torque T applied to the wheel.
5.3. MODEL OF THE BALL-ON-WHEEL PLANT 43
In [ 2 ] : N = ReferenceFrame ( N )
...:
...: O = P o i n t ( O )
...: O. s e t v e l (N, 0 )
...:
...: ph0 = (R1 ph1+R2 ph2 ) / (R1+R2 )
...:
...: N0 = N. o r i e n t n e w ( N0 , Axis , [ ph0 ,N. z ] )
...: N1 = N. o r i e n t n e w ( N1 , Axis , [ ph1 ,N. z ] )
...: N2 = N. o r i e n t n e w ( N2 , Axis , [ ph2 ,N. z ] )
...: N1 . s e t a n g v e l (N, w1N. z )
...: N2 . s e t a n g v e l (N, w2N. z )
...:
In [ 4 ] : I z = o u t e r (N. z ,N. z )
...: In1T = ( J1 Iz , O)
...: In2T = ( J2 Iz , CM2)
...:
...: B1 = RigidBody ( B1 , O, N1 , M1, In1T )
...: B2 = RigidBody ( B2 , CM2, N2 , M2, In2T )
...:
In [ 5 ] : #f o r c e s = [ ( N1 , (Td1 w1 ) N. z ) , (CM2,M2 g N. y ) ]
. . . : f o r c e s = [ ( N1 , TN. z ) , (CM2,M2 g N. y ) ]
...:
. . . : k i n d i f f s = [ ph1 . d i f f ( t )w1 , ph2 . d i f f ( t )w2 ]
...:
In [ 7 ] : # E q u i l i b r i u m p o i n t
. . . : eq pt = [ 0 , 0 , 0 , 0 , 0]
. . . : e q d i c t = d i c t ( zip ( [ ph1 , ph2 , w1 , w2 , T ] , e q p t ) )
...:
In [ 8 ] : # s y m b o l i c a l l y l i n e a r i z e ab ou t a r b i t r a r y
equilibrium
. . . : l i near s tate m atr i x , linear input matrix , inputs =
KM. l i n e a r i z e ( new method=True )
...:
. . . : # s u b i n t h e e q u i l i b r i u m p o i n t and t h e par am e t e r s
. . . : f A l i n = l i n e a r s t a t e m a t r i x . subs ( e q d i c t )
. . . : f B l i n = l i n e a r i n p u t m a t r i x . subs ( e q d i c t )
. . . : m mat = KM. m a s s m a t r i x f u l l . s u b s ( e q d i c t )
...:
. . . : # compute A and B
. . . : A = m mat . i n v ( ) f A l i n
. . . : B = m mat . i n v ( ) f B l i n
5.3. MODEL OF THE BALL-ON-WHEEL PLANT 45
In [ 9 ] : A
Out [ 9 ] :
Matrix ( [
[0 , 0 , 1 , 0] ,
[0 , 0 , 0 , 1] ,
[M22R12R22 g / ( ( R1 + R2 ) ( J1 J2 + J1 M2R22 + J2
M2R1 2 ) ) +
M2R12 g (M22R12R2 2 / ( ( J1 + M2R1 2 ) ( J1 J2 + J1
M2R22 +
J2 M2R1 2 ) ) + 1 / ( J1 + M2R1 2 ) ) / ( R1 + R2 ) , M22R1R2
3 g / ( ( R1 +
R2 ) ( J1 J2 + J1 M2R22 + J2 M2R1 2 ) ) + M2R1R2 g (M2
2R12R2 2 / ( ( J1 +
M2R1 2 ) ( J1 J2 + J1 M2R22 + J2 M2R1 2 ) ) + 1 / ( J1 +
M2R1 2 ) ) / ( R1 + R2 ) ,
0 , 0] ,
[ M22R13
R2 g / ( ( R1 + R2 ) ( J1 J2
+ J1 M2R22 + J2 M2R1 2 ) ) + M2R1R2 g ( J1 + M2R1 2 )
/ ( ( R1 + R2 ) ( J1 J2 +
J1 M2R22 + J2 M2R1 2 ) ) ,
M22R12R22 g / ( ( R1 + R2 ) ( J1 J2 + J1 M2R22 + J2
M2R1 2 ) ) +
M2R22 g ( J1 + M2R1 2 ) / ( ( R1 + R2 ) ( J1 J2 + J1 M2R22
+ J2 M2R1 2 ) ) , 0 ,
0]])
In [ 1 0 ] : B
Out [ 1 0 ] :
Matrix ( [
[
0] ,
[
0] ,
[M22R12R2 2 / ( ( J1 + M2R1 2 ) ( J1 J2 + J1 M2R22 +
J2 M2R1 2 ) ) +
1 / ( J1 + M2R1 2 ) ] ,
[ M2R1R2 / (
J1 J2 + J1 M2R22 +
J2 M2R1 2 ) ] ] )
or as formula
0 0 1 0
0 0 0 1
J2 M 2 R2
1g J2 M 2 R1 R2 g
0 0
A= J1 J2 R1 +J1 J2 R2 +J1 M2 R1 R2 3 3 2
2 +J1 M2 R2 +J2 M2 R1 +J2 M2 R1 R2 J1 J2 R1 +J1 J2 R2 +J1 M2 R1 R2 3 3 2
2 +J1 M2 R2 +J2 M2 R1 +J2 M2 R1 R2
J1 M 2 R2
J1 M 2 R1 R2 g 2g 0 0
(
(R1 +R2 ) J1 J2 +J1 M2 R2 +J2 M2 R2
2 1 ) (
(R1 +R2 ) J1 J2 +J1 M2 R2 +J2 M2 R2
2 )
1
and
0
0
M2 2 R2 R2
1 2 1
+
B = (J1 +M2 R21 )(
J1 +M2 R2
J1 J2 +J1 M2 R2 2
2 +J2 M2 R1 ) 1
M 2 R1 R2
J1 J2 +J1 M2 R2 +J2 M2 R2
2 1
46 CHAPTER 5. MODELING
Chapter 6
Control design
1
G(s) =
s2 + 6 s + 5
e = 0
P M 60o
and
gc = 10rad/s
1 + s Ti 1 + TD s
C(s) = K
s Ti 1 + s TD
47
48 CHAPTER 6. CONTROL DESIGN
In [ 1 ] : # Modules
In [ 2 ] : from m a t p l o t l i b . p y p l o t import
In [ 3 ] : from c o n t r o l import
In [ 5 ] : from s c i p y import s i n , s q r t
In [ 6 ] : from s u p s i c t r l . y o t t a l a b import
In [ 7 ] : g=t f ( [ 1 ] , [ 1 , 6 , 5 ] )
In [ 8 ] : bode ( g , dB=True ) ;
In [ 9 ] : s u b p l o t ( 2 1 1 ) , l e g e n d ( [ G( s ) ] , prop={ s i z e : 1 0 } )
Out [ 9 ] :
(< m a t p l o t l i b . a x e s . AxesSubplot a t 0 x 7 f 8 5 b 5 1 9 3 5 5 0 >,
<m a t p l o t l i b . l e g e n d . Legend a t 0 x 7 f 8 5 b 4 7 e 6 9 5 0 >)
In [ 1 0 ] : wgc = 10 # D e s i r e d Bandwidth
5 00
GFHJ
5 20
E 5 30
D
C@ 5 40
A
@ 5 50
?
>
t
= 5 60
<
;
5 :0
M
5 60
5 9 0 34 0 4 2
00 00 00 00
0
5 20
5 40
E
< 5 60
A
C@ 5 60
A\ 5 0 00
;
[ 5 0 20
Z
5 0 40
5 0 60
5 06 0 34 0 4 2
00 00 00 00
KLMqOMQS y TLUVWXMSY
6.1.2 PI part
Now we choose the integration time for the PI part of the controller. In this example we set
Ti = 0.15s
6.1. PI+LEAD DESIGN EXAMPLE 49
In [ 1 2 ] : # PI p a r t
In [ 1 3 ] : Ti =0.15
In [ 1 4 ] : Gpi=t f ( [ Ti , 1 ] , [ Ti , 0 ] )
In [ 1 5 ] : print PI p a r t i s : , Gpi
PI p a r t i s :
0.15 s + 1
0.15 s
In [ 1 6 ] : f i g u r e ( )
Out [ 1 6 ] : <m a t p l o t l i b . f i g u r e . F i g u r e a t 0 x 7 f 8 5 b 4 7 e a a 1 0 >
In [ 1 8 ] : h o l d
Out [ 1 8 ] : <f u n c t i o n m a t p l o t l i b . p y p l o t . hold>
In [ 2 0 ] : s u b p l o t ( 2 1 1 ) , l e g e n d ( ( [ G( s ) , Gpi ( s ) G( s ) ] ) ,
prop={ s i z e : 1 0 } )
Out [ 2 0 ] :
(< m a t p l o t l i b . a x e s . AxesSubplot a t 0 x 7 f 8 5 b 4 8 0 6 2 5 0 >,
<m a t p l o t l i b . l e g e n d . Legend a t 0 x 7 f 8 5 b 4 3 0 3 8 5 0 >)
Figure 6.2 shows the bode plot of the plant with and without the PI controller part.
40
{|}~
20 {|}~ {|}~
z
y 0
xv
w ` 20
v
t
p ` 40
t
k
j
f ` 60
M
` b0
` ] 00 ^_
0 _ 2
]0 ]0 ]0 ]0
0
z ` 50
j
w
vx
w ` ] 00
f
` ] 50
` 200 ^_
0 _ 2
]0 ]0 ]0 ]0
y
In [ 2 2 ] : ph = phase [ 0 ]
In [ 2 3 ] : i f ph>=0:
...: ph = phase [ 0 ] 3 6 0 ;
...:
In [ 2 5 ] : dPM = Phaseph
Now it is possible to calculate the lead controller by finding the values of and TD .
In [ 2 7 ] : # Lead p a r t
In [ 2 8 ] : dPMrad = dPM/180 p i
In [ 3 0 ] : print Alpha i s : , a l f a
Alpha i s : 15.4073552425
In [ 3 1 ] : TD = 1 / ( s q r t ( a l f a ) wgc ) ;
In [ 3 4 ] : f i g u r e ( )
Out [ 3 4 ] : <m a t p l o t l i b . f i g u r e . F i g u r e a t 0 x7f85b43462d 0 >
In [ 3 6 ] : h o l d
Out [ 3 6 ] : <f u n c t i o n m a t p l o t l i b . p y p l o t . hold>
In [ 3 8 ] : s u b p l o t ( 2 1 1 ) ,
l e g e n d ( ( [ G( s ) , Gpi ( s ) G( s ) , Gpi ( s ) GLead ( s ) G( s ) ] ) ,
prop={ s i z e : 1 0 } )
Out [ 3 8 ] :
(< m a t p l o t l i b . a x e s . AxesSubplot a t 0 x7f85b43736 d0 >,
<m a t p l o t l i b . l e g e n d . Legend a t 0 x 7 f 8 5 b 3 b 1 f 4 5 0 >)
Figure 6.3 shows now the bode plot of the plant, the plant with the PI part and the plant with
PI and Lead part
6.1. PI+LEAD DESIGN EXAMPLE 51
40
20
0
20
40
t
60
M
0
00 0 2 3
0 0 0 0 0
0
50
00
50
200 0 2 3
0 0 0 0 0
y
In [ 4 1 ] : K=1/mag [ 0 ]
In [ 4 3 ] : f i g u r e ( )
Out [ 4 3 ] : <m a t p l o t l i b . f i g u r e . F i g u r e a t 0 x7f85b3a703d 0 >
In [ 4 5 ] : h o l d
Out [ 4 5 ] : <f u n c t i o n m a t p l o t l i b . p y p l o t . hold>
In [ 4 8 ] :
s u b p l o t ( 2 1 1 ) , l e g e n d ( ( [ G( s ) , Gpi ( s ) G( s ) , Gpi ( s ) GLead ( s
) G( s ) ,
K Gpi ( s ) GLead ( s ) G( s ) ] ) , prop={ s i z e : 1 0 } )
Out [ 4 8 ] :
(< m a t p l o t l i b . a x e s . AxesSubplot a t 0 x 7 f 8 5 b 3 a 7 6 6 9 0 >,
<m a t p l o t l i b . l e g e n d . Legend a t 0 x 7 f 8 5 b 3 3 e 6 f 9 0 >)
In the figure 6.4 we see now that the gain plot has been translated up to get 0dB at the gain
52 CHAPTER 6. CONTROL DESIGN
crossover frequency gc .
60
40
20
0
20
t
40
60
M
0
00 0 2 3
0 0 0 0 0
0
50
00
50
200 0 2 3
0 0 0 0 0
y
Figure 6.4: Bode diagram - G (dashed), Gpi*G (dotted), Gpi*GLead*G (dot-dashed) and
K*Gpi*GLead*G
Now it is possible to simulate the controlled system after closing the loop.
6.1. PI+LEAD DESIGN EXAMPLE 53
In [ 5 0 ] : print F u l l c o n t r o l l e r : , Contr
Full c o n t r o l le r :
1 . 4 0 2 s 2 + 1 2 . 9 2 s + 2 3 . 8 2
0 . 0 0 3 8 2 1 s 2 + 0 . 1 5 s
In [ 5 4 ] : t=l i n s p a c e ( 0 , 1 . 5 , 3 0 0 )
In [ 5 5 ] : y , t = s t e p ( gt , t )
In [ 5 6 ] : f i g u r e ( )
Out [ 5 6 ] : <m a t p l o t l i b . f i g u r e . F i g u r e a t 0 x 7 f 8 5 b 3 5 1 4 2 9 0>
In [ 5 7 ] : p l o t ( t , y ) , x l a b e l ( t ) , y l a b e l ( y ) , t i t l e ( Step
r e s p o n s e o f th e
c o n t r o l l e d plant )
Out [ 5 7 ] :
([ < m a t p l o t l i b . l i n e s . Line2D a t 0 x7f85b34252 d0 > ] ,
In [ 5 8 ] : g r i d ( )
The simulation of the controlled plant with a step input is shown in figure 6.5.
t t t t
.2
.0
0.
0.6
y
0.4
0.2
0.0
0.0 0.2 0.4 0.6 0. .0 .2 .4 .6
t
(s) Kt /J
G(s) = = 2
Iin (s) s + s D/J
In [ 1 ] : from s c i p y . o p t i m i z e import l e a s t s q
In [ 2 ] : from s c i p y . s i g n a l import s t e p 2
In [ 3 ] : import numpy a s np
In [ 4 ] : import s c i p y a s sp
In [ 5 ] : from c o n t r o l import
In [ 7 ] : from s u p s i c t r l . y o t t a l a b import
In [ 8 ] : # Motor r e s p o n s e f o r l e a s t s q u a r e i d e n t i f i c a t i o n
In [ 9 ] : def r e s i d u a l s ( p , y , t ) :
...: [ k , alpha ] = p
...: g = t f ( k , [ 1 , alpha , 0 ] )
...: Y, T = s t e p ( g , t )
...: e r r=yY
...: return e r r
...:
We load the collected data to perform the parameter identification of the numerator K = Kt /J
and the denominator value = D/J.
In [ 1 0 ] : # I d e n t i f y motor
In [ 1 1 ] : x = np . l o a d t x t ( MOT ) ;
In [ 1 2 ] : t = x [ : , 0 ]
In [ 1 3 ] : y = x [ : , 2 ]
In [ 1 4 ] : I o = 1000
In [ 1 5 ] : y1 = y/ I o
In [ 1 6 ] : p0 = [ 1 , 4 ]
In [ 1 7 ] : p l s q = l e a s t s q ( r e s i d u a l s , p0 , a r g s =(y1 , t ) )
In [ 1 8 ] : k t = 0 . 0 0 0 0 3 8 2 # Motor t o r q u e c o n s t a n t
In [ 1 9 ] : Jm=k t / p l s q [ 0 ] [ 0 ] # Motor I n e r t i a
In [ 2 0 ] : Dm=p l s q [ 0 ] [ 1 ] Jm # Motor f r i c t i o n
The next step is to check how good our parameters have been identified by comparing the
simulated function with the measured data (see figure 6.6)
56 CHAPTER 6. CONTROL DESIGN
In [ 2 2 ] : Y, T = s t e p ( g , t )
In [ 2 3 ] : p l o t (T, Y, t , y1 ) , l e g e n d ( ( I d e n t i f i e d t r a n s f e r
function , Collected
data ) , prop={ s i z e : 1 0 } , l o c =2) , x l a b e l ( t ) , y l a b e l ( y ) ,
t i t l e ( Step
response ) , grid ()
Out [ 2 3 ] :
([ < m a t p l o t l i b . l i n e s . Line2D a t 0 x7fb9a1b6b590 >,
<m a t p l o t l i b . l i n e s . Line2D a t 0 x7fb9a1b6b710 > ] ,
<m a t p l o t l i b . l e g e n d . Legend a t 0 x7fb9a1b6bb10 >,
<m a t p l o t l i b . t e x t . Text a t 0 x 7 f b 9 a 3 c e c 3 1 0 >,
<m a t p l o t l i b . t e x t . Text a t 0 x7fb9a1b8b910 >,
<m a t p l o t l i b . t e x t . Text a t 0 x7fb9a1b3cbd0 >,
None )
St ep response
0.16
Ident ified t ransfer funct ion
Collect ed dat a
0.14
0.12
0.10
0.08
y
0.06
0.04
0.02
0.00
0 1 2 3 4 5
t
For the state controller design we need to model our motor in the state-space form. We define
the continuous-state and the discrete-state space model
6.2. DISCRETE-STATE FEEDBACK CONTROLLER DESIGN 57
In [ 2 4 ] : # Design C o n t r o l l e r Motor 1
In [ 2 5 ] : a = [ [ 0 , 1 ] , [ 0 , Dm/Jm ] ]
In [ 2 6 ] : b = [ [ 0 ] , [ 1 ] ]
In [ 2 7 ] : c = [ [ k t /Jm , 0 ] ] ;
In [ 2 8 ] : d = [ 0 ] ;
In [ 2 9 ] : s y s c=s s ( a , b , c , d ) # Continuous
s t a t e s pac e form
In [ 3 0 ] : Ts =0.01 # Sampling t i m e
For the controller we set a bandwidth to 6 rad/s with a damping factor of = 2/2.
In [ 3 2 ] : # C o n t r o l s y s t e m d e s i g n
In [ 3 4 ] : # S t a t e f e e d b a c k w i t h i n t e g r a l p a r t
In [ 3 5 ] : wn=6
In [ 3 6 ] : x i=np . s q r t ( 2 ) /2
In [ 3 7 ] : a n g l e = np . a r c c o s ( x i )
We add a discrete integral part to eliminate the steady state error and we obtain an additional
state for the error between reference and output signal. The two matrices and required by
the pole placement routine must be extended with the additional state.
58 CHAPTER 6. CONTROL DESIGN
In [ 3 8 ] : c l p o l e s = wn a r r a y ( [ 1 , exp (1 j a n g l e ) , exp (1 j
angle ) ] ) # three pole s
In [ 4 1 ] : s z 2=sp . shape ( s y s . B) ;
In [ 4 2 ] : # Add d i s c r e t e i n t e g r a t o r f o r s t e a d y s t a t e z e r o
error
In [ 4 3 ] : P h i f=np . v s t a c k ( ( s y s . A, s y s . CTs ) )
In [ 4 4 ] : P h i f=np . h s t a c k ( ( P h i f , [ [ 0 ] , [ 0 ] , [ 1 ] ] ) )
In [ 4 5 ] : G f=np . v s t a c k ( ( s y s . B , z e r o s ( ( 1 , 1 ) ) ) )
In [ 4 6 ] : k=p l a c e ( P h i f , G f , c l p o l e s d )
In [ 4 7 ] : #Reduced o r d e r o b s e r v e r
In [ 4 9 ] : p o c =10max( abs ( c l p o l e s ) )
In [ 5 0 ] : p od=sp . exp ( p o c Ts ) ;
In [ 5 1 ] : T= [ 0 , 1 ]
In [ 5 2 ] : r o b s=r e d o b s ( s y s , T , [ p od ] )
In [ 5 3 ] : # C o n t r o l l e r + i n t e g r a l + o b s e r v e r i n compact
form
In [ 5 4 ] : c o n t r I=c o m p f o r m i ( s y s , r o b s , k )
6.2. DISCRETE-STATE FEEDBACK CONTROLLER DESIGN 59
In [ 5 5 ] : # Anti windup
In [ 5 6 ] : [ g s s i n , g s s o u t ]= s e t a w ( c o n t r I , [ 0 , 0 ] )
The controller is discrete and the plant is continuous. At present it is not possible to
perform hybrid simulation. In some cases we can substitute the plant with the discrete-
time system and perform a discrete simulation.
The block CTRIN has two inputs. The step function can only find the output from a
single input.
The control toolbox can handle only linear system (and there is a saturation in the final
system).
60 CHAPTER 6. CONTROL DESIGN
Chapter 7
7.1 Basics
CACSD environments usually offer a graphical editor to perform the hybrid simulation (MatlabSimulink,
ScioslabScicos, ScilabxCos etc.).
The pyEdit.py application should cover this task for the Python Control environment.
In the following well explain how it is possible, from the pyEdit schematics, to generate code
for the hybrid simulation. Code for the RT controller can be generated in the same way: users
should only replace the mathematical model of the plant with the blocks interfacing the sensors
and the actuators of the real system.
7.2 pyEdit
The application pyEdit is a block diagram editor to design schematics for simulation and
code generation.
Starting points for the pyEdit application were the PySimEd project ([20]) and the qtnodes-
develop project ([21]).
PyEdit offers the most used blocks in control design. A little set of these blocks is shown in
figure 7.1.
The application offers set of operations in the toolbar as shown in the figure 7.2 and other
operations are available as popup menu by clicking on a block.
By clicking with the right mouse button on a block, a popup menu is shown, offering the
following operations:
Block I/Os to modify (if possible) the number of input and output ports of the block
Change name Each block in the diagram must have a unique name
Block parameters to modify the parameters: this operation is available with a double click
tool
61
62 CHAPTER 7. HYBRID SIMULATION AND CODE GENERATION
rem
gen
de
con
File ops.
sta
let
rt p
era
ov
nec
ee
en
te
yth
lem
od
cod
on
en
e
e
Click again the left mouse on an input port of a block to finish the connection or click
the mouse to obtain a node and to continue to draw the connection.
Click with the right mouse button on a connection to create a new node.
If a new node is needed into a connection simply click on it with the right mouse button.
Move to a block or node and click with the left mouse button.
Click with the left mouse button on the node. The connection is maintained but the node
is cleared.
64 CHAPTER 7. HYBRID SIMULATION AND CODE GENERATION
Chapter 8
65
66 CHAPTER 8. SIMULATION AND CODE GENERATION
y = g(x, u, t)
(8.1)
x = f(x, u, t)
yk = g(xk , uk , k)
(8.2)
xk+1 = f(xk , uk , k)
The g(. . .) function represents the static part of the block. This function is used to read inputs,
read sensors, write actuators or update the outputs of the block.
The second function (f(. . .)) is only required if the block has internal states, and it is only used
by dynamic systems. In addition, each block implements two other functions, one for the block
initialization and one to cleanly terminate it.
All these functions are programmed as C-files, compiled and archived into a library.
In this dialog it is possible to choose the template makefile for simulation or real-time execu-
tion, the sampling time of the system and some additional libraries, reuired for the simulation
with FMU packages.
After this first setup it is possible to translate the block diagram into a list of elements of
the class RCPblk provided by the suspictrl package. This class contains all the information
required for the code generation and can be expanded in the future to handle additional fields
(ex. the type of the I/O signals: int, double etc.).
This class contains the following fields:
uy: a flag which indicates a direct dependency between input and output signals (feed-through
flag).
For example, the diagram in figure 8.3 is translated into the following code
STEP = s t e p B l k ( [ 1 ] , 1 , 1)
PM = sumBlk ( [ 1 , 3 ] , [ 2 ] , [1 , 1])
CSS = c s s B l k ( [ 2 ] , [ 3 ] , sys , 0)
PRINT = p r i n t B l k ( [ 1 , 3 ] )
1 2
3
The block CSS has one input connected to node and one output connected to node , it is
a continuous transfer function (cssBlk, 1/(s + 1)) with zero initial conditions. The PM block
has 2 inputs connected to node and , one output connected to node and performs a
subtraction of the output from the input signals.
flag of the block object. When in a block the uy flag is set to 1, we need the output of the
blocks connected at his input before starting to update his output. This means that we have
to generate a dependency tree of all the blocks and then we must rearrange the order of the
block list for code generation.
In linear blocks for examples, the uy flag is set if the D matrix is not null.
In the blockdiagram of figure 8.3, the PM and the PRINT blocks require to know their inputs
before update their outputs.
In [ 5 ] : NrOfNodes = 3
In [ 6 ] : o r d e r e d l i s t = d e tB l k S e q ( NrOfNodes , b l k s )
In [ 7 ] : f o r n in o r d e r e d l i s t :
...: print n
...:
F u n c ti o n : css
In p u t p o r t s : [2]
Outputs p o r t s : [3]
Nr . o f s t a t e s : [2 0]
R e l a t i o n u>y : 0
Real p a r a m e te r s : [ [ 0. 0 . 1. 1 . 1. 1.
0. 0 . 1. 0 . 0. 0.]]
I n t e g e r p a r a m e te r s : [ 2 1 1 1 5 7 9 1 0 ]
S t r i n g Parameter :
F u n c ti o n : step
In p u t p o r t s : []
Outputs p o r t s : [1]
Nr . o f s t a t e s : [0 0]
R e l a t i o n u>y : 0
Real p a r a m e te r s : [1 1]
I n t e g e r p a r a m e te r s : []
S t r i n g Parameter :
F u n c ti o n : print
In p u t p o r t s : [1 3]
Outputs p o r t s : []
Nr . o f s t a t e s : [0 0]
R e l a t i o n u>y : 1
Real p a r a m e te r s : []
I n t e g e r p a r a m e te r s : []
S t r i n g Parameter :
F u n c ti o n : sum
In p u t p o r t s : [1 3]
Outputs p o r t s : [2]
Nr . o f s t a t e s : [0 0]
R e l a t i o n u>y : 1
Real p a r a m e te r s : [ 1 1]
I n t e g e r p a r a m e te r s : []
S t r i n g Parameter :
If the block diagram contains algebraic loops it is not possible to find a solution for the det-
BlkSeq function and an error is raised.
In this function each block is translated into a python block structure defined as follows:
typedef struct {
int nin ; / Number o f i n p u t s /
i n t nout ; / Number o f o u t p u t s /
i n t nx ; / Cont . and D i s c r s t a t e s /
v o i d u ; / i n p u t s /
v o i d y ; / o u t p u t s /
double r eal P ar ; / Real p a r a m e te r s /
int intPar ; / I n t p a r a m e te r s /
char str ; / S t r i n g /
v o i d p tr P a r ; / G e n e r i c p o i n t e r /
} python block ;
The nodes of the block diagram are defined as double variables and the inputs and outputs
of the blocks are defined as vectors of pointers to them.
...
/ Nodes /
s t a t i c d o u b l e Node 1 [ ] = { 0 . 0 } ;
s t a t i c d o u b l e Node 2 [ ] = { 0 . 0 } ;
s t a t i c d o u b l e Node 3 [ ] = { 0 . 0 } ;
/ In p u t and o u t p u t s /
s t a t i c void i nptr 0 [ ] = {0};
s t a t i c void outptr 0 [ ] = {0};
s t a t i c void outptr 1 [ ] = {0};
s t a t i c void i nptr 2 [ ] = {0 ,0};
s t a t i c void i nptr 3 [ ] = {0 ,0};
s t a t i c void outptr 3 [ ] = {0};
...
i n p t r 0 [ 0 ] = ( v o i d ) Node 2 ;
o u t p t r 0 [ 0 ] = ( v o i d ) Node 3 ;
..
b l o c k t e s t [ 0 ] . nin = 1 ;
b l o c k t e s t [ 0 ] . nout = 1 ;
b l o c k t e s t [ 0 ] . nx = nx 0 ;
block test [ 0 ] . u = inptr 0 ;
block test [ 0 ] . y = outptr 0 ;
...
After this initialization phase, the implementation functions of the blocks are called with the
flag INIT.
8.5. THE MAIN FILE 71
c s s ( INIT , &b l o c k t e s t [ 0 ] ) ;
s t e p ( INIT , &b l o c k t e s t [ 1 ] ) ;
print ( INIT , &b l o c k t e s t [ 2 ] ) ;
sum( INIT , &b l o c k t e s t [ 3 ] ) ;
This procedure calls the implementation functions of the blocks with the flag END.
This procedure represents the periodic task of the RT execution. First of all, the implementation
functions are called with the flag OUT, in order to perform the output update of each blocks.
As a second step, the implementation functions of the block containing internal states (nx 6= 0)
are called with the flag STUPD (state update).
...
c s s (OUT, &b l o c k t e s t [ 0 ] ) ;
s t e p (OUT, &b l o c k t e s t [ 1 ] ) ;
print (OUT, &b l o c k t e s t [ 2 ] ) ;
sum(OUT, &b l o c k t e s t [ 3 ] ) ;
...
c s s (OUT, &b l o c k t e s t [ 0 ] ) ;
c s s (STUPD, &b l o c k t e s t [ 0 ] ) ;
...
The core of the RT execution is represented by the python main rt.c file. During the RT
execution, the main procedure starts a high priority thread for handling the RT behavior of
the system. The following main file, for example, is used to launch the executable in a Linux
preempt rt environment.
72 CHAPTER 8. SIMULATION AND CODE GENERATION
v o i d r t t a s k ( v o i d p )
{
...
param . s c h e d p r i o r i t y = p r i o ;
i f ( s c h e d s e t s c h e d u l e r ( 0 , SCHED FIFO , ¶m )==1){
perror ( sched setscheduler f a i l e d ) ;
e x i t ( 1) ;
}
...
d o u b l e Tsamp = NAME(MODEL, g e t t s a m p ) ( ) ;
...
NAME(MODEL, i n i t ) ( ) ;
while ( ! end ) {
/ w a i t u n t i l l next s h o t /
c l o c k n a n o s l e e p (CLOCK MONOTONIC,
TIMER ABSTIME, &t , NULL) ;
...
/ p e r i o d i c t a s k /
NAME(MODEL, i s r ) (T) ;
...
}
NAME(MODEL, e n d ) ( ) ;
}
Chapter 9
Example
One of the educational plants available at the SUPSI laboratory is the system shown in fig-
ure 9.1. This example is located in to the pycontrol/Tests/ControlDesign/DisksAndSpring
folder,
Two disks are connected by a spring. The goal for the students is to control the angle of the
disk on the right by applying an appropriate torque to the disk on the left.
The physical model of this plant can be directly calculated in python using for example the
sympy toolbox. Sympy can deliver a symbolic description of the system and through a python
dictionary it is possible to easily obtain the numerical matrices of the state-space representation
of the plant.
73
74 CHAPTER 9. EXAMPLE
In [ 4 ] : A
Out [ 4 ] :
m a tr i x ( [ [ 0 , 0 , 1 , 0 ] ,
[0 , 0 , 0 , 1] ,
[ c / J1 , c / J1 , (d d1 ) / J1 , d/ J1 ] ,
[ c / J2 , c / J2 , d/ J2 , (d d2 ) / J2 ] ] )
In [ 5 ] : B1
Out [ 5 ] :
m a tr i x ( [ [ 0 , 0 ] ,
[0 , 0] ,
[ k t1 / J1 , 0 ] ,
[ 0 , k t2 / J2 ] ] )
In [ 6 ] : B = B1 [ : , 0 ]
In [ 7 ] : C
Out [ 7 ] : [ [ 1 , 0 , 0 , 0 ] , [ 0 , 1 , 0 , 0 ] ]
In [ 8 ] : C2
Out [ 8 ] : [ 0 , 1 , 0 , 0 ]
In [ 9 ] : D
Out [ 9 ] : [ [ 0 ] , [0]]
In [ 1 0 ] : D2
Out [ 1 0 ] : [ 0 ]
The control system toolbox and the additional yottalab.py package contain all the functions
required for the design of the controller. In this case we design a discrete-state feedback
controller with integral part for eliminating steady-state errors. The states are estimated with
a reduced-order observer. In addition, an anti-windup mechanism has been implemented. The
sampling time is set to 10 ms.
The yottalab module offers 3 functions that facilitate the controller design:
The function red obs(sys, T, poles) which implements the reduced-order observer for the
system sys, using the submatrix T (required to obtain the estimator C-matrix and the
desired state-estimator poles poles.
The function comp form i(sys,obs,K,Cy) that transforms the observer obs with the
state-feedback gains K and the integrator part into a single dynamic block with the
reference signal and the two positions 1 and 2 as inputs and the control current I1 as
output. The vector Cy is used to select 2 as the output signal that is compared with the
reference signal for generating the steady-state error for the integral part of the controller.
The function set aw(sys,poles) that transforms the previous controller (Contr(s) =
N(s)/D(s)) in an input state-space system and a feedback state-space system, imple-
menting the anti-windup mechanism. The vector poles contains the desired poles of the
two new systems (Dnew (s)) (see figure 9.2).
9.2. THE PLANT MODEL 75
N(s)
sysin (s) =
Dnew (s)
D(s)
sysf bk (s) = 1
Dnew (s)
1 sys_in 1
In1 Out1
LTI System Saturation
sys_fbk
LTI System1
# Sampling t i m e
t s = 10 e3
g s s 1 = s s (A, B, C,D)
g s s = s s (A, B, C2 , D2)
gz = c2d ( g s s , ts , zoh )
76 CHAPTER 9. EXAMPLE
# Control design
wn = 10
x i 1 = np . s q r t ( 2 ) /2
xi2 = 0.85
cl p 1 = [ 1 , 2 x i 1 wn , wn 2 ]
cl p 2 = [ 1 , 2 x i 2 wn , wn 2 ]
cl p 3 = [ 1 , wn ]
cl p o l y 1 = sp . polymul ( c l p 1 , c l p 2 )
cl p o l y = sp . polymul ( c l p o l y 1 , c l p 3 )
cl p o l e s = sp . r o o t s ( c l p o l y ) # Desired continuous
poles
c l p o l e s d = sp . exp ( c l p o l e s t s ) # D e s i r e d d i s c r e t e p o l e s
# P ol e pl ac e m e n t
k = placep ( Phi f , G f , c l p o l e s d )
# O b s e r v e r d e s i g n r e du c e d o r d e r o b s e r v e r
p o l i o = 5 c l p o l e s [ 0 : 2 ]
p o l i o z = sp . exp ( p o l i o t s )
d i s k s = s s (A, B, C,D)
d i s k s z = S t a t e S p a c e ( gz . A, gz . B , C, D, t s )
T = [[0 ,0 ,1 ,0] ,[0 ,0 ,0 ,1]]
# Reduced o r d e r o b s e r v e r
r o b s = r e d o b s ( d i s k s z ,T, p o l i o z )
# Implement a n t i windup
[ gs s i n , gs s out ] = set aw ( contr I , [ 0 . 1 , 0 . 1 , 0 . 1 ] )
9.5 Simulation
We can perform the simulation of the discrete-time controller with the continuous-time math-
ematic plant model using the block diagram of figure 9.3
This diagram is stored as disks sim.dgm in the folder.
The plant is represented by a continuous-time state-space block with 1 input and 2 outputs.
The controller implements the state-feedback gains and the state observer and it has been split
into a CTRIN block and a CTRFBK block in order to implement the anti-windup mechanism.
9.6. REAL-TIME CONTROLLER 77
We can now generate the code for the simulation and launch the generated executable. The
template makefile for this executable is sim.tmf.
After creating the script for code generation (button in the toolbar) it is possible to proceed
with the simulation,
Open a python terminal (for example by clicking on the python button in the toolbar), and
give the following commands:
run DisksAndSpringKane . py
run i d i s k s s i m . py
! make
! pySim d i s k s s i m 40
The plots resulting from the simulation are shown in figure 9.4.
81
82 BIBLIOGRAPHY
[19] A. Purushotham1 and M. J.Anjeneyulu. Kanes Method for Robotic Arm Dynamics: a
Novel Approach. [Online]. Available: http://www.iosrjournals.org/iosr-jmce/papers/vol6-
issue4/B0640713.pdf