Glossary
System representation¶
- transfer function
- A mathematical representation of a linear time-invariant (LTI). It is defined as the ratio of the Laplace transform of the output to the Laplace transform of the input, assuming zero initial conditions. The transfer function is a function of the complex variable and is typically expressed as a ratio of polynomials in .
- characteristic polynomial
- The denominator of the transfer function of a system. It is a polynomial in whose roots are the poles of the system.
- pole
- A value of for which the transfer function becomes infinite. Poles are the roots of the denominator of the transfer function.
- zero
- A value of for which the transfer function becomes zero. Zeros are the roots of the numerator of the transfer function.
- integrator
- A system with a transfer function of the form , which corresponds to the operation of integration in the time domain. We also say that a system “has an integrator” if its transfer function has a pole at the origin (i.e., ), or a “has a double integrator” if it has two poles at the origin, etc.
- order (of a system)
- The order of a system is the degree of its characteristic polynomial, which is the same as the number of poles of the system (counting multiplicity). For example a spring-mass-damper system like has a second-order characteristic polynomial , so it is a second-order system. This can refer to either the open-loop transfer function or the closed-loop transfer function, depending on context.
System analysis¶
- impulse response
- The output of a system when the input is a Dirac delta function . Intuitively, it represents the system’s response to an instantaneous “kick”.
- step response
- The output of a system when the input is a unit step function . It represents the system’s response to a sudden change from zero to one.
- steady-state value
- The value that the output of a system approaches as time goes to infinity in response to a given input.
- transient response
- The part of the system’s response that occurs before the system reaches its steady-state value. It captures the dynamics of how the system transitions from its initial state to its steady-state.
First and second-order systems¶
- canonical form
- A standard way of writing a transfer function that makes it easy to identify key parameters. We saw canonical forms for first-order and second-order systems.
- first-order system
- A system whose characteristic polynomial is first-order. The canonical form for a first-order system is
- second-order system
- A system whose characteristic polynomial is second-order. The canonical form for a second-order system is
- DC gain
- The parameter in the canonical form of a system. It is also the steady-state value of the system in response to a step input.
- time constant ()
- For a first-order system, the time constant is the time it takes for the system’s step response to reach approximately 63.2% of its final value. It is a measure of how quickly the system responds to changes in input.
- settling time ()
- The time it takes for the output of a system to enter and remain within 2% of its steady-state value. For a first-order systems, . For a second-order underdamped system, .
- damping ratio ()
- The parameter in the canonical form of a second-order system. It is a dimensionless measure of how oscillatory the system’s response is. A system is underdamped if , critically damped if , and overdamped if .
- undamped system
- A second-order system with a damping ratio . Undamped systems exhibit sustained oscillations in their step response.
- underdamped system
- A second-order system with a damping ratio . Underdamped systems exhibit oscillatory behavior in their step response.
- critically damped system
- A second-order system with a damping ratio . Critically damped systems do not exhibit oscillations and have a repeated real pole.
- overdamped system
- A second-order system with a damping ratio . Overdamped systems do not exhibit oscillations in their step response. They have two real poles, so they can be thought of as the sum of two first-order systems.
- natural frequency ()
- The parameter in the canonical form of a second-order system. It represents the frequency at which the system would oscillate if it were undamped (i.e., if ).
- damped frequency ()
- For a second-order underdamped system, the damped frequency is the frequency of oscillation in the step response. It is related to the natural frequency and damping ratio by .
- pole angle ()
- For a second-order underdamped system, the pole angle is the angle that the poles make with the negative real axis in the complex plane. It is related to the damping ratio by .
- peak time ()
- For a second-order underdamped systems, it is the time it takes for the output to reach its maximum value in response to a step input.
- percent overshoot ()
- For a second-order underdamped system, it is the maximum percentage by which the output exceeds its steady-state value in response to a step input.
Feedback control¶
- plant
- The system that we want to control. It is typically represented by a transfer function .
- controller
- The system that we design to achieve desired performance and stability. It is typically represented by a transfer function . Used interchangeably with “compensator”.
- compensator
- The system that we design to achieve desired performance and stability. It is typically represented by a transfer function . Used interchangeably with “controller”.
- positive feedback
- A feedback configuration where the feedback signal is added to the input signal. This tends to amplify the input and can lead to instability.
- negative feedback
- A feedback configuration where the feedback signal is subtracted from the input signal. This tends to reduce the effect of disturbances and can improve stability.
- unity feedback
- A feedback configuration where the output is fed back directly to the input without any modification. In this case, the closed-loop transfer function is , where is the plant and is the controller (assuming negative feedback).
- closed-loop transfer function
- The transfer function from the reference input to the output in a feedback system. For a unity feedback system, it is given by . If we also include a sensor with transfer function and a pre-filter with transfer function , then the closed-loop transfer function is .
- loop gain
- The product of the transfer functions of the plant and the controller in a feedback system. For a unity feedback system, the loop gain is . If we also have a sensor in the loop, then the loop gain is , where is the transfer function of the sensor.
- relative degree
- The relative degree of a transfer function is the difference between the degree of the denominator and the degree of the numerator. For example, the transfer function has a relative degree of 2, while has a relative degree of 1. You can also think of the relative degree as the number of poles minus the number of zeros of the transfer function.
- type (of a system)
- The type of a system is defined as the number of integrators in its loop gain. For example, in a unity feedback setup, if , it is type 0, while is type 2.
- proportional control (P-control)
- A feedback control strategy where the controller is a proportional gain, i.e., .
- integral control (I-control)
- A feedback control strategy where the controller is an integrator, i.e., .
- proportional-integral control (PI-control)
- A feedback control strategy where the controller is a combination of a proportional gain and an integrator, i.e., .
- proportional-derivative control (PD-control)
- A feedback control strategy where the controller is a combination of a proportional gain and a derivative term, i.e., .
- proportional-integral-derivative control (PID-control)
- A feedback control strategy where the controller is a combination of a proportional gain, an integrator, and a derivative term, i.e., .