· Hankyu Kim · Control  · 3 min read

Automatic Control and Feedback Systems

Automatic control adjusts a system’s input so that its output follows a desired reference, ensuring stability, precision, and robustness across engineering applications.

Automatic control adjusts a system’s input so that its output follows a desired reference, ensuring stability, precision, and robustness across engineering applications.

Automatic control is the discipline concerned with adjusting the inputs of a system so that its outputs follow a desired reference. This idea is at the foundation of modern engineering, appearing in applications such as vehicle regulation, industrial processes, and robotics. By using feedback, engineers can design systems that remain stable, reject disturbances, and track reference signals with precision.

linear time-invariant (LTI) system

At the heart of control theory lies the concept of the LTI system, where the output is linearly related to the input and output does not change regardless of when the input is applied.

Control application

There are normally two control application.

  • Tracking : following the reference
  • Regulation : regardless of noise, staying zero

A block diagram of a closed loop automatic control system

A general block representation of a feedback system can be described as:

Super wide

(where Controller calculate control input to make control output to follow control reference, Actuator takes control inputs and converting them into physical forces, Process represents system dynamics with differential equation, and Sensor provides measured output data for feedback control.)

Description

The main elements of a feedback control system are the process (plant), actuator, sensor, and controller. The process is the system being controlled, such as a motor or chemical reactor. The actuator applies the control action, such as a valve or motor. The sensor measures the output, and the controller determines the corrective input.

The output is measured by a sensor and fed back to the controller. The controller compares the reference with the actual output and generates corrective input to minimize the error.

Control systems are often categorized into two forms. In open-loop control, the controller applies input commands without considering the actual output. This approach is simple but relies on an accurate model and negligible disturbances. In contrast, closed-loop (feedback) control continuously compares the output with the reference, adjusting the system input to reduce error. Feedback makes the system more accurate and robust but requires sensors and careful design.

To summarize,

  • Closed-loop control (feedback control) is necessary for precise-tracking control.
  • Open-loop control (feed forward control) is used when you know the model which is the relationship between input and output.

4 index of control performace

For a control system to function properly, several key considerations must be satisfied.

  1. Stability is essential, meaning that the system should not oscillate uncontrollably or diverge.
  2. Tracking performance requires how fast the output to follow the reference with minimal error.
  3. Disturbance rejection ensures that external inputs do not significantly affect system behavior.
  4. Robustness guarantees that the system can tolerate modeling inaccuracies and parameter variations.

In summary, open-loop control is simple but vulnerable to disturbances, while closed-loop feedback enables accuracy, robustness, and adaptability. Automatic control and feedback thus form the backbone of modern engineered systems. By ensuring stability, precision, and robustness, feedback control allows complex systems to operate reliably under uncertainty.

Back to Blog

Related Posts

View All Posts »
Dynamic Compensation

Dynamic Compensation

Compensation techniques such as PD, Lead, PI, and Lag are essential in control engineering. They shape transient response, steady-state error, and stability margins by modifying the frequency characteristics of systems.

PID Control

PID Control

PID control is one of the most widely used techniques in engineering, combining proportional, integral, and derivative actions to achieve stability, precision, and robustness in dynamic systems.

FABRIK

FABRIK

FABRIK(A Fast Iterative Solver for the Inverse Kinematics Problem) is a heuristic, iterative inverse kinematics solver that avoids complex matrix operations and singularities, providing smooth motion and fast convergence for robotic chains.

Numerical Inverse Kinematics

Numerical Inverse Kinematics

Numerical inverse kinematics can iteratively solve for joint angles to reach a desired end-effector position using gradient descent with the Jacobian pseudo-inverse, suitable for planar manipulators and more complex robotic arms.