www.gusucode.com > control_featured 案例源码程序 matlab代码 > control_featured/GSSpecifyingDelays.m

    %% Specifying Time Delays
% This example shows how the Control System Toolbox(TM) lets you represent,
% manipulate, and analyze any LTI model with a finite number of delays. The
% delays can be at the system inputs or outputs, between specific I/O pair,
% or internal to the model (e.g., inside a feedback loop).

%   Copyright 1986-2012 The MathWorks, Inc.

 
%% Time Delays in LTI Models 
% Transfer function (TF), zero-pole-gain (ZPK), and frequency 
% response data (FRD) objects offer three properties for 
% modeling delays:
%
% * InputDelay, to specify delays at the inputs
% * OutputDelay, to specify delays at the outputs
% * IODelay, to specify independent transport delays for each I/O pair.
%
% The state-space (SS) object has three delay-related properties as well:
%
% * InputDelay, to specify delays at the inputs
% * OutputDelay, to specify delays at the outputs
% * InternalDelay, to keep track of delays when combining models or 
%   closing feedback loops.
%
% The ability to keep track of internal delays makes the state-space representation
% best suited to modeling and analyzing delay effects in control systems. 
% This tutorial shows how to construct and manipulate systems 
% with delays. See the "Analyzing Control Systems with Delays" tutorial for 
% insights on how to analyze delay effects. 

%% First-Order Plus Dead Time Models
% First-order plus dead time models are commonly used
% in process control applications. One such example is:
%
% $$P(s) = {5 e^{-3.4 s} \over s+1} $$
%
% To specify this transfer function, use
num = 5;
den = [1 1];
P = tf(num,den,'InputDelay',3.4)

%% 
% As expected, the step response of |P| is a shifted version of the delay-free
% response:
P0 = tf(num,den);
step(P0,'b',P,'r')

%%
% If the process model has multiple outputs, for example:
%
% $$P(s) = \left[\matrix{{5 e^{-3.4 s} \over s+1} \cr {-2 e^{-2.7 s} \over s+3} }\right] , $$
%
% you can use the OutputDelay property to specify a different
% delay for each output channel:
num = {5 ; -2};
den = {[1 1] ; [1 3]};
P = tf(num,den,'OutputDelay',[3.4 ; 2.7])

%% 
% Next consider a multi-input, multi-output model, e.g.,
%
% $$P(s) = \left[\matrix{{5 e^{-3.4 s} \over s+1} & 1 \cr {-2 e^{-2.7 s} \over s+3} & {e^{-0.7 s} \over s} }\right] . $$
%
% Here the delays are different for each I/O pair, so you must use the IODelay property:
num = {5 , 1; -2 1};
den = {[1 1] , 1; [1 3], [1 0]};
P = tf(num,den,'IODelay',[3.4  0;2.7 0.7]);

%% 
% A more direct and literal way to specify this model is to introduce 
% the Laplace variable "s" and use transfer function arithmetic:
s = tf('s');
P = [ 5*exp(-3.4*s)/(s+1) , 1 ; -2*exp(-2.7*s)/(s+3) , exp(-0.7*s)/s ]

%%
% Note that in this case, MATLAB(R) automatically decides how to distribute
% the delays between the InputDelay, OutputDelay, and IODelay properties. 
P.InputDelay
P.OutputDelay
P.IODelay

%%
% The function |totaldelay| sums up the input, output, and I/O delay values
% to give back the values we entered:
totaldelay(P)

%% State-Space Models with Input and Output Delays
% Consider the state-space model:
%
% $$ {dx \over dt} = - x(t) + u(t-2.5) , \;\; y(t) = 12 x(t) . $$
%
% Note that the input signal u(t) is delayed by 2.5 seconds. To specify
% this model, enter:
sys = ss(-1,1,12,0,'InputDelay',2.5)

%%
% A related model is 
%
% $$ {dx_1 \over dt} = - x_1(t) + u(t) , \;\; y(t) = 12 x_1(t-2.5) . $$
%
% Here the 2.5 second delay is at the output, as seen by rewriting these state equations as: 
%
% $$ {dx_1 \over dt} = - x_1(t) + u(t) , \;\; y_1(t) = 12 x_1(t) , \;\; 
% y(t) = y_1(t-2.5) . $$
%
% You can therefore specify this model as:
sys1 = ss(-1,1,12,0,'OutputDelay',2.5);

%%
% Note that both models have the same I/O response as confirmed by
step(sys,'b',sys1,'r--')

%%
% However, their state trajectories are not the same because
% the states |x| and |x1| are related by
%
% $$ x(t) = x_1 (t-2.5) $$

%% Combining Models with I/O Delays
% So far we have only considered LTI models with transport delays between
% specific I/O pairs.  While this is enough to model many processes, this
% class of models is not general enough to analyze most control systems with 
% delays, including simple feedback loops with delays. For example, consider the 
% parallel connection:
%
% $$ H(s) = H_1(s) + H_2(s) = {1 \over s+2} + {5 e^{-3.4 s} \over s+1} $$
%
% The resulting transfer function
%
% $$ H(s) = {s + 1 + (5 s + 10) e^{-3.4 s} \over (s+1)(s+2) } $$
%
% cannot be represented as an ordinary transfer function with a delay at the
% input or output. To represent $H(s)$, we must switch to the state-space
% representation and use the notion of "internal delay". State-space (SS) models 
% have the ability to keep track of delays when
% connecting systems together. Structural information on the delay location
% and their coupling with the remaining dynamics is encoded in an efficient
% and fully general manner. Adding the transfer functions $H_1(s)$ and $H_2(s)$
% together automatically computes a state-space representation of $H(s)$:

H1 = 1/(s+2);
H2 = 5*exp(-3.4*s)/(s+1);
H = H1 + H2

%% 
% Note that
%
% * The delay value of 3.4 is listed as "internal"
% * The A,B,C,D data corresponds to the dynamics when all delays are set to
% zero (zero-order Pade approximation)
%
% It is neither possible nor advisable to look at the transfer function of 
% models with internal delays. Instead, use time and frequency plots 
% to compare and validate models:
step(H1,H2,H)
legend('H1','H2','H','Location','NorthWest'), grid

%%
bode(H1,'b',H-H2,'r--')  % verify that H-H2 = H1
grid

%% Building Models with Internal Delays
% Typically, state-space models with internal delays are not created by
% specifying A,B,C,D data together with a set of internal delays. 
% Rather, you build such models by connecting simpler LTI models (some with
% I/O delays) in series, parallel, or feedback. There is no limitation on
% how many delays are involved and how the LTI models are connected
% together.
%
% For example, consider the control loop shown below, where the plant is 
% modeled as a first-order plus dead time. 
%
% <<../GSSpecifyingDelays_01.png>>

%%
% *Figure 1:* Feedback Loop with Delay.

%%
% Using the state-space 
% representation, you can derive a model |T| for the closed-loop response from
% r to y and simulate it by
P = 5*exp(-3.4*s)/(s+1);
C = 0.1 * (1 + 1/(5*s));
T = feedback(P*C,1);

step(T,100)
grid, title('Closed-loop step response')

%% 
% For more complicated interconnections, you can name the input and output
% signals of each block and use |connect| to automatically take care of 
% the wiring. Suppose, for example, that you want to add  feedforward 
% to the control loop of Figure 1:
%
% <<../GSSpecifyingDelays_02.png>>

%%
% *Figure 2:* Feedforward and Feedback Control.

%%
% You can derive the corresponding closed-loop model |T| by
F = 0.3/(s+4);
P.u = 'u';  P.y = 'y';
C.u = 'e';  C.y = 'uc';
F.u = 'r';  F.y = 'uf';
Sum1 = sumblk('e = r-y');
Sum2 = sumblk('u = uf+uc');
Tff = connect(P,C,F,Sum1,Sum2,'r','y');

%%
% and compare its response with the feedback only design:
step(T,'b',Tff,'r',100)
legend('No feedforward','Feedforward')
grid, title('Closed-loop step response with and without feedforward')

%% State-Space Equations with Delayed Terms
% A special class of LTI models with delays are state-space equations
% with delayed terms. The general form is 
%
% $$ {dx \over dt} = A x(t) + B u(t) + \sum_j ( A_j x(t-\tau_j) + B_j u(t-\tau_j) ) $$
%
% $$ y(t) = C x(t) + D u(t) + \sum_j ( C_j x(t-\tau_j) + B_j u(t-\tau_j) ) $$
% 
% The function |delayss| helps you specify such models. For example, consider
%
% $${dx \over dt} = -x(t) - x(t-1.2) + 2 u(t-0.5) , \;\; y(t) = x(t-0.5) + u(t) $$
%
% To create this model, specify |Aj,Bj,Cj,Dj| for each delay and use
% |delayss| to assemble the model:
DelayT(1) = struct('delay',0.5,'a',0,'b',2,'c',1,'d',0);   % tau1=0.5
DelayT(2) = struct('delay',1.2,'a',-1,'b',0,'c',0,'d',0);  % tau2=1.2
sys = delayss(-1,0,0,1,DelayT)

%% 
% Note that the |A,B,C,D| values are for all delays set to zero. The 
% response for these values need not be close to the actual response with
% delays:
step(sys,'b',pade(sys,0),'r')

%% Discrete-Time Models with Delays
% Discrete-time delays are handled in a similar way with some minor 
% differences:
% 
% * Discrete-time delays are always integer multiples of the sampling 
%   period
% * Discrete-time delays are equivalent to poles at z=0, so it is 
%   always possible to absorb delays into the model dynamics. However, keeping
%   delays separate is better for performance, especially
%   for systems with long delays compared to the sampling period.

%%
% To specify the first-order model
%
% $$ H(z) = z^{-25} { 2 \over z - 0.95 } $$
%
% with sampling period Ts=0.1, use
H = tf(2,[1 -0.95],0.1,'inputdelay',25)
step(H)

%%
% The equivalent state-space representation is 
H = ss(H)

%%
% Note that the delays are kept separate from the poles. 
% Next, consider the feedback loop below where g is a pure gain.
%
% <<../GSSpecifyingDelays_03.png>>

%%
% *Figure 3*: Discrete-Time Feedback Loop.

%%
% To compute the closed-loop response for |g=0.01|, type
g = .01;
T = feedback(g*H,1)
step(T)

%% 
% Note that |T| is still a first-order model with an internal delay of 25
% samples. For comparison, map all delays to poles at z=0 using |absorbDelay|:
T1 = absorbDelay(T);
order(T1)

%% 
% The resulting model has 26 states and is therefore less efficient to 
% simulate. Note that the step responses of |T| and |T1| exactly match as expected:
step(T,'b',T1,'r--')

%%
% In general, it is recommended to keep delays separate except when analyzing
% the closed-loop dynamics of models with internal delays:
rlocus(H)
axis([-1 2 -1 1])

%% Inside State-Space Models with Internal Delays
% State-space objects use generalized state-space equations to 
% keep track of internal delays. Conceptually, such models
% consist of two interconnected parts:
%
% * An ordinary state-space model |H(s)| with augmented I/O set
% * A bank of internal delays.
%
% <<../GSSpecifyingDelays_04.png>>

%%
% *Figure 4*: Internal Representation of State-Space Models with Internal Delays.

%% 
% The corresponding state-space equations are
%
% $$\matrix{ \dot{x}(t) = A x(t) + B_1 u(t) + B_2 w(t) \;\;\;\; \cr
%            y(t) = C_1 x(t) + D_{11} u(t) + D_{12} w(t) \cr
%            z(t) = C_2 x(t) + D_{21} u(t) + D_{22} w(t) \cr
%            w_j(t) = z_j(t - \tau_j) , \;\; j = 1,...,N } \;\;\;\; \;\;\;\; $$
%%
% You need not bother with this internal representation 
% to use the tools. However, if for some reason you want to extract
% |H| or the matrices |A,B1,B2,...|, you can do this with |getDelayModel|.
% For the example  
P = 5*exp(-3.4*s)/(s+1);
C = 0.1 * (1 + 1/(5*s));
T = feedback(P*C,1);

[H,tau] = getDelayModel(T,'lft');
size(H)

%%
% Note that |H| is a two-input, two-output model whereas |T| is SISO.
% The inverse operation (combining |H| and |tau| to construct |T|) is 
% performed by |setDelayModel|.