Introduction To Control Strategies and Modelling For Control
Introduction To Control Strategies and Modelling For Control
Process Control
Prof. Kannan M. Moudgalya
IIT Bombay
Tuesday, 24 July 2012
Feed composition x1 is a
Control
Mixture Valve
A, B 1. Controlled variable
x1 , w1 2. Manipulated
Pure A variable
x2 = 1
w2 =? 3. Disturbance variable
Answer:
x, w Disturbance variable
Outlet composition x is a
Control
Mixture Valve
A, B 1. Controlled variable
x1 , w1 2. Manipulated
Pure A variable
x2 = 1
w2 =? 3. Disturbance variable
Answer:
x, w Controlled variable
x, w
x, w
AT AC
Control
Mixture Valve
A, B
x1 , w1
x x1
Pure A I w 2 = w1
x2 = 1 1x
w2 =?
x, w
Control
Mixture Valve
A, B
x1 , w1
Pure A
x2 = 1
w2 =?
x, w
21/39 Process Control Modelling for Control
Direct Regulation of Controlled Variable
Control
Mixture Valve
A, B AC
x1 , w1
Pure A
x2 = 1
w2 =?
AT
x, w
I w2 (t) = w2,old + K(x x(t))
I w2,old is nominal operating value
I x is the desired value
I K to be decided
I Is K positive or negative?
22/39 Process Control Modelling for Control
Salient features of feedback control -
General
x, w
I Disturbance affects the system before
corrective action
I Feedback control requires measurement
of the controlled (=output) variable
I Useful when exact knowledge is not
available
24/39 Process Control Modelling for Control
Assignment for discussion
x2 6= 1
w2 =?
x, w
dx
V = w1 x1 + w2 x2 (w1 + w2 )x
dt
dx
V + (w1 + w2 )x = w1 x1 + w2 x2
dt
dx
Divide by w1 + w2 : +x=C
dt
Integrating Factor = et/
29/39 Process Control Modelling for Control
Solution to the Mixing Process
dx x C
et/ + et/ = et/
dt
d t/ C
e x = et/
Z dt
Z C
d et/ x = et/ dt
t/ t/
e x=e C+K
Use IC: at t = 0, x = x(0):
K = x(0) C
h i
t/ t/
x=e x(0) + C 1 e
30/39 Process Control Modelling for Control
Solution through Integrating Factor
h i
t/ t/
x=e x(0) + C 1 e
V
=
w1 + w 2
w1 x1 + w2 x2
C=
w1 + w2
x(0) = C(0)
I Initial conditions:
V = 2 m3
= 900 kg/m3
w1 (0) = 500 kg/min
w2 (0) = 200 kg/min
x1 (0) = 0.4
x2 (0) = 0.75
I w1 changes to 400 kg/min suddenly
0.518
0.516
0.514
0.512
0.510
0.508
0.506
0.504
0.502
0.500
0 5 10 15 20 25
V = 2 m3
= 900 kg/m3
w1 (0) = 500 kg/min
w2 (0) = 200 kg/min
x1 (0) = 0.4
x2 (0) = 0.75
I w2 changes to 100 kg/min suddenly
I Simultaneously, x1 changes to 0.6
suddenly
35/39 Process Control Modelling for Control
Scilab code 01-ex2p1b.sce
1 V = 2;
2 rho = 900;
3 w10 = 5 0 0 ;
4 w20 = 2 0 0 ;
5 x10 = 0 . 4 ; x20 = 0 . 7 5 ;
6 x0 = ( w10 x10+w20 x20 ) / ( w10+w20 ) ;
7 %
8 % A f t e r the sudden change
9 w1 = w10 ; w2 = 1 0 0 ;
10 x1 = 0 . 6 ; x2 = x20 ;
11 t a u = V r h o / ( w1+w2 ) ;
12 C = ( w1 x1+w2 x2 ) / ( w1+w2 ) ;
13 t = log sp ac e ( 3 ,1.39 ,100) ;
14 x=e x p ( t / t a u ) x0 + C(1 e x p ( t / t a u ) ) ;
15 plot2d ( t , x)
16 s e t ( gca ( ) , g r i d , [ 1 1 ] )
36/39 Process Control Modelling for Control
Plot of x vs. t for 01-ex2p1b.sce
0.60
0.55
0.50
0 5 10 15 20 25
I kannan@iitb.ac.in