根轨迹法的两个工程设计实例.ppt

  1. 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
* (a) Design an autopilot so that the response to a step elevator input has a rise time of 1 sec or less and an overshoot less than 10%. (b) Design an autopilot that will command the trim so as to drive the steady state value of to zero for an arbitrary constant moment as well as meet the specifications in part (a). * [solution] (a) First, we try proportional control to look at the system characteristics. - + * Draw the root locus with respect to parameter . MATLAB program a = [ 1, 2.5 ] ; b = [ 1, 0.7 ] ; c = [ 1, 5, 40 ] ; d = [ 1, 0.03, 0.06 ] ; G = tf ( conv ( a, b ), conv ( c, d ) ) ; rlocus ( G ) ; axis ( [ -5, 1, -10, 10 ] ) ; * Original Root Locus -5 -4 -3 -2 -1 0 1 -10 -8 -6 -4 -2 0 2 4 6 8 10 * The ideal closed-loop dominant poles are: Obviously, the dominant poles are not on the original root locus. * -5 -4 -3 -2 -1 0 1 -10 -8 -6 -4 -2 0 2 4 6 8 10 Original Root Locus the dominant poles * Draw the unit step response curve with . MATLAB program a = [ 1, 2.5 ]; b = [ 1, 0.7 ]; c = [ 1, 5, 40 ]; d = [ 1, 0.03, 0.06 ]; kc = 0.3; G = tf ( 160 * conv (a, b), conv (c,d) ); Fai = feedback ( kc * G, 1, -1 ); step ( Fa i); grid; * 0 1 2 3 4 5 6 0 0.2 0.4 0.6 0.8 1 1.2 1.4 Time (sec) Amplitude (degree) Unit step response with P control * Proportional feedback will not be acceptable because of the bad dynamic response. * Now we choose lead compensation. - + * Through some trial and error, we finally choose The open-loop transfer function becomes * For with lead compensation, draw the root locus with respect to parameter . MATLAB program: a = [ 1, 2.5 ] ; b = [ 1, 0.7 ] ; c = [ 1, 3 ] ; num = conv ( conv ( a, b ), c ) ; d = [ 1, 5, 40 ] ; e = [ 1, 0.03, 0.06 ] ; f = [ 1, 20 ] ; den = conv ( conv ( d, e ), f ) ; G = tf ( num, den ) ; rlocus ( G ) ; axis ( [ -20, 0, -15, 15 ] ) ; * -20 -18 -16 -14 -12 -10 -8 -6 -4 -2 0 -15 -10 -5 0 5 10 15 -3 * Draw the unit step response curve for lead compensation wi

文档评论(0)

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

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

1亿VIP精品文档

相关文档