フィルターのクリア

How to design PI controllers within Maltab?

2 ビュー (過去 30 日間)
Kyle Ramphal
Kyle Ramphal 2022 年 4 月 19 日
コメント済み: Kyle Ramphal 2022 年 4 月 20 日

採用された回答

Sam Chak
Sam Chak 2022 年 4 月 20 日
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 件のコメント
Kyle Ramphal
Kyle Ramphal 2022 年 4 月 20 日
Thank you for your response and yes the result from the PID tuner can be addmitted.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePID Controller Tuning についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by