PID Controller output the results of integral gain

Risposte (1)

Broy
Broy il 15 Gen 2026
The Discrete PID Controller block does not provide individual term outputs (P, I, or D) directly. It only outputs the final summed control signal.
To monitor the integral gain in real-time, you can construct the PID Manually using individual Simulink blocks:
  • Take your Error signal. Split it into three parallel branches.
  • P-Branch: Connect Error -> Gain (K_p).
  • I-Branch: Connect Error -> Gain (K_i) -> Discrete-Time Integrator block.
  • D-Branch: Connect Error -> Discrete Derivative block -> Gain (K_d).
  • Add all three branches together to get your control output.
Helpful Documentations:
Hope this is helpful.

Prodotti

Release

R2022b

Richiesto:

il 11 Gen 2026

Commentato:

il 15 Gen 2026

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by