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

📄 fig9_43.m

📁 包含了控制理论的各种仿真程序
💻 M
字号:
%  Figure 9.43      Feedback Control of Dynamic Systems, 4e
%                        Franklin, Powell, Emami
%
% fig9_43.m is a script to generate Figure 9.43, the rootlocus for
% altitude control with inner-loop stabilization and altitude 
% and altitude derivative feedback

clf;
ftq = [-0.0064    0.0263         0  -32.2000         0;
   -0.0941   -0.6240  761.1400 -196.2000         0;
   -0.0002   -0.0015   -4.4120  -12.4800         0;
         0         0    1.0000         0         0;
         0   -1.0000         0  830.0000         0];

g =[0;
  -32.7000;
   -2.0800;
         0;
         0];

h=[0 0 0 0 1];
hdot=ftq(5,1:5);
hf=hdot + 0.1*h;
j=0;

rlocus(ftq,g,-hf,j)
v=[-8, 14, -8, 8];
axis(v);
grid;
title('Fig. 9.43  Rootlocus for h and hdot feedback with inner-loop stab.')

⌨️ 快捷键说明

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