Borrar filtros
Borrar filtros

How to design PI controllers within Maltab?

2 visualizaciones (últimos 30 días)
Kyle Ramphal
Kyle Ramphal el 19 de Abr. de 2022
Comentada: Kyle Ramphal el 20 de Abr. de 2022

Respuesta aceptada

Sam Chak
Sam Chak el 20 de Abr. de 2022
If the result from the PID Tuner app can be admitted as the design solution, then just do so to directly obtain and .
Otherwise, you may have to design the PI controller manually, by finding the Characteristic Equation.
For example, since the PI controller is given by , can you compute the Closed-loop system for us to see?
%% Simulation
s = tf('s');
Gp = 1/(0.52*s + 1)
Gc = 131/25 + (468/25)/s
Gcl = feedback(Gp*Gc, 1);
Gcl = minreal(Gcl)
figure(1)
step(Gcl, 3) % step response for 3 seconds
figure(2)
rlocus(Gcl) % root locus to evaluate the stability
Results:
  1 comentario
Kyle Ramphal
Kyle Ramphal el 20 de Abr. de 2022
Thank you for your response and yes the result from the PID tuner can be addmitted.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by