![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/175866/image.jpeg)
how to measure PID parameters from PID tuning of SISOtool
조회 수: 10 (최근 30일)
이전 댓글 표시
I have a discrete plant which I wanna find a PID controller:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/158191/image.jpeg)
I used SISOtool and PID tuning to find a fine PID controller, result is:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/158193/image.jpeg)
How can I find PID parameters from that to program my microcontroller? Thank in advanced.
댓글 수: 0
채택된 답변
Arkadiy Turevskiy
2016년 12월 6일
Export the compensator you designed, C, to MATLAB workspace. Then in MATLAB type
C=pid(C)
This will convert the compensator from a transfer function to a PID object. You can then access the gains as shown below.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/175866/image.jpeg)
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 PID Controller Tuning에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!