CMU
UM


Digital Control Example: Designing Pitch Controller using State-Space method

Discrete state-space
Controllability and observability
Control design via pole placement
Reference input

In this digital control version of the pitch controller problem, we are going to use the state-space method to design the digital controller. If you refer to the Pitch Controller: Modeling page, the state-space model was derived as

The input (elevator deflection angle, delta e) will be 0.2 rad (11 degrees), and the output is the pitch angle (theta).

The design requirements are

Discrete state-space

The first thing to do here is to convert above continuous state-space model to discrete state-space. To do this, we are going to use the Matlab function called c2dm. To use this c2dm, we need to specify six arguments: Four state-space matrices (A, B, C, and D), sampling time (Ts), and the 'method'. You should already be familiar with how to enter A, B, C, and D matrices. The sampling time should be smaller than 1/(30*BW), where BW is the closed-loop bandwidth frequency. The method we will use is the zero-order hold.

From the closed-loop Bode plot, the bandwidth frequency was determined to be approximately 2 rad/sec (see this yourself) . Thus, to be sure we have small enough sampling time, we are going to use the sampling time of 1/100 sec/sample. Now we are ready to use the function c2dm. Enter the following commands to an m-file.

Running this m-file in the Matlab command window gives you the following four matrices.

Now we have obtained the discrete state-space model of the form

Controllability and observability

The next step is to check the controllability and the observability of the system. For the system to be completely state controllable, the controllability matrix

must have the rank of n. The rank of the matrix is the number of independent rows (or columns). In the same token, for the system to be completely state observable, the observability matrix

must also have the rank of n. Since our controllability matrix and observability matrix are 3x3, the rank of both matrices must be 3. The Matlab function rank can give you the rank of each matrices. In an new m-file, enter the following commands and run it.

In the command window, you should see

This proves that our discrete system is both completely state controllable and completely state observable.

Control design via pole placement

The schematic of a full-state feedback system is shown below.

where

In the continuous Pitch Controller: State-Space page, the Linear Quadratic Regulator (LQR) method was used to find the control matrix (K). In this digital version, we will use the same LQR method. This method allows you to find the optimal control matrix that results in some balance between system errors and control effort. Please consult your control textbook for details. To use this LQR method, we need to find three parameters: Performance index matrix (R), state-cost matrix (Q), and weighting factor (p). For simplicity, we will choose the performance index matrix equals 1 (R=1), and the state-cost matrix (Q) equals to H' x H. The weighting factor (p) will be chosen by trial and errors. The state-cost matrix (Q) has the following structure


	Q  =

		0 	0	0
		0	0	0
		0	0	1

Now we are ready to find the control matrix (K) and see the response of the system. First, let the weighting factor (p) equals 50. Enter the following commands to a new m-file and run it in the Matlab command window.

After you run this m-file, you should see the control matrix (K) in the command window and the step response similar to the one shown below.

The rise time, the overshoot, and the settling time look satisfactory. However, there is a large steady-state error. This can be easily corrected by introducing the feedforwarding scaling factor (Nbar).

Reference input

Unlike other design methods, the full-state feedback system does not compare the output to the reference; instead, it compares all states multiplied by the control matrix (K*x) to the reference (see the schematic shown above). Thus, we should not expect to see the output equals to the input. To obtain the desired output, we need to scale the reference input so that the output equals to the reference. This can be easily done by introducing a feedforwarding scaling factor called Nbar. The basic schematic with the Nbar is shown below.

Unfortunately, we can not use our user-defined function rscale to find Nbar. But certainly we can find it from trial and errors. After several trials, the Nbar equals to 6.95 provided the satisfactory response. Try the following m-file and obtain the stairstep response shown below.

From this plot, we see that the Nbar eliminated the steady-state error. Now all design requirements are satisfied.

Note: Assuming all states are measurable, an observer design will not be explained in this page.


User feedback

We would like to hear about difficulties you had with the tutorials, suggestions you have for improvement, errors that you found, or any other comments that you have. This feedback is anonymous; include your email address if you want a reply.


Digital Control Examples
Cruise Control: RL | Motor Speed: PID | Motor Position: RL | Bus Suspension: SS | Inverted Pendulum:SS | Pitch Controller: SS | Ball and Beam: PID

Pitch Control Examples
Modeling | PID | Root Locus | Frequency Response | State Space | Digital Control: SS

Tutorials
Basics | Modeling | PID | Root Locus | Frequency Response | State Space | Digital Control | Examples

HOME INDEX COMMAND

8/26/97 DK