None Notebook

This notebook contains material from CBE30338; content is available on Github.

< 5.1 Getting Started with Transfer Functions | Contents | Tag Index | 5.3 Creating Bode Plots >

Open in Colab

Download

5.2 Closed-Loop Transfer Functions for Car Cruise Control

5.2.1 Summary

Block diagrams allow you to visualize the flow of information in complex dynamical systems. Using simple elements, it is possible to create models to study the relationship between control structure, process response, and control action.

The purpose of this notebook is to introduce for the analysis of block diagrams made up of linear transfer functions.

5.2.2 Block Diagram for Car Cruise Control

Let's imagine you own a car with a mass of 1,500 kg (including passengers) that is traveling down a level stretch of highway at a desired speed of 100 kilometers per hour. You wish to design a cruise controller that will adjust the throttle position $u$ within the limits 0 to 1 in order to maintain constant speed.

A block diagram for this system is shown in the following sketch:

Cruise Control Block Diagram

The disturbance to the system is a change in road grade measured in percent. (A one percent grade corresponds to 1 foot of rise in 100 feet of horizontal travel, or a tangent of 0.01). The dynamics are represented by three transfer functions denoting the response of the engine torque to throttle position,

$$G_e = \frac{600}{s + 1}$$

the response of the vehicle to engine and external forces,

$$G_v = \frac{0.5}{5s + 1}$$

and the dynamics of the speed measurement,

$$G_m = \frac{1}{0.2s + 1}$$

We assume that a one percent increase in grade introduces 150 Newtons of force in opposing the car acceleration, that is

$$G_d = 150$$

The controller is assumed to be a proportional-integral control written as

$$G_c = K_c\left(1 + \frac{1}{\tau_I s}\right)$$

This can be summarized in the following block diagram

Cruise Control Block Diagram

5.2.3 Closed-Loop Transfer Functions

Vehicle response to a change in setpoint:

$$H_{yr} = \frac{G_vG_eG_c}{1+G_vG_eG_cG_m}$$

Vehicle response to a disturbance:

$$H_{yd} = -\frac{G_vG_d}{1+G_vG_eG_cG_m}$$

Throttle response to a change in setpoint:

$$H_{ur} = \frac{G_c}{1+G_cG_mG_vG_e}$$

Throttle response to a disturbance:

$$H_{ud} = \frac{G_cG_mG_vG_d}{1+G_cG_mG_vG_e}$$

5.2.4 Step Responses

5.2.5 Additional Examples

5.2.5.1 Internal Model Control

Internal model control is a version of feedback control that incorporates an explicit process model. A simple block diagram of internal model control is given by

Internal Model Control

There are two designated inputs, the reference $w$ and disturbance $y_d$, and three labeled signals $u$, $y$, and $d$ that appear relevant to closed-loop performance. Here's the solution for all six closed-loop transfer transfer functions:

Output\Input $w$ $y_d$
$u$ $\frac{Q}{1 + Q(G - G_m)}$ $-\frac{Q}{1 + Q(G - G_m)}$
$y$ $\frac{GQ}{1 + Q(G - G_m)}$ $\frac{1}{1 + Q(G - G_m)}$
$d$ $\frac{(G-G_m)Q}{1 + Q(G - G_m)}$ $\frac{1}{1 + Q(G - G_m)}$

5.2.5.2 SEMD Figure 11-14

Internal Model Control

$$H_{yd} = \frac{G_3}{1+(G_2 + G_3G_1)K_cK_m}$$$$H_{yr} = \frac{(G_2+G_3G_1)K_cK_m}{1+(G_2 + G_3G_1)K_cK_m}$$

< 5.1 Getting Started with Transfer Functions | Contents | Tag Index | 5.3 Creating Bode Plots >

Open in Colab

Download