Design Case Studies    

LQG Design for the x-Axis

As a first approximation, ignore the cross-coupling between the - and -axes and treat each axis independently. That is, design one SISO LQG regulator for each axis. The design objective is to reduce the thickness variations and due to eccentricity and input thickness disturbances.

Start with the -axis. First specify the model components as transfer function objects.

Next build the open-loop model shown in "Open-loop Model for x- or y-axis" above. You could use the function connect for this purpose, but it is easier to build this model by elementary append and series connections.

The variable Px now contains an open-loop state-space model complete with input and output names.

The second output 'x-force' is the rolling force measurement. The LQG regulator will use this measurement to drive the hydraulic actuator and reduce disturbance-induced thickness variations .

The LQG design involves two steps:

  1. Design a full-state-feedback gain that minimizes an LQ performance measure of the form
  1. Design a Kalman filter that estimates the state vector given the force measurements 'x-force'.

The performance criterion penalizes low and high frequencies equally. Because low-frequency variations are of primary concern, eliminate the high-frequency content of with the low-pass filter and use the filtered value in the LQ performance criterion.

Next, design the Kalman estimator with the function kalman. The process noise

has unit covariance by construction. Set the measurement noise covariance to 1000 to limit the high frequency gain, and keep only the measured output 'x-force' for estimator design.

Finally, connect the state-feedback gain kx and state estimator estx to form the LQG regulator.

This completes the LQG design for the -axis.

Let's look at the regulator Bode response between 0.1 and 1000 rad/sec.

The phase response has an interesting physical interpretation. First, consider an increase in input thickness. This low-frequency disturbance boosts both output thickness and rolling force. Because the regulator phase is approximately 0o at low frequencies, the feedback loop then adequately reacts by increasing the hydraulic force to offset the thickness increase. Now consider the effect of eccentricity. Eccentricity causes fluctuations in the roll gap (gap between the rolling cylinders). When the roll gap is minimal, the rolling force increases and the beam thickness diminishes. The hydraulic force must then be reduced (negative force feedback) to restore the desired thickness. This is exactly what the LQG regulator does as its phase drops to -180o near the natural frequency of the eccentricity disturbance (6 rad/sec).

Next, compare the open- and closed-loop responses from disturbance to thickness gap. Use feedback to close the loop. To help specify the feedback connection, look at the I/O names of the plant Px and regulator Regx.

This indicates that you must connect the first input and second output of Px to the regulator.

You are now ready to compare the open- and closed-loop Bode responses from disturbance to thickness gap.

The dashed lines show the open-loop response. Note that the peak gain of the eccentricity-to-gap response and the low-frequency gain of the input-thickness-to-gap response have been reduced by about 20 dB.

Finally, use lsim to simulate the open- and closed-loop time responses to the white noise inputs and . Choose dt=0.01 as sampling period for the simulation, and derive equivalent discrete white noise inputs for this sampling rate.

The dotted lines correspond to the open-loop response. In this simulation, the LQG regulation reduces the peak thickness variation by a factor 4.


  Process and Disturbance Models LQG Design for the y-Axis