Automatic Control
A system is a composition, a collection of members working for a common purpose.
Systems have inputs
Typical inputs and their Laplace Transforms are
Description | Dirac Delta | Unitary Amplitude Step |
Monomial of degree |
Exponential | Polynomially Modulated Exponential |
1 | 1/s |
Description | Sine | Cosine |
Linearity | |
---|---|
Time Differentiation | |
Time Integration | |
Time Delay | |
Convolution | |
Final Value Theorem | For a function with roots of denominator polynomial of having strictly negative real part, |
Initial Value Theorem |
MATLAB: sys(A,B,C,D)
- Creates continuous-time system from matrices A,B,C,D
LTI Systems may be solved using the laplace transform, with the responses of the system, how it reacts to an input, being defined in two contributions, first given for the state response
For the transformed state response in the Laplace Domain we have
and for the transformed output response we have
where
The inverse Laplace Transform when the PFE as a whole is of form
An LTI system is SISO(Single Input Single Output) if it has one input and one output (duh).
The transfer function mentioned earlier,
The transfer function then can be expressed as a ratio of two polynomials of the complex variable
So, for a given state space representation of
MATLAB: tf(sys)
- Obtains tf from ss
We can use matlab to convert with the following sequence of commands from tf to ss form:
s = tf('s'); % Declare laplace variable
H = (s^2+3*s+1)/(s^3+s^2+s+1); % Define transfer fxn
sys = ss(H) % Get state-space from transfer fxn
Stability is the most important property of a dynamical system. It prevents system damage.
The zero-input state response
A system is stable if its output remains bounded (In control) eventually. We have two types of stability, internal stablity and BIBO stability, and they depend on the convergence of the natural modes.
Internal stability depends on the system's eigenvalues, while BIBO stability depends on the system poles. The system eigenvalues are the roots of the characteristic polynomial
A system is minimal if no zero-pole cancellations occur during calculating the transfer function. Unless specified in this course we will only deal with minimal transfer functions.
For some convergent natural mode associated with an eigenvalue
We are now ready to define stability of LTI systems
An LTI system is
BIBO Stability (Bounded Input-Bounded Output) means that the output remains bounded for any values of the input whatsoever, and an LTI system is BIBO stable if and only if
The output response
For a stable first order system described by the transfer function
For a stable second order system described by the transfer function
The natural frequency
Adding an additional pole to a system adds a tail effect during the transient phase, "dragging it out". The size of the tail effect is proportional to the difference in time constant, in that if the time constant is smaller than the system's the tail effect is not present. If the time constants are similar the tail effect is insignificant and if the time constant of the pole is larger than that of the system the tail effect is significant.
An additional zero for the system will affect it based on the sign of the zero and the frequency, and will affect its overshoot. A negative zero will increase the overshoot while a positive zero will decrease i. The closer this zero is to the natural frequency, the smaller the increase/decrease.
Time delay is when there's a delay between the commanded input and the start of the output response. An LTI system with dynamic behavior described by the transfer function
tf
can be introduced using .inputdelay
, e.g. H.inputdelay=2;
But, such function is not real and rational. To obtain a real rational representation for such function the Pade approximation is defined to approximate the time delay term PADE(sys,N)
returns the delay-free approximation of a transfer function by replacing delays with their
Bode magnitude plots represent the gain in magnitude v.s. the frequency of the complex variable
Magnitude plot:
The polar diagram is a representation of the imaginary part of
A singularity is a pole and zero at the same point.
A feedback control system is a control system that acts on feedback, a guiding signal that adapts the control depending on desired parameters.
The controller, based on reference signal
Systems are not invulnerable. We define three disturbances:
The loop transfer function is defined as
The sensitivity function
The control sensitivity function
We find that the stability and performance of the considered feedback control architecture can be studied by the expressions:
A feedback system is stable if and only if the loop transfer function
This means that there are no unstable zero-pole cancellations in the loop transfer function
In the absence of unstable zero-pole cancellations, the stability of a feedback system can be analyzed using the Nyquist Stability Criterion. The Nyquist Stability Criterion states that a feedback system is stable if and only if the Nyquist plot of the loop transfer function
In parctice, it is not enough that a system is stable. We need to know how stable it is, and this is where the stability margins come in. The gain margin
The phase margin will not be used in our course. The gain margin
Simply put, We aim by analysing the frequency response of the transfer functions
The complementary sensitivity function
The resonant peak
The sensitivity function
The resonant peak
The complementary sensitivity function
The magitude of
For a fixed value
The equation for the constant magnitude locus
Constant phase loci are less significant for this course and will not be considered anymore.
The Constant Magnitude Locus
T_grid
and S_grid
take as parameter the values in
For a deeper stability analysis of feedback systems under perturbations of the loop transfer functions we need to have an appropriate notion for the distance between
We need to analyze the steadystate properties of a simple feedback control system, supposed stable. Assuming that
The variable
An LTI feedback control system is a type-h system if its steady-state tracking error due to a polynomial reference signal of degree
In the unitary feedback with cascade compensation scheme the system type is equal to the number of poles at the origin of the loop function
We define the steady state output error due to
We define the steady state output error due to a polynomial
For which we have that
We find that the steady state requirements for performance can be expressed in the form
From steady-state analysis we find that the quantities depend on the number of poles at the origin of the loop transfer function
These requirements on those quantities can be translated into requirements on
The system may still be unstable at the end of the design phase of the steady-state controller
Transient requirements of a feedback system are defined based on the controlled output response
In particular, we find that the desired transient performance of a feedback control system is described by the one of a suitable second order prototype system of form
In this case the accuracy is the maximum overshoot
The indices for the transent response can be expressed int erms of the damping coefficient
For the design procedure of the transient controller
To suitably design the our control system the frequency of the loop function
A lead network is a transfer function that adds a phase lead to the loop transfer function
We find that a lead network then introduces a magnitude increase and a phase lead by introducing a real negative zero at
To choose our values we use the universal lead network diagrams which provide phase values and magnitude gain values in dB for a chosen gain at a frequency ratio
In principle the maximum phase lead introduced by a lead network is
A lag network is the opposite of a lead network. A lag network introduces a magnitude attenuation(decrease) and a phase lag. The lag network
PID stands for Proportional, Integral, and Derivative. Each of these actions can be used independently or combined to form different types of controllers:
Proportional Controller (P)
Proportional-Integral Controller (PI)
Proportional-Derivative Controller (PD)
Proportional-Integral-Derivative Controller (PID)
When designing PID controllers, we use transfer functions to adjust the system response. For example:
The zeros are tuned to achieve the desired phase lead, which improves the system's stability and response.
When dealing with disturbances, especially sinusoidal ones, it's crucial to minimize their impact on the system's output.
The maximum steady-state output error
where
This constraint ensures disturbance attenuation if
To ensure effective attenuation:
On the Nichols plane, this is represented by a constant magnitude locus where points of the loop function
For output disturbances
where
We need to keep this output error also bound with the constant
This constraint ensures the output error is bounded within acceptable limits.