home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21eb.zip / octave / SCRIPTS.ZIP / scripts.fat / control / nichols.m < prev    next >
Text File  |  1999-04-29  |  4KB  |  117 lines

  1. # Copyright (C) 1998 A. Scottedward Hodel 
  2. #
  3. # This file is part of Octave. 
  4. #
  5. # Octave is free software; you can redistribute it and/or modify it 
  6. # under the terms of the GNU General Public License as published by the 
  7. # Free Software Foundation; either version 2, or (at your option) any 
  8. # later version. 
  9. # Octave is distributed in the hope that it will be useful, but WITHOUT 
  10. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 
  11. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License 
  12. # for more details.
  13. # You should have received a copy of the GNU General Public License 
  14. # along with Octave; see the file COPYING.  If not, write to the Free 
  15. # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  16.  
  17. function [mag,phase,w] = nichols(sys,w,outputs,inputs)
  18. # [mag,phase,w] = nichols(sys[,w,outputs,inputs])
  19. # Produce Nichols plot of a system
  20. #
  21. # Compute the frequency response of a system.
  22. # inputs:
  23. #   sys: system data structure (must be either purely continuous or discrete;
  24. #     see is_digit)
  25. #   w: frequency values for evaluation.
  26. #      if sys is continuous, then nichols evaluates G(jw)
  27. #      if sys is discrete, then nichols evaluates G(exp(jwT)), where T=sys.tsam
  28. #         (the system sampling time)
  29. #      default: the default frequency range is selected as follows: (These
  30. #        steps are NOT performed if w is specified)
  31. #          (1) via routine bodquist, isolate all poles and zeros away from
  32. #              w=0 (jw=0 or exp(jwT)=1) and select the frequency
  33. #             range based on the breakpoint locations of the frequencies.
  34. #          (2) if sys is discrete time, the frequency range is limited
  35. #              to jwT in [0,2p*pi]
  36. #          (3) A "smoothing" routine is used to ensure that the plot phase does
  37. #              not change excessively from point to point and that singular
  38. #              points (e.g., crossovers from +/- 180) are accurately shown.
  39. #   outputs, inputs: the indices of the output(s) and input(s) to be used in
  40. #     the frequency response; see sysprune.
  41. # outputs:
  42. #    mag, phase: the magnitude and phase of the frequency response
  43. #       G(jw) or G(exp(jwT)) at the selected frequency values.
  44. #    w: the vector of frequency values used
  45. # If no output arguments are given, nichols plots the results to the screen.
  46. # Descriptive labels are automatically placed.  See xlabel, ylable, title,
  47. # and replot.
  48. #
  49. # Note: if the requested plot is for an MIMO system, mag is set to
  50. # ||G(jw)|| or ||G(exp(jwT))|| and phase information is not computed.
  51.  
  52.   # check number of input arguments given
  53.   if (nargin < 1 | nargin > 4)
  54.     usage("[mag,phase,w] = nichols(sys[,w,outputs,inputs])");
  55.   endif
  56.   if(nargin < 2)
  57.     w = [];
  58.   endif
  59.   if(nargin < 3)
  60.     outputs = [];
  61.   endif
  62.   if(nargin < 4)
  63.     inputs = [];
  64.   endif
  65.  
  66.   [f, w] = bodquist(sys,w,outputs,inputs,"nichols");
  67.  
  68.   [stname,inname,outname] = sysgetsg(sys);
  69.   systsam = sysgetts(sys);
  70.  
  71.   # Get the magnitude and phase of f.
  72.   mag = abs(f);
  73.   phase = arg(f)*180.0/pi;
  74.  
  75.   if (nargout < 1),
  76.     # Plot the information
  77.     if(gnuplot_has_multiplt)
  78.       oneplot();
  79.     endif
  80.     gset autoscale;
  81.     if(gnuplot_has_multiplt)
  82.       gset nokey;
  83.     endif
  84.     clearplot();
  85.     grid("on");
  86.     gset data style lines;
  87.     if(is_digit(sys))
  88.       tistr = "(exp(jwT)) ";
  89.     else
  90.       tistr = "(jw)";
  91.     endif
  92.     xlabel("Phase (deg)");
  93.     if(is_siso(sys))
  94.       title(["Nichols plot of |[Y/U]",tistr,"|, u=", ...
  95.     sysgetsg(sys,"in",1,1), ", y=",sysgetsg(sys,"out",1,1)]);
  96.     else
  97.       title([ "||Y(", tistr, ")/U(", tistr, ")||"]);
  98.       printf("MIMO plot from\n%s\nto\n%s\n",outlist(inname,"    "), ...
  99.         outlist(outname,"    "));
  100.     endif
  101.     if(max(mag) > 0)
  102.       ylabel("Gain in dB");
  103.       md = 20*log10(mag);
  104.     else
  105.       ylabel("Gain |Y/U|")
  106.       md = mag;
  107.     endif
  108.  
  109.     axvec = ax2dlim([vec(phase),vec(md)]);
  110.     axis(axvec);
  111.     plot(phase,md);
  112.     mag = phase = w = [];
  113.   endif
  114. endfunction
  115.