⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fig9_40.m

📁 包含了控制理论的各种仿真程序
💻 M
字号:
%  Figure 9.40      Feedback Control of Dynamic Systems, 4e
%                        Franklin, Powell, Emami
%
% fig9_40.m is a script to generate Fig. 9.40, the rootlocus
% of the aircraft with feedback from pitch rate to elevator
clf;
% aircraft system matrices
f=[-.00643 .0263 0 -32.2 0;
-.0941 -.624 820 0 0;
-.000222 -0.00153 -.668 0 0;
0 0 1 0 0;
0 -1 0 830 0];

g=[0; -32.7; -2.08; 0; 0];
h=[0 0 -1 0 0];
j=0;
%
%[np, dp]= ss2tf(f,g,h,j);
sys=ss(f,g,h,j);
% axis([-.02 .02 -.015 .015])
rlocus(sys)
grid;
title('Fig. 9.40 Rootlocus for pitch rate to elevator')

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -