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!