Control Systems/Polynomial Design

From testwiki
Revision as of 23:35, 14 June 2017 by imported>PokestarFan ({{BookCat}}/possible general fixes using AWB)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Control Systems/Page

Polynomial Design

A powerful tool for the design of controller and compensator systems is polynomial design. Polynomial design typically consists of two separate stages:

  1. Determine the desired response of the system
  2. Adjust your system to match the desired response.

We do this by creating polynomials, such as the transform-domain transfer functions, and equating coefficients to find the necessary values. The goal in all this is to be able to arbitrarily place all the poles in our system at any locations in the transform domain that we desire. In other words, we want to arbitrarily modify the response of our system to match any desired response. The requirements in this chapter are that the system be fully controllable and observable. If either of these conditions are not satisfied, the techniques in this method cannot be directly implemented.

Through this method it is assumed that the plant is given and is not alterable. To adjust the response of the system, a controller unit needs to be designed that helps the system meet the specifications. Because the controller is being custom designed, the response of the controller can be determined arbitrarily (within physical limits, of course).

Polynomial Representation

Let's say that we have a plant, G(s), and a controller, C(s). Both the controller and the plant are proper systems, composed of monic numerator and denominator polynomials. The plant, G(s) has an order of n, is given, and cannot be altered. The task is to design the controller C(s) of order m:

G(s)=b(s)a(s)
C(s)=B(s)A(s)

Our closed-loop system, H(s) will have a transfer function of:

H(s)=C(s)G(s)1+C(s)G(s)=B(s)b(s)A(s)a(s)+B(s)b(s)

Our characteristic equation then is:

αH(s)=A(s)a(s)+B(s)b(s)

Our plant is given so we know a(s) and b(s), but A(s) and B(s) are configurable as part of our controller. To determine values for these, we must select a desired response, that is the response that our system should have. We call our desired response D(s). We can configure our controller to have our system match the desired response by solving the Diophantine equation:

D(s)=A(s)a(s)+B(s)b(s)

Diophantine Equation

The Diophantine equation becomes a system of linear equations in terms of the unknown coefficients of the A(s) and B(s) polynomials. There are situations where the Diophantine equation will produce a unique result, but there are also situations where the results will be non-unique.

We multiply polynomials, and then combine powers of s:

D(s)=(A0a0+B0b0)+(A0a1+A1a0+B0b1+B1b0)s++(Aman+Bmbn)sm+n

Now we can equate the coefficients of D(s) and our resultant system of equations is given as:

[a0b00000a1b1a0b000anbnan1bn1a0b000anbna1b10000anbn][A0B0A1B1AmBm]=[D0D1Dn+m]

This matrix can be a large one, but the pattern is simple: new coefficients are shifted in from the left, and old coefficients are shifted off to the right on each row.

Conditions for Uniqueness

The diophantine matrix, which we will call S, has dimensions of (n + m + 1) × (2m + 2). The solution to this equation is unique if the diophantine matrix is square, and therefore is invertable. If the matrix has more columns then rows, the solution will be non-unique. If the matrix has more rows then columns, the poles of the composite system cannot be arbitrarily placed.

The condition for uniqueness can be satisfied if m = n - 1. The order of the controller must be one less than the order of the plant. If the order of the controller is higher, the solution will be non-unique. If the order of the controller is lower, not all the poles can be arbitrarily assigned.

Example: Second Order System

Template:TextBox

Example: Helicopter Control

Template:SideBox

Pole placement is the most straightforward means of controller design. Here are the steps to designing a system using pole placement techniques:

  1. The design starts with an assumption of what form the controller must take in order to control the given plant.
  2. From that assumption a symbolic characteristic equation is formed.
  3. At this point the desired closed-loop poles must be determined.
  4. Typically, specifications designate overshoot, rise time, etc. This leads to the formation of a 2nd order equation. Most of the time the final characteristic equation will have more than 2 poles. So additional desired poles must be determined.
  5. Once the closed loop poles are decided a desired characteristic equation is formed.
  6. The coefficients for each power of s are equated from the symbolic characteristic equation to the desired.
  7. Algebra is used to determine the controller coefficients necessary to achieve the desired closed-loop poles with the assumed controller form.

Typically, an integrator is used to drive the steady-state error towards 0. This implies that the final characteristic equation will have at least 1 more pole than the uncontrolled system started with.

The following pole placement examples show you how to decide on the desired closed-loop poles, determine the "extra" closed-loop poles, and create a generic and PID controller to achieve those desired closed-loop poles.

Template:TextBox

Caveats

There are a number of problems that can arise from this method.

Insufficient Order

If K(s) has a polynomial degree m, and G(s) has a polynomial degree n, then our composite system H(s) will have a total degree of m + n. If our controller does not have a high enough order, we will not be able to arbitrarily assign every pole in our system. From state space, we know that poles that cannot be arbitrarily assigned are called uncontrollable. The addition of a controller of insufficient order can make one or more poles in our system uncontrollable.

Template:Control Systems/Nav


Template:Control Systems/Stub