Jury Stability Criterion
   HOME

TheInfoList



OR:

In
signal processing Signal processing is an electrical engineering subfield that focuses on analyzing, modifying and synthesizing ''signals'', such as sound, images, and scientific measurements. Signal processing techniques are used to optimize transmissions, ...
and
control theory Control theory is a field of mathematics that deals with the control of dynamical systems in engineered processes and machines. The objective is to develop a model or algorithm governing the application of system inputs to drive the system to a ...
, 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 In control system theory, the Routh–Hurwitz stability criterion is a mathematical test that is a necessary and sufficient condition for the stability of a linear time-invariant (LTI) dynamical system or control system. A stable system is one ...
. The Jury
stability criterion In control theory, and especially stability theory, a stability criterion establishes when a system is stable. A number of stability criteria are in common use: * Circle criterion * Jury stability criterion *Liénard–Chipart criterion * Nyquis ...
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 Eliahu Ibrahim Jury (May 23, 1923 – September 20, 2020) was an Iraqi-born American engineer. He received his Doctor of Engineering Science degree from Columbia University of New York City in 1953. He was professor of electrical engineering at ...
.


Method

If the characteristic polynomial of the system is given by :f(z) = a_n+a_z^1+a_z^2+\dots+a_1z^ + a_0z^n then the table is constructed as follows:Discrete-time control systems (2nd ed.), pg. 185. Prentice-Hall, Inc. Upper Saddle River, NJ, USA ©1995 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 \frac 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). : \begin a_0 \;\; & a_1 \;\; & \dots \;\; & a_ \;\;& a_n\\ a_n \;\; & a_ \;\; & \dots \;\; & a_1 \;\;& a_0\\ \left(a_0-a_n \frac\right)\;\;& \left(a_ - a_ \frac\right) \;\; &\dots\;\; & \left(a_ - a_ \frac\right) \;\;& 0 \\ \left(a_ - a_ \frac\right)\;\; & \dots \;\;& \left(a_ - a_ \frac\right) \;\;& \left(a_0-a_n \frac\right)\;\;&0\\ \end The expansion of the table is continued in this manner until a row containing only one non-zero element is reached. Note the \frac is a_n for the 1st two rows. Then for 3rd and 4th row the coefficient changes (i.e. \frac) . This can be viewed as the new polynomial which has one less
degree Degree may refer to: As a unit of measurement * Degree (angle), a unit of angle measurement ** Degree of geographical latitude ** Degree of geographical longitude * Degree symbol (°), a notation used in science, engineering, and mathematics ...
and then continuing.


Stability test

If >0 then for every value of a_0, b_0, c_0... that is negative, the polynomial has one
root In vascular plants, the roots are the organs of a plant that are modified to provide anchorage for the plant and take in water and nutrients into the plant body, which allows plants to grow taller and faster. They are most often below the su ...
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 Complex commonly refers to: * Complexity, the behaviour of a system whose components interact in multiple ways so possible interactions are difficult to describe ** Complex system, a system composed of many components which may interact with each ...
and
real Real may refer to: Currencies * Brazilian real (R$) * Central American Republic real * Mexican real * Portuguese real * Spanish real * Spanish colonial real Music Albums * ''Real'' (L'Arc-en-Ciel album) (2000) * ''Real'' (Bright album) (2010) ...
) lie inside the unit disc. The vector 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) // Check is done using for (i=0; i

vvd.size()) "All roots lie inside unit disc " else "no"


See also

*
Liénard–Chipart criterion In control system theory, the Liénard–Chipart criterion is a stability criterion modified from the Routh–Hurwitz stability criterion, proposed by A. Liénard and M. H. Chipart. This criterion has a computational advantage over the Routh–H ...
, another stability criterion derived from Routh-Hurwitz (for continuous-time systems)


References

For more details please check these references:
A note on the reduced Schur–Cohn criterion

Wikibooks on Control Systems - Jury's Test
For advanced resources: * * * 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 Stability theory