2016-5-121第3章控制器及其特性要点.ppt

  1. 1、本文档共64页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
2016-5-121第3章控制器及其特性要点

The behavior of the proportional action: Kp Matlab code: G=tf(1,[1,3,3,1]); for Kp=[0.1:0.1:1], H=feedback(Kp*G,1); step(H), hold on; end Consider a third-order plant model given by Kp=1 Kp=0.1 Set Kp from 0.1 to 1,Ti=infinite,Td=0 Note: when Kp increases, the response speed of the system increases, the overshoot of the closed-loop system increases, and the steady-state error decreases. However, when Kp is large enough, the closed-loop system becomes unstable. * The behavior of the integral action: Ti Matlab code: G=tf(1,[1,3,3,1]); Kp=1; s=tf(s); for Ti=[0.7:0.1:1.5] Gc=Kp*(1+1/Ti/s); G_c=feedback(G*Gc,1); step(G_c), hold on end axis([0 20 0 2]) Note: The most important feature of a PI controller is that there is no steady-state error in the step response if the closed-loop system is stable. when Ti increases,the overshoot tends to be smaller, but the speed of response tends to be slower. Ti=0.7 Ti=1.5 * The behavior of the derivative action:Td Td=1.5 Td=0.1 Kp=Ti=1 Note: Clearly, when Td increases the response has a smaller overshoot with a slightly slower rise time but similar settling time. Matlab code: G=tf(1,[1,3,3,1]); Kp=1; Ti=1; s=tf(s); for Td=[0.1:0.2:2] Gc=Kp*(1+1/Ti/s+Td*s); step(feedback(G*Gc,1)); hold on end axis([0 20 0 2]) * Example 4.14 Simulate the following second order plus time delay process controlled by the P controller. And, confirm that the offset converges to the expected value. for for for for Solution So, the final value of the process output is and the offset is . * * * Example 4.15 Simulate the following second order plus time delay process controlled by the PID controller. And, confirm that the integral part of the PID controller converges to the expected value. for for

文档评论(0)

dajuhyy + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档