need help in understanding with feedback command

1 回表示 (過去 30 日間)
shipra
shipra 2023 年 5 月 23 日
コメント済み: shipra 2023 年 5 月 24 日
I am using these commands to develop my transfer function with state space matrix, using pidtune to develop closed loop system
sys=ss(A_b,B_b,C_b,D1);
TFbuck=tf(sys);
C = pidtune(TFbuck,'PID')
These are the three commands that I have tried for closed loop controller. syst11 and syst1 are same (default is a negative feedback loop, or we can specify -1). But the first command, syst gives me different transfer function as compared to syst11, syst1. What is the difference in computation that gives different results.
syst = feedback(TFbuck*C,1)
syst11 = feedback(C,TFbuck,-1)
syst1 = feedback(C,TFbuck)

採用された回答

Paul
Paul 2023 年 5 月 23 日
Hi shipra,
In accordance with the the doc page feedback, the first argument is the forward path gain and the second argument is the feedback path gain, the third argument is the sign of the feedback, default is -1. So, we have mathematically
syst: TFbuck(s)*C(s)/( 1 + 1*TFBuck(s)*C(s) )
syst11 = C(s)/( 1 + TFBuck(s)*C(s) )
syst1 = C(s)/( 1 + TFBuck(s)*C(s) )
  1 件のコメント
shipra
shipra 2023 年 5 月 24 日
Hello Paul,
Thankyou for your answer.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGeneral Applications についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by