- 1、本文档共44页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
(电气工程和 与自动化专业英语)Chapter 12MIMO Systems.ppt
12.2 Control design for an aircraft glide slop system Example 12.2: Aircraft glide slope control 3 This plant is a third-order system, three closed-loop pole locations should be selected. Function select_poles()fulfill this task. n = 3; t_settle = 2; damp_ratio = 0.8; p = select_poles(n, t_settle, damp_ratio); The controller gain is computed with a call to function place(). K = place(ssplant.a, ssplant.b, p) Calling place() again determines the observer gain matrix L. obs_pole_mult = 3; q = obs_pole_mult * p; L = place(ssplant.a, ssplant.c, q) 12.2 Control design for an aircraft glide slop system Example 12.2: Aircraft glide slope control 3 The state- space observer-controller can now be formed based on the controller gain K and observer gains L by the following commands. ssobsctrl=ss(ssplant.a-L*ssplant.c,[L ssplant.b-L*ssplant.d],-K,0); We need one more step to form a modified plant model that passes the plant inputs as additional outputs. We do so because the observer-controller requires the plant inputs in addition to the plant outputs. r = size(b, 2); % Number of inputs n = size(a, 1); % Number of states ssplant_aug = ss(ssplant.a, ssplant.b, [ssplant.c; zeros(r, n)], [ssplant.d; eye(r)]); 12.2 Control design for an aircraft glide slop system Example 12.2: Aircraft glide slope control 3 Form a closed-loop system consisting of the augmented plant model and the observer-controller as below: sscl = feedback(ssplant_aug, ssobsctrl, +1); Plot the pole locations along with the design specifications by the command below. plot_poles(sscl, t_settle, damp_ratio); The resulting plot is shown in Figure 12.2. 12.3 Control design of the controller Text B: Optimal control for an inverted pendulum system 2 12.4 Control design of the observer * 1 Outline 12.3 Control design of the controller * An inverted pendulum on a cart has one input, the cart driving force F, and two outputs, the cart position x and
您可能关注的文档
- (生产作业相关管理)chap1绪论.ppt
- (生产作业相关管理)chap4网络图讲解.ppt
- (生产作业相关管理)chap5质量相关管理.ppt
- (生产作业相关管理)chap6维护相关管理与可靠性.ppt
- (生产运作相关管理)2运作战略.ppt
- (生产运作相关管理)3产品设计与流程设计.ppt
- (生产运作相关管理)4选址.ppt
- (生产运作相关管理)5预测与生产计划.ppt
- (生产运作相关管理)7MRP.ppt
- (生产运作相关管理)8作业排序.ppt
- 2023-2024学年山东省济南市历下区五年级(下)期末语文试卷(A卷).pdf
- 2023-2024学年山东省济南市历下区七年级(下)期中数学模拟试卷.pdf
- 甘肃省白银市靖远县多校2025届高三下学期5月冲刺联考数学试题和答案详解.docx
- 2023-2024学年山东省济南市平阴县八年级(下)期末数学试卷.pdf
- 2023-2024学年山东省济南市历城区八年级(下)期中物理试卷.pdf
- 2023-2024学年山东省济南市平阴县七年级(下)期末语文试卷.pdf
- 2023-2024学年山东省济南市平阴县八年级(下)期中语文试卷.pdf
- 高三家长会家长发言稿.docx
- 工程建设质量管理小组活动准则.docx
- 第5章 轴对称能力提升测试卷(原卷版)(1).docx
文档评论(0)