- 1、本文档共44页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
(电气工程和 与自动化专业英语)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
- (电气工程和 与自动化专业英语)Chapter 13 Adaptive Control and Predictive Control.ppt
- (电气工程和 与自动化专业英语)Chapter 14 Fuzzy control and ANN control systems.ppt
- (电气工程和 与自动化专业英语)Chapter 15 AI control for robots.ppt
- (电气工程和 与自动化专业英语)Chapter 2 Circuit Analysis.ppt
- (电气工程和 与自动化专业英语)Chapter 3 Signals and Systems.ppt
- (电气工程和 与自动化专业英语)Chapter 4 Operational Amplifiers and Sampling Theorem.ppt
- (电气工程和 与自动化专业英语)Chapter 5 DC Motor Steady-State and Transient Analysis.ppt
- (电气工程和 与自动化专业英语)Chapter 9 Control Systems Basics.ppt
- (电气工程和 与自动化专业英语)第6章DC Motor Drives.ppt
- (电气工程和 与自动化专业英语)第8章Stepping Motor Characteristics and Drives.ppt
文档评论(0)