1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
|
## Copyright (C) 1996, 2000, 2004, 2005, 2007
## Auburn University. All rights reserved.
##
##
## This program is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or (at
## your option) any later version.
##
## This program is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; see the file COPYING. If not, see
## <http://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {Function File} {} rldemo (@var{inputs})
## Octave Control toolbox demo: Root Locus demo.
## @end deftypefn
## Author: David Clem
## Created: August 15, 1994
## Updated by John Ingram December 1996
function rldemo ()
while (1)
clc
k = menu("Octave Root Locus Demo", ...
"Display continuous system's open loop poles and zeros (pzmap)", ...
"Display discrete system's open loop poles and zeros (pzmap)", ...
"Display root locus diagram of SISO continuous system (rlocus)", ...
"Display root locus diagram of SISO discrete system (rlocus)", ...
"Return to main demo menu");
if (k == 1)
clc
help pzmap
prompt
clc
disp("Display continuous system's open loop poles and zeros (pzmap)\n");
disp("Example #1, Consider the following continuous transfer function:");
cmd = "sys1 = tf([1.5, 18.5, 6], [1, 4, 155, 302, 5050]);";
disp(cmd);
eval(cmd);
cmd ="sysout(sys1);";
disp(cmd);
eval(cmd);
disp("\nPole-zero form can be obtained as follows:");
cmd = "sysout(sys1,""zp"");";
disp(cmd);
eval(cmd);
disp("View the system's open loop poles and zeros with the command:")
cmd = "pzmap(sys1);";
run_cmd
prompt
clc
disp("Example #2, Consider the following set of poles and zeros:");
cmd = "sys2 = zp([-1, 5, -23],[-1, -10, -7+5i, -7-5i],5);";
disp(cmd);
eval(cmd);
cmd = "sysout(sys2);";
disp(cmd);
eval(cmd);
disp("\nThe pzmap command for the zp form is the same as the tf form:")
cmd = "pzmap(sys2);";
run_cmd;
disp("\nThe internal representation of the system is not important;");
disp("pzmap automatically sorts it out internally.");
prompt;
clc
disp("Example #3, Consider the following state space system:\n");
cmd = "sys3=ss([0, 1; -10, -11], [0; 1], [0, -2], 1);";
disp(cmd);
eval(cmd);
cmd = "sysout(sys3);";
disp(cmd);
eval(cmd);
disp("\nPole-zero form can be obtained as follows:");
cmd = "sysout(sys3,""zp"");";
disp(cmd);
eval(cmd);
disp("\nOnce again, the pzmap command is the same:");
cmd = "pzmap(sys3);";
run_cmd;
prompt;
closeplot
clc
elseif (k == 2)
clc
help pzmap
prompt
clc
disp("\nDisplay discrete system's open loop poles and zeros (pzmap)\n");
disp("First we must define a sampling time, as follows:\n");
cmd = "Tsam = 1;";
run_cmd;
disp("Example #1, Consider the following discrete transfer function:");
cmd = "sys1 = tf([1.05, -0.09048], [1, -2, 1],Tsam);";
disp(cmd);
eval(cmd);
cmd ="sysout(sys1);";
disp(cmd);
eval(cmd);
disp("\nPole-zero form can be obtained as follows:");
cmd = "sysout(sys1,""zp"");";
disp(cmd);
eval(cmd);
disp("View the system's open loop poles and zeros with the command:")
cmd = "pzmap(sys1);";
run_cmd
prompt
clc
disp("Example #2, Consider the following set of discrete poles and zeros:");
cmd = "sys2 = zp(-0.717, [1, -0.368], 3.68, Tsam);";
disp(cmd);
eval(cmd);
cmd = "sysout(sys2);";
disp(cmd);
eval(cmd);
disp("\nThe pzmap command for the zp form is the same as the tf form:")
cmd = "pzmap(sys2);";
run_cmd;
disp("\nThe internal representation of the system is not important;");
disp("pzmap automatically sorts it out internally.");
prompt;
clc
disp("Example #3, Consider the following discrete state space system:\n");
cmd = "sys3=ss([1, 0.0952; 0, 0.905], [0.00484; 0.0952], [1, 0], 0, Tsam);";
disp(cmd);
eval(cmd);
cmd = "sysout(sys3);";
disp(cmd);
eval(cmd);
disp("\nPole-zero form can be obtained as follows:");
cmd = "sysout(sys3,""zp"");";
disp(cmd);
eval(cmd);
disp("\nOnce again, the pzmap command is the same:");
cmd = "pzmap(sys3);";
run_cmd;
prompt;
closeplot
clc
elseif (k == 3)
clc
help rlocus
prompt;
clc
disp("Display root locus of a continuous SISO system (rlocus)\n")
disp("Example #1, Consider the following continuous transfer function:");
cmd = "sys1 = tf([1.5, 18.5, 6],[1, 4, 155, 302, 5050]);";
disp(cmd);
eval(cmd);
cmd ="sysout(sys1);";
disp(cmd);
eval(cmd);
disp("\nPole-zero form can be obtained as follows:");
cmd = "sysout(sys1,""zp"");";
disp(cmd);
eval(cmd);
disp("\nWhen using rlocus, inital system poles are displayed as X's.")
disp("Moving poles are displayed as diamonds. Zeros are displayed as")
disp("boxes. The simplest form of the rlocus command is as follows:")
cmd = "rlocus(sys1);";
run_cmd
disp("\nrlocus automatically selects the minimum and maximum gains based")
disp("on the real-axis locus breakpoints. The plot limits are chosen")
disp("to be no more than 10 times the maximum magnitude of the open")
disp("loop poles/zeros.");
prompt
clc
disp("Example #2, Consider the following set of poles and zeros:");
cmd = "sys2 = zp([],[0, -20, -2, -0.1],5);";
disp(cmd);
eval(cmd);
cmd = "sysout(sys2);";
disp(cmd);
eval(cmd);
disp("\nThe rlocus command for the zp form is the same as the tf form:")
cmd = "rlocus(sys2);";
run_cmd;
disp("\nThe internal representation of the system is not important;");
disp("rlocus automatically sorts it out internally.");
prompt;
clc
disp("Example #3, Consider the following state space system:\n");
cmd = "sys3=ss([0, 1; -10, -11], [0; 1], [0, -2], 0);";
disp(cmd);
eval(cmd);
cmd = "sysout(sys3);";
disp(cmd);
eval(cmd);
disp("\nPole-zero form can be obtained as follows:");
cmd = "sysout(sys3,""zp"");";
disp(cmd);
eval(cmd);
disp("\nOnce again, the rlocus command is the same:");
cmd = "rlocus(sys3);";
run_cmd;
disp("\nNo matter what form the system is in, the rlocus command works the");
disp("the same.");
prompt;
closeplot
clc
elseif (k == 4)
clc
help rlocus
prompt
clc
disp("Display root locus of a discrete SISO system (rlocus)\n")
disp("First we must define a sampling time, as follows:\n");
cmd = "Tsam = 1;";
run_cmd;
disp("Example #1, Consider the following discrete transfer function:");
cmd = "sys1 = tf([1.05, -0.09048],[1, -2, 1],Tsam);";
disp(cmd);
eval(cmd);
cmd ="sysout(sys1);";
disp(cmd);
eval(cmd);
disp("\nPole-zero form can be obtained as follows:");
cmd = "sysout(sys1,""zp"");";
disp(cmd);
eval(cmd);
disp("\nWhen using rlocus, inital system poles are displayed as X's.")
disp("Moving poles are displayed as diamonds. Zeros are displayed as")
disp("boxes. The simplest form of the rlocus command is as follows:")
cmd = "rlocus(sys1);";
run_cmd
disp("\nrlocus automatically selects the minimum and maximum gains based")
disp("on the real-axis locus breakpoints. The plot limits are chosen")
disp("to be no more than 10 times the maximum magnitude of the open")
disp("loop poles/zeros.");
prompt
clc
disp("Example #2, Consider the following set of discrete poles and zeros:");
cmd = "sys2 = zp(-0.717, [1, -0.368], 3.68, Tsam);";
disp(cmd);
eval(cmd);
cmd = "sysout(sys2);";
disp(cmd);
eval(cmd);
disp("\nThe rlocus command for the zp form is the same as the tf form:")
cmd = "rlocus(sys2);";
run_cmd;
disp("\nThe internal representation of the system is not important;");
disp("rlocus automatically sorts it out internally. Also, it does not");
disp("matter if the system is continuous or discrete. rlocus also sorts");
disp("this out automatically");
prompt;
clc
disp("Example #3, Consider the following discrete state space system:\n");
cmd = "sys3=ss([1, 0.0952; 0, 0.905], [0.00484; 0.0952], [1, 0], 0, Tsam);";
disp(cmd);
eval(cmd);
cmd = "sysout(sys3);";
disp(cmd);
eval(cmd);
disp("\nPole-zero form can be obtained as follows:");
cmd = "sysout(sys3,""zp"");";
disp(cmd);
eval(cmd);
disp("\nOnce again, the rlocus command is the same:");
cmd = "rlocus(sys3);";
run_cmd;
disp("\nNo matter what form the system is in, the rlocus command works the");
disp("the same.");
prompt;
closeplot
clc
elseif (k == 5)
return
endif
endwhile
endfunction
|