passivity indices -凯发k8网页登录
this example shows how to compute various measures of passivity for linear time-invariant systems.
passive systems
a linear system g(s) is passive when all i/o trajectories satisfy
where denotes the transpose of .
to measure "how passive" a system is, we use passivity indices.
the input passivity index is defined as the largest such that
the system g is "input strictly passive" (isp) when . is also called the "input feedforward passivity" (ifp) index and corresponds to the minimum feedforward action needed to make the system passive.
the output passivity index is defined as the largest such that
the system g is "output strictly passive" (osp) when . is also called the "output feedback passivity" (ofp) index and corresponds to the minimum feedback action needed to make the system passive.
the i/o passivity index is defined as the largest such that
the system is "very strictly passive" (vsp) if .
circuit example
consider the following example. we take the current as the input and the voltage as the output. based on kirchhoff's current and voltage law, we obtain the transfer function for ,
let , and .
r = 2; l = 1; c = 0.1;
s = tf('s');
g = (l*s r)*(r*s 1/c)/(l*s^2 2*r*s 1/c);
use ispassive
to check whether is passive.
pf = ispassive(g)
pf = logical
1
since pf = true, is passive. use getpassiveindex
to compute the passivity indices of .
% input passivity index nu = getpassiveindex(g,'in')
nu = 2
% output passivity index rho = getpassiveindex(g,'out')
rho = 0.2857
% i/o passivity index tau = getpassiveindex(g,'io')
tau = 0.2642
since , the system is very strictly passive.
frequency-domain characterization
a linear system is passive if and only if it is "positive real":
the smallest eigenvalue of the left-hand-side is related to the input passivity index :
where denotes the smallest eigenvalue. similarly, when is minimum-phase, the output passivity index is given by:
verify this for the circuit example. plot the nyquist plot of the circuit transfer function.
nyquist(g)
the entire nyquist plot lies in the right-half plane so is positive real. the leftmost point on the nyquist curve is so the input passivity index is , the same value we obtained earlier. similarly, the leftmost point on the nyquist curve for gives the output passivity index value .
relative passivity index
it can be shown that the "positive real" condition
is equivalent to the small gain condition
the relative passivity index (r-index) is the peak gain over frequency of when is minimum phase, and otherwise:
in the time domain, the r-index is the smallest such that
the system is passive if and only if , and the smaller is, the more passive the system is. use getpassiveindex
to compute the r-index for the circuit example.
r = getpassiveindex(g)
r = 0.5556
the resulting value indicates that the circuit is a very passive system.
references
[1] xia, m., p. gahinet, n. abroug, c. buhr, and e. laroche. “sector bounds in stability analysis and control design.” international journal of robust and nonlinear control 30, no. 18 (december 2020): 7857–82. .
see also
|