Plotting RLocus With K variable of Closed Loop System
3 ビュー (過去 30 日間)
古いコメントを表示
I'm trying to simulate a system that meets several requirements. The system is;
T(s) = (1000Kc)/ s*(s^2+110s+1250)+1000Kc
and the requirements are;
- Overshoot of less than or equal to 10%
- Settling time of less than or equal to 0.1s (100ms)
- Eramp of less than or equal to 0.001
I intially used the code below to plot the rlocus plot, and it matches my hand calculated results. However, it doesnt allow me to satisfy the requirements of OS less than 10% for example. How do I augment the rlocus plot and closed-loop poles to satisfy these requirements.
den = [1 110 1250 10000]
num = [1000]
k = logspace(-5, 5, 1000);
rlocus(num,den,k)
0 件のコメント
回答 (1 件)
Nikhil Sonavane
2020 年 6 月 1 日
In order to simulate a system that meets your requirement, I would suggest you to leverage Control System Designer App. You can get its further details in this link as well.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Classical Control Design についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!