Simexa24.m
上传用户:eighthdate
上传日期:2014-05-24
资源大小:270k
文件大小:5k
源码类别:

其他行业

开发平台:

Matlab

  1. function [ret,x0,str,ts,xts]=simexa23(t,x,u,flag);
  2. %SIMEXA23   is the M-file description of the SIMULINK system named SIMEXA23.
  3. %   The block-diagram can be displayed by typing: SIMEXA23.
  4. %
  5. %   SYS=SIMEXA23(T,X,U,FLAG) returns depending on FLAG certain
  6. %   system values given time point, T, current state vector, X,
  7. %   and input vector, U.
  8. %   FLAG is used to indicate the type of output to be returned in SYS.
  9. %
  10. %   Setting FLAG=1 causes SIMEXA23 to return state derivatives, FLAG=2
  11. %   discrete states, FLAG=3 system outputs and FLAG=4 next sample
  12. %   time. For more information and other options see SFUNC.
  13. %
  14. %   Calling SIMEXA23 with a FLAG of zero:
  15. %   [SIZES]=SIMEXA23([],[],[],0),  returns a vector, SIZES, which
  16. %   contains the sizes of the state vector and other parameters.
  17. %       SIZES(1) number of states
  18. %       SIZES(2) number of discrete states
  19. %       SIZES(3) number of outputs
  20. %       SIZES(4) number of inputs
  21. %       SIZES(5) number of roots (currently unsupported)
  22. %       SIZES(6) direct feedthrough flag
  23. %       SIZES(7) number of sample times
  24. %
  25. %   For the definition of other parameters in SIZES, see SFUNC.
  26. %   See also, TRIM, LINMOD, LINSIM, EULER, RK23, RK45, ADAMS, GEAR.
  27. % Note: This M-file is only used for saving graphical information;
  28. %       after the model is loaded into memory an internal model
  29. %       representation is used.
  30. % the system will take on the name of this mfile:
  31. sys = mfilename;
  32. new_system(sys)
  33. simver(1.3)
  34. if (0 == (nargin + nargout))
  35.      set_param(sys,'Location',[186,222,686,522])
  36.      open_system(sys)
  37. end;
  38. set_param(sys,'algorithm',     'RK-45')
  39. set_param(sys,'Start time',    '0.0')
  40. set_param(sys,'Stop time',     '20')
  41. set_param(sys,'Min step size', '0.0001')
  42. set_param(sys,'Max step size', '.10')
  43. set_param(sys,'Relative error','1e-3')
  44. set_param(sys,'Return vars',   '')
  45. add_block('built-in/State-Space',[sys,'/','State-Space'])
  46. set_param([sys,'/','State-Space'],...
  47.         'A','[0   1   0;  0   0   1;  -5  -4  -2]',...
  48.         'B','[0;   0 ;  5]',...
  49.         'C','[1 0   0 ]',...
  50.         'D','0',...
  51.         'position',[170,99,270,161])
  52. add_block('built-in/Step Fcn',[sys,'/','Step Input'])
  53. set_param([sys,'/','Step Input'],...
  54.         'Time','100',...
  55.         'Before','1',...
  56.         'position',[70,110,110,150])
  57. add_block('built-in/Note',[sys,'/','u(t)'])
  58. set_param([sys,'/','u(t)'],...
  59.         'position',[90,80,95,85])
  60. %     Subsystem  ['Auto-Scale',13,'Graph'].
  61. new_system([sys,'/',['Auto-Scale',13,'Graph']])
  62. set_param([sys,'/',['Auto-Scale',13,'Graph']],'Location',[0,59,274,252])
  63. add_block('built-in/Inport',[sys,'/',['Auto-Scale',13,'Graph/x']])
  64. set_param([sys,'/',['Auto-Scale',13,'Graph/x']],...
  65.         'position',[65,55,85,75])
  66. add_block('built-in/S-Function',[sys,'/',['Auto-Scale',13,'Graph/S-function',13,'M-file which plots',13,'lines',13,'']])
  67. set_param([sys,'/',['Auto-Scale',13,'Graph/S-function',13,'M-file which plots',13,'lines',13,'']],...
  68.         'function name','sfunyst',...
  69.         'parameters','ax, color, npts, dt',...
  70.         'position',[130,55,180,75])
  71. add_line([sys,'/',['Auto-Scale',13,'Graph']],[90,65;125,65])
  72. set_param([sys,'/',['Auto-Scale',13,'Graph']],...
  73.         'Mask Display','plot(0,0,100,100,[83,76,63,52,42,38,28,16,11,84,11,11,11,90,90,11],[75,58,47,54,72,80,84,74,65,65,65,90,40,40,90,90])',...
  74.         'Mask Type','Storage scope.')
  75. set_param([sys,'/',['Auto-Scale',13,'Graph']],...
  76.         'Mask Dialogue','Storage scope using MATLAB graph window.nEnter plotting ranges and line type.|Initial Time Range:|Initial y-min:|Initial y-max:|Storage pts.:|Line type (rgbw-.:xo):')
  77. set_param([sys,'/',['Auto-Scale',13,'Graph']],...
  78.         'Mask Translate','npts = @4; color = @5; ax = [0, @1, @2, @3]; dt=-1;')
  79. set_param([sys,'/',['Auto-Scale',13,'Graph']],...
  80.         'Mask Help','This block uses a MATLAB figure window to plot the input signal.  The graph limits are automatically scaled to the min and max values of the signal stored in the scope''s signal buffer.  Line type must be in quotes.  See the M-file sfunyst.m.')
  81. set_param([sys,'/',['Auto-Scale',13,'Graph']],...
  82.         'Mask Entries','20/0/1.5/200/''y-/g--/c-./w:/m*/ro/b+''/')
  83. %     Finished composite block ['Auto-Scale',13,'Graph'].
  84. set_param([sys,'/',['Auto-Scale',13,'Graph']],...
  85.         'position',[335,100,380,160])
  86. add_line(sys,[115,130;165,130])
  87. add_line(sys,[275,130;330,130])
  88. drawnow
  89. % Return any arguments.
  90. if (nargin | nargout)
  91.     % Must use feval here to access system in memory
  92.     if (nargin > 3)
  93.         if (flag == 0)
  94.             eval(['[ret,x0,str,ts,xts]=',sys,'(t,x,u,flag);'])
  95.         else
  96.             eval(['ret =', sys,'(t,x,u,flag);'])
  97.         end
  98.     else
  99.         [ret,x0,str,ts,xts] = feval(sys);
  100.     end
  101. else
  102.     drawnow % Flash up the model and execute load callback
  103. end