请输入您要查询的百科知识:

 

词条 Jury stability criterion
释义

  1. Method

  2. Stability test

  3. Sample implementation

  4. See also

  5. References

In signal processing and control theory, the Jury stability criterion is a method of determining the stability of a linear discrete time system by analysis of the coefficients of its characteristic polynomial. It is the discrete time analogue of the Routh–Hurwitz stability criterion. The Jury stability criterion requires that the system poles are located inside the unit circle centered at the origin, while the Routh-Hurwitz stability criterion requires that the poles are in the left half of the complex plane. The Jury criterion is named after Eliahu Ibraham Jury.

Method

If the characteristic polynomial of the system is given by

then the table is constructed as follows:[1]

row zn zn-1 zn-2 z.... z1 z0
1 a0 a1 a2 ... an-1 an
2 an an-1 an-2 ... a1 a0
3 b0 b1 ... bn-2 bn-1
4 bn-1 bn-2 ... b1 b0
5 c0 c1 ... cn-2
6 cn-2 cn-3 ... c0
... ... ... ... ... ... ...
2n-5 p3 p2 p1 p0
2n-4 p0 p1 p2 p3
2n-3 q2 q1 q0

That is, the first row is constructed of the polynomial coefficients in order, and the second row is the first row in reverse order and conjugated.

The third row of the table is calculated by subtracting times the second row from the first row, and the fourth row is the third row with the first n elements reversed (as the final element is zero).

The expansion of the table is continued in this manner until a row containing only one non zero element is reached.

Note the is for the 1st two rows. Then for 3rd and 4th row the coefficient changes (i.e. ) . This can be viewed as the new polynomial which has one less degree and then continuing.

Stability test

If then for every value of ,,... that is negative, the polynomial has one root outside of the unit disc. This implies that the method can be stopped after the first negative value is found when checking for stability.

Sample implementation

This method is very easy to implement using dynamic arrays on a computer. It also tells whether all the modulus of the roots (complex and real) lie inside the unit disc. Vector v contains the real coefficients of the original polynomial in the order from highest degree to lowest degree.

        /* vvd is the jury array */        vvd.push_back(v); // Store the first row        reverse(v.begin(),v.end());        vvd.push_back(v); // Store the second row
        for(i=2;;i+=2)        {            v.clear();            double mult=vvd[i-2][vvd[i-2].size()-1]/vvd[i-2][0]; // This is an/a0 as mentioned in the article.
            for( j=0;j
            vvd.push_back(v);            reverse(v.begin(),v.end()); // reverse the next row            vvd.push_back(v);            if(v.size()==1) break;         }
         // Check is done using         for(i=0;i
         if(i==vvd.size())              "All roots lie inside unit disc "         else              "no"

See also

  • Liénard–Chipart criterion, another stability criterion derived from Routh-Hurwitz (for continuous-time systems)

References

1. ^Discrete-time control systems (2nd ed.), pg. 185. Prentice-Hall, Inc. Upper Saddle River, NJ, USA ©1995 {{ISBN|0-13-034281-5}}

For more details please check these references:

  • A note on the reduced Schur–Cohn criterion
  • [https://en.wikibooks.org/wiki/Control_Systems/Jurys_Test Wikibooks on Control Systems - Jury's Test]

For advanced resources:

  • {{webarchive |url=https://web.archive.org/web/20080802013128/http://users.rsise.anu.edu.au/~briandoa/pubs/R300AN499.pdf |date=August 2, 2008 }}
  • {{Cite journal | doi = 10.1016/0165-1684(96)00077-1| title = On the root distribution of general polynomials with respect to the unit circle| journal = Signal Processing| volume = 53| pages = 75| year = 1996| last1 = Benidir | first1 = M. }}
  • http://www.laas.fr/~henrion/Papers/lyap.ps.gz

For implementations:

  • http://www.ticalc.org/archives/files/fileinfo/426/42696.html (TI-83+/84+ graphing calculators)
{{DEFAULTSORT:Jury Stability Criterion}}

1 : Stability theory

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/11/14 4:49:34