- 1、本文档共64页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 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
您可能关注的文档
最近下载
- 一种Q355级Ti微合金化高强度热轧H型钢及其生产方法.pdf VIP
- 专题11《与妻书》-备战2024年高考语文课内文言文挖空训练+知识梳理+过关训练(统编版)(解析版).docx VIP
- 2025年天津市中考语文试卷含答案.pptx VIP
- 2025年研究生入学考试《数学二》新版试卷真题(含完整解析).pdf VIP
- QA培训资料完整版.doc VIP
- 2025年四川省高考生物试卷真题(含答案解析).pdf
- 2025年高考语文课内文言文知识梳理(统编版)专题11《与妻书》(原卷版).pdf VIP
- 2025年高考语文课内文言文知识梳理(统编版)专题17《论语十二章》(原卷版).docx VIP
- 蚂蚁蜇伤诊疗规范考试试卷试题及参考答案.docx VIP
- 京津冀康养产业职业技能大赛(中药调剂赛项)理论参考试题库资料(含答案).pdf
文档评论(0)