absolute stability for quantized system -凯发k8网页登录
this example shows how to enforce absolute stability when a linear time-invariant system is in feedback interconnection with a static nonlinearity that belongs to a conic sector.
feedback connection
consider the feedback connection as shown in figure 1.
figure 1: feedback connection
is a linear time invariant system, and is a static nonlinearity that belongs to a conic sector (where ); that is,
for this example, is the following discrete-time system.
a = [0.9995, 0.0100, 0.0001; -0.0020, 0.9995, 0.0106; 0, 0, 0.9978]; b = [0, 0.002, 0.04]'; c = [2.3948, 0.3303, 2.2726]; d = 0; g = ss(a,b,c,d,0.01);
sector bounded nonlinearity
in this example, the nonlinearity is the logarithmic quantizer, which is defined as follows:
where, . this quantizer belongs to a sector bound . for example, if , then the quantizer belongs to the conic sector [0.1818,1.8182].
% quantizer parameter rho = 0.1; % lower bound alpha = 2*rho/(1 rho) % upper bound beta = 2/(1 rho)
alpha = 0.1818 beta = 1.8182
plot the sector bounds for the quantizer.
plotsectorbound(rho)
represents the quantization density, where . if is larger, then the quantized value is more accurate. for more details about this quantizer, see [1].
conic sector condition for absolute stability
the conic sector matrix for the quantizer is given by
to guarantee stability of the feedback connection in figure 1, the linear system needs to satisfy
where, and are the input and output of , respectively.
this condition can be verified by checking if the sector index, , is less than 1
.
define the conic sector matrix for a quantizer with .
q = [1,-(alpha beta)/2;-(alpha beta)/2,alpha*beta];
get the sector index for q
and g
.
r = getsectorindex([1;-g],-q)
r = 1.8247
since , the closed-loop system is not stable. to see this instability, use the following simulink model.
mdl = 'dtquantization';
open_system(mdl)
run the simulink model.
sim(mdl)
open_system('dtquantization/output')
from the output trajectory, it can be seen that the closed-loop system is not stable. this is because the quantizer with is too coarse.
increase the quantization density by letting . the quantizer belongs to the conic sector [0.4,1.6].
% quantizer parameter rho = 0.25; % lower bound alpha = 2*rho/(1 rho) % upper bound beta = 2/(1 rho)
alpha = 0.4000 beta = 1.6000
plot the sector bounds for the quantizer.
plotsectorbound(rho)
define the conic sector matrix for a quantizer with .
q = [1,-(alpha beta)/2;-(alpha beta)/2,alpha*beta];
get the sector index for q
and g
.
r = getsectorindex([1;-g],-q)
r = 0.9702
the quantizer with satisfies the conic sector condition for stability of the feedback connection since .
run the simulink model with .
sim(mdl)
open_system('dtquantization/output')
as indicated by the sector index, the closed-loop system is stable.
reference
[1] m. fu and l. xie,"the sector bound approach to quantized feedback control," ieee transactions on automatic control 50(11), 2005, 1698-1711.