Note

For students who intend to scribe, you can see the source code for this page by clicking the code button above this callout. The source is compatible with the Quarto publishing system.

Scribed by: itabrah2

Introduction

This course is titled “Control System Theory & Design”. Let us start by first asking what we mean by a system; after all, it is a word used in many different contexts and with different meanings. For our purposes, a system is a collection of interrelated processes and/or signals that, together, achieve some objective. For example, the circulatory system’s objective is to ensure oxygenated blood from the lungs reaches all parts of the human body and, remove CO2 from different parts of the body and transfer it to the lungs. Similarly, the HVAC system’s objective is to maintain a comfortable ambiance for the occupants of a building by controlling factors like humidity and temperature.

A control system is one in which a certain subcollection of signals and processes direct, control, command and/or regulate other processes. Recall that in classical control, we had a plant model where a system with output \(y\) took input \(u\), which a controller determined - often by comparison against a reference signal \(r\). An example we are familiar with is cruise control in an automobile, where a sensor measures the wheel velocity and, by comparison to the set or desired velocity, determines the appropriate amount of fuel or throttle to be provided (the control signal).

Unity feedback configuration

In this course, the object of study is control systems, which can be considered a generalization of classical dynamical systems (a control system with no inputs typically reduces to a dynamical system). What is different from classical controls course here is the shift in focus from the frequency domain to the time domain. In prior courses, we avoided dealing with differential equations by taking the Laplace transform and moving to the complex frequency domain. In this course, we will focus more on the ODEs and study them in detail, especially in the context of linear systems.

To illustrate what we mean, consider the following systems:

  • An object in free fall
  • A pendulum
  • An RC circuit

and their so called equations of motion.

An object in free fall

Object in free fall

Suppose the object has mass \(m\) and experiences acceleration \(a\). For this simplified model we will only consider the effect of gravity and aerodynamic drag (assume proportional to velocity). By Newton’s second law, we must have the net sum of all forces acting on a free-falling object equal its mass times acceleration. Thus,

\[ mg - kv = ma \tag{1}\]

where \(kv\) is a term that retards the downward motion of the object (i.e. drag force).

A pendulum

Consider the case of a pendulum of length \(l\) and mass \(m\) (connected to its base by a massless string) subtending an angle \(\theta\). In this case, when we apply Newton’s second law seperately to the tangential and radial axes we see that radial components cancel. On the other hand, the equation describing the tangential component gives us:

Pendulum in swing

\[ F = ma \quad \implies \quad -mg \sin \theta = ma \]

However, the angle \(\theta\) is related to the arclength subtended as \(s = l \theta\) where \(s\) is the arclength. Then \(\ddot a = l \ddot \theta\) and

\[ \ddot{\theta} + \dfrac{g}{l} \sin\theta = 0 \tag{2}\]

An RC circuit

RC circuit

For an RC circuit with current \(I\) under an external voltage supply \(V\) we can write Kirchoff’s Voltage Law as:

\[ V = IR + V_c \]

where \(V_c\) is the voltage across the capacitor. However, we know that \(q = CV_c\) is the governing equation for the capacitor of capacitance \(C\) where \(q\) is the charge in the capacitor. Differentiating we get \(\dot{q} = C \dfrac{dV}{dt}\) except \(\dot q = I\) the current. Thus,

\[ V = RC\dot{V_c} + V_c \tag{3}\]

At this point we have looked at an electrical system, an aerodynamical example and a mechanical system.

All of these are differential equations of the form \(\dot x = f(x)\) where \(x \in \mathbb{R}^n, n\ge 1\) and \(f: x \mapsto \mathbb{R}^n\). In other words \(f\) is some function that consumes a vector \(x\) and returns another vector \(f(x)\).

The majority of this course is concerned with systems of the form(s):

\[ \dot x = f(x) \qquad \textrm{and} \qquad \dot x = f(x, u) \]

sometimes written with an explicit time dependence as

\[ \dot x = f(t, x(t)), \qquad \textrm{and} \qquad \dot x = f(t, x(t), u(t)) \]

The latter systems are called non-autonomous systems while the former are called autonomous systems. In either case, (autonomous or non-autonomous), the second variety (involving \(u\) or \(u(t)\)) indicates the presence of an input term \(u, u(t) \in \mathbb{R}^p\) and so signifies a control system (we usually consider the input term to be some form of control law).

Tip

Note that in \(\dot x = f(x)\) and its siblings, the left-hand-side (LHS) consists of a single (if vector valued) term that is a first derivative whereas the right-hand-side (RHS) has no derivatives at all. This form is usually called the standard state-space formulation. Each entry of \(x\) is a state variable and \(x\) collectively captures the state of the system - information that fully determines all aspects of a system at a particular instant of time and along with any initial conditions, sufficient to predict all future states.

Claim: Each of Equation 1, Equation 2, Equation 3 can be written in the form: \(\dot x = f(x, u)\).

For Equation 3 we have by simple re-arrangement \[ \dot V_c = \dfrac{1}{RC}V_c + \dfrac{1}{RC} V \]

where the second term involving \(V\) can be considered the input into the system. The other two require a tad bit more algebra. Let us come back to it after we discuss some course logistics.


Break to discuss: https://courses.grainger.illinois.edu/ece515/sp2024


For Equation 2, we had:

\[ mg - kv = ma \quad \implies \quad a = \dfrac{-k}{m}v + g \]

However, \(a = \dot v\) and \(v = \dot y\) where \(y\) is the downward displacement. Define auxilliary variables \(z_1 =y\) and \(z_2 = \dot y\). Then \(\dot z_2 = \ddot y\) and \(\dot z_1 = z_2\). Thus we get,

\[ \begin{align} \dot z_1 &= z_2 \\ \dot z_2 &= \dfrac{-k}{m} z_2 + g \end{align} \]

Now this is a two-dimensional system because \(z = \begin{bmatrix} z_1 &z_2 \end{bmatrix}^T \in \mathbb{R}^2\).

For Equation 3, similarly, we had:

\[ \ddot \theta = -\dfrac{g}{l} \sin \theta \]

Here we define, \(x_1 = \theta\) and \(x_2 = \dot x_1\). Then, we get, \[ \begin{align} \dot x_1 &= x_2 \\ \dot x_2 &= -\dfrac{g}{l} \sin x_1 \end{align} \]

Linear vs. nonlinear system

While we have written each of Equation 1, Equation 2 and Equation 3 in the standard state space (SS) form, there is something special about Equation 3. In fact, Equation 1 and Equation 2 are linear equations whereas Equation 3 is a nonlinear equation.

For the purposes of this class linear systems are ones in which we can write \(\dot x = f(x, u)\) or \(\dot x = f(t, x(t), u(t))\) as \[ \dot x = Ax + Bu \quad \textrm{or} \quad \dot x = A(t)x + B(t) u \] where the matrices \(A\) and \(B\) are devoid of any state variables.

Example: We can write

\[ \begin{align} \dot z_1 &= z_2 \\ \dot z_2 &= \dfrac{-k}{m} z_2 + g \end{align} \]

as

\[ \dot z = \begin{bmatrix} 0 &1 \\ 0 & -k/m \end{bmatrix}z + \begin{bmatrix} 0 \\1 \end{bmatrix} g \qquad \textrm{where} \quad z = [z_1 \; z_2]^T \]

Question: standard drag force

In the example of the free falling body we considered, the drag experienced by the falling object was directly proportional to its velocity. In reality, the drag force increases drastically with changes in velocity and we often model it as quadratic in velocity. Is such a system linear or nonlinear?

The linear state space formulation

Generally, in a physical system that we week to influence we do not have access to all state variable. In other words, though a phenomenon may involve \(n\) variables, which together completely determine the state vector, one may only be able to observe some \(q<n\) variables which may either be the state variables themselves or a linear combination thereof. We represent this situation by writing:

\[ \begin{align} \dot x &= Ax + Bu \\ y &= Cx + Du \end{align} \tag{4}\]

or

\[ \begin{align} \dot x &= A(t)x + B(t)u \\ y &= C(t)x + D(t) u \end{align} \]

In the above \(A\) is a \(n\times n\) matrix, \(B\) of size \(n \times p\), and \(C\) of dimension \(q \times n\). They are typically called the system, input and output matrices. The matrix \(D\) captures any direct influence the input \(u\) has on the output \(y\).

Note about the feed-through matrix

We will see how the \(D\) matrix arises when we discuss the relation between the state-space formulation and transfer functions.

Though we remarked that the we will focus on the time domain description in this course, and we will discuss realization theory in greater detail at a later time, it is now instructive to examine what happens if we simply take the Laplace transform of Equation 4. For simplicity assume \(p=q=1\). We get

\[ s X(s) = AX(s) + BU(s) \qquad \textrm{and} \qquad Y(s) = CX(s) + d \cdot U(s) \] Isolating \(X(s)\) from the first, plugging it into the second and rearranging we get \[ G(s):= \dfrac{Y(s)}{U(s)} = C \left(sI - A \right)^{-1}B + d \tag{5}\]

which provides a means to convert a given state-space model \(\left(A, B, C, D\right)\) into its transfer function model.

Caution

In the above we made the assumption \(p=q=1\). This results in a single-input and single-output (SISO) model and the \(D\) matrix necesarily reduces to a scalar entity \(d\). Equation 5 is only valid in this case. For the general MIMO (multi-input multi-output) case, what we end up having is a transfer function matrix. In other words, a transfer function between each pair of inputs and outputs.

Question: Given a transfer function how do we find the corresponding state-space model? Is this model unique?

It turns out that there are many ways to generate a state-space model from the transfer function and they result in slightly different (but equivalent) formulations in terms of the matrices \((A, B, C, D)\). To truly appreciate why this happens, we need to review some linear algebra material. Such material will be the focus of the next few lectures.

However, before that we review some systems concepts.

Linearity

From prior courses, we are familiar with the input-output description of a linear system:

\[ y(t) = \int \limits _{t_0} ^{t} G(t, \tau) u(\tau) d \tau \]

which reduces to a convolution for time invariant systems. Let us make precise what we mean by linear and time invariant.

Definition 1 (Linearity)
A function \(f\) is linear \(f(\alpha x + y ) = \alpha f(x) + f(y)\). In terms of systems, a system is said to be linear if for any two state-input pairs

\[(x_1(t_0), u_1(t)) \quad \textrm{and} \quad (x_2(t_0), u_2(t))\]

mapping to outputs \(y_1(t)\) and \(y_2(t)\), i.e.  \[ (x_1(t_0), u_1(t)) \mapsto y_1(t)) \qquad \textrm{and} \qquad (x_2(t_0), u_2(t)) \mapsto y_2(t) \] we have that, \[ (x_1(t_0) + \alpha x_2(t_0), u_1(t) + \alpha u_2(t)) \quad \mapsto \quad y_1(t) + \alpha y_2(t) \]

In other words, if the states and inputs are scaled and added then the resultant output is also a scaled and added version of individual outputs.

Addition here is interpreted pointwise in time.

If the input to a system is zero then the system response starting from some initial condition \(x_0 = x(t_0)\) is caleld the zero-input response. If the system starts from a zero initial condition and evolves under some input \(u(t)\), the system response is called the zero-state response.

An important property of linear systems is that the response of any system can be decomposed into the sum of a zero-state reponse and a zero-input response.

\[ \textrm{response} = \textrm{zero-state response} + \textrm{zero-input response} \]

Tip

Verify the above statement directly follows from the linearity property.

Additionally, a system is said to be lumped if the state vector necessary to describe it is finite dimensional. A system is said to be causal if the current output only depends on the past inputs to the system and not on any future input. We will exclusively deal with lumped causal systems in this course.

If \(t \in \mathbb{R}\) we deal with continuous time systems and if \(t \in \mathbb{Z}\) then we say we deal with discrete time systems. The results we derive will primarily be for continous time systems and occassinally for discrete time systems. LSTC does a parallel treatment of both time-invariant and time-varying systems so you are encouraged to read it as supplementary material. When we do deal with discrete time systems, we will assume that the sampling period is uniform.

Time invariance

A special class of systems where our study can be made much deeper is the class of linear time invariant systems.

Definition 2 (Time invariance)
A system is said to be time invariant if for every initial state & input-output pair, \[ (x(t_0), u(t)) \mapsto y(t) \] and any \(T\), we have,

\[ (x(t_0 + T), u(t - T)) \mapsto y(t - T) \]

In other words, starting from the same initial condition, a time shift of the input function by an amount \(T\) results in a time shift of the output function by the same amount. Thus for linear time invariant systems (LTI), we can assume with no loss of generality that \(t_0=0\).

Be sure to understand this point about notation. The expression: \[ (x(t_0), u(t)) \mapsto y(t) \] should be interpreted as initial condition \(x\) at time \(t_0\) (written as \(x(t_0)\)) under the action of \(u(t)\) (for \(t>t_0\)) results in output \(y(t)\). Thus,

\[ (x(t_0 + T), u(t - T)) \mapsto y(t - T) \]

should be interpreted as initial condition \(x\) at time \(t_0 + T\) under the action of the time shifted input \(u(t-T)\) (for \(t>t_0 + T\)) gives rise to output \(y(t-T)\).

Transfer functions

Above we saw the relationship between the state-space (SS) formulation and the transfer function via the Laplace transform. Before we proceed to a review of some concepts from linear algebra, it is a good idea to review some frequency domain concepts. Let us use \(\deg(P)\) to denote the degree of some polynomial \(P(s)\).

  • For lumped systems, transfer functions are rational functions, i.e. can be written as a polynomial divided by another polynomial: \[G(s) = N(s)/D(s)\]
  • If \(\deg(N) <= \deg(D)\) then a transfer function is said to be proper.
  • If \(\deg(N) < \deg(D)\) then a transfer function is said to be strictly proper.
  • If \(\deg(N) = \deg(D)\) then a transfer function is said to be bi proper.

Finally, a complex variable \(\lambda\) is said to be a pole of a rational transfer function \(G(s)\) if \(|G(\lambda)|= \infty\) and a zero if \(|G(\lambda)| = 0\).

If \(N(s)\) and \(D(s)\) are co-prime, i.e. do not share any common factors of degree 1 or higher, then all roots of \(N(s)\) are zeros and all roots of \(D(s)\) are poles.

Course overview

At the heart of all control systems are dynamical systems and dynamical systems essentially boil down to differential or difference equations. Our prior treatment of control systems was algebraic in some sense because we sidestepped dealing with ODEs by applying the Laplace transform and going to the complex frequency domain. We made significant progress in studying such systems by developing tools like the Root Locus method, Bode plots, Nyquist criterion, etc. Nevertheless, these are called classical control techniques (as opposed to modern control theory) because, in a certain sense (the precise sense of which will hopefully become more apparent by the end of the course), the state-space formulations offer a richer characterization. In this sense, one may call the state-space formulation a more geometric approach, and to proceed, we will make ample use of linear algebraic techniques. The rest of the course will proceed as follows:

  • Linear algebra review (part 1)
  • Linear systems and their solutions
  • Linear algebra review (part 2)
  • Stability of dynamical and control systems
  • Controllability - what can we control about a system?
  • Observability - what can we know about a system from observations?
  • Realization theory (bridge transfer functions & SS formulation)
  • Feedback control - SS perspective
  • Pole placement and observer design
  • Observer-based feedback
  • Optimal control concepts