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

  1. # Copyright (C) 1997 Jose Daniel Munoz Frias
  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 K = place(sys, P) 
  18.  
  19. %PLACE K =  place(sys,P) Computes the matrix  K such that if the state
  20. %is feedback with gain K, then the eigenvalues  of the closed loop
  21. %system (i.e. A-BK) are those specified in the vector P.
  22. %
  23. % Version: Beta (May-1997): If you have any comments, please let me know.
  24. %                (see the file place.m for my address)
  25. %
  26. % Written by: Jose Daniel Munoz Frias.
  27.  
  28. %          Universidad Pontificia Comillas
  29. %          ICAIdea
  30. %          Alberto Aguilera, 23
  31. %          28015 Madrid, Spain
  32. %
  33. %          E-Mail: daniel@dea.icai.upco.es
  34. %
  35. %          Phone: 34-1-5422800   Fax: 34-1-5596569
  36. %
  37. % Algorithm taken from "The Control Handbook", IEEE press pp. 209-212
  38. #
  39. # code adaped by A.S.Hodel (a.s.hodel@eng.auburn.edu) for use in controls
  40. # toolbox
  41.  
  42.   sav_val = empty_list_elements_ok;
  43.   empty_list_elements_ok = 1;
  44.   #
  45.   # check arguments
  46.   #
  47.   if(!is_struct(sys))
  48.     error("sys must be in system data structure format (see ss2sys)");
  49.   endif
  50.   sys = sysupdate(sys,"ss");    # make sure it has state space form up to date
  51.   if(!is_controllable(sys))
  52.     error("sys is not controllable.");
  53.   elseif( min(size(P)) != 1)
  54.     error("P must be a vector")
  55.   else
  56.     P = reshape(P,length(P),1);    # make P a column vector
  57.   endif
  58.   # system must be purely continuous or discrete
  59.   is_digital(sys);
  60.   [n,nz,m,p] = sysdimensions(sys);
  61.   nx = n+nz;    # already checked that it's not a mixed system.
  62.   if(m != 1)
  63.     error(["sys has ", num2str(m)," inputs; need only 1"]);
  64.   endif
  65.  
  66.   # takes the A and B matrix from the system representation
  67.   [A,B]=sys2ss(sys);
  68.   sp = length(P);
  69.   if(nx == 0)
  70.     error("place: A matrix is empty (0x0)");
  71.   elseif(nx != length(P))
  72.     error(["A=(",num2str(nx),"x",num2str(nx),", P has ", num2str(length(P)), ...
  73.     "entries."])
  74.   endif
  75.  
  76.   # arguments appear to be compatible; let's give it a try!
  77.   %The second step is the calculation of the characteristic polynomial ofA
  78.   PC=poly(A);
  79.  
  80.   %Third step: Calculate the transformation matrix T that transforms the state
  81.   %equation in the controllable canonical form.
  82.  
  83.   %first we must calculate the controllability matrix M:
  84.   M=B;
  85.   AA=A;
  86.   for n = 2:nx
  87.     M(:,n)=AA*B;
  88.     AA=AA*A;
  89.   endfor
  90.  
  91.   %second, construct the matrix W
  92.   PCO=PC(nx:-1:1);
  93.   PC1=PCO;     %Matrix to shift and create W row by row
  94.  
  95.   for n = 1:nx
  96.     W(n,:) = PC1;
  97.     PC1=[PCO(n+1:nx),zeros(1,n)];
  98.   endfor
  99.  
  100.   T=M*W;
  101.  
  102.   %finaly the matrix K is calculated 
  103.   PD = poly(P); %The desired characteristic polynomial
  104.   PD = PD(nx+1:-1:2);
  105.   PC = PC(nx+1:-1:2);
  106.   
  107.   K = (PD-PC)/T;
  108.  
  109.   %Check if the eigenvalues of (A-BK) are the same specified in P
  110.   Pcalc = eig(A-B*K);
  111.  
  112.   Pcalc = sortcom(Pcalc);
  113.   P = sortcom(P);
  114.  
  115.   if(max( (abs(Pcalc)-abs(P))./abs(P) ) > 0.1)
  116.     disp("Place: Pole placed at more than 10% relative error from specified");
  117.   endif
  118.  
  119.   empty_list_elements_ok = sav_val;
  120. endfunction
  121.  
  122.