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

其他行业

开发平台:

Matlab

  1. function [ret,x0,str,ts,xts]=sim11ex3(t,x,u,flag);
  2. %SIM11EX3   is the M-file description of the SIMULINK system named SIM11EX3.
  3. %     The block-diagram can be displayed by typing: SIM11EX3.
  4. %
  5. %     SYS=SIM11EX3(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 SIM11EX3 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 SIM11EX3 with a FLAG of zero:
  15. %     [SIZES]=SIM11EX3([],[],[],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',[176,279,914,693])
  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',     '3')
  41. set_param(sys,'Min step size', '0.0001')
  42. set_param(sys,'Max step size', '.0250')
  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;  -37.7061   -2.6169 ]',...
  48.             'B','[0;   1]',...
  49.             'C','eye(2)',...
  50.             'D','zeros(2, 1)',...
  51.             'position',[155,144,255,206])
  52. add_block('built-in/Demux',[sys,'/','Demux'])
  53. set_param([sys,'/','Demux'],...
  54.             'outputs','2',...
  55.             'position',[290,149,350,196])
  56. add_block('built-in/Sum',[sys,'/','Sum'])
  57. set_param([sys,'/','Sum'],...
  58.             'position',[540,39,560,161])
  59. add_block('built-in/Note',[sys,'/','Example 11.3   Step response   Du = pi*60//H*(0.2)'])
  60. set_param([sys,'/','Example 11.3   Step response   Du = pi*60//H*(0.2)'],...
  61.             'position',[370,315,380,346])
  62. add_block('built-in/Step Fcn',[sys,'/','Step Input'])
  63. set_param([sys,'/','Step Input'],...
  64.             'Time','100',...
  65.             'Before','pi*60/9.94*.2',...
  66.             'After','pi*60/9.84*.2',...
  67.             'position',[55,143,100,207])
  68. add_block('built-in/Note',[sys,'/','Du=3.79'])
  69. set_param([sys,'/','Du=3.79'],...
  70.             'position',[75,110,80,115])
  71. add_block('built-in/Gain',[sys,'/','rps to Hz'])
  72. set_param([sys,'/','rps to Hz'],...
  73.             'Gain','1/(2*pi)',...
  74.             'position',[400,196,470,264])
  75. add_block('built-in/Sum',[sys,'/','Sum1'])
  76. set_param([sys,'/','Sum1'],...
  77.             'position',[540,204,560,311])
  78. add_block('built-in/Gain',[sys,'/',['Rad to Degree',13,'',13,'']])
  79. set_param([sys,'/',['Rad to Degree',13,'',13,'']],...
  80.             'Gain','180/pi',...
  81.             'position',[405,96,475,164])
  82. add_block('built-in/Constant',[sys,'/','delta0'])
  83. set_param([sys,'/','delta0'],...
  84.             'Value','16.79',...
  85.             'position',[460,57,510,83])
  86. %     Subsystem  'delta'.
  87. new_system([sys,'/','delta'])
  88. set_param([sys,'/','delta'],'Location',[0,59,274,252])
  89. add_block('built-in/Inport',[sys,'/','delta/x'])
  90. set_param([sys,'/','delta/x'],...
  91.             'position',[65,55,85,75])
  92. add_block('built-in/S-Function',[sys,'/',['delta/S-function',13,'M-file which plots',13,'lines',13,'']])
  93. set_param([sys,'/',['delta/S-function',13,'M-file which plots',13,'lines',13,'']],...
  94.             'function name','sfuny',...
  95.             'parameters','ax, color,dt',...
  96.             'position',[130,55,180,75])
  97. add_line([sys,'/','delta'],[90,65;125,65])
  98. set_param([sys,'/','delta'],...
  99.             'Mask Display','plot(0,0,100,100,[90,10,10,10,90,90,10],[65,65,90,40,40,90,90],[90,78,69,54,40,31,25,10],[77,60,48,46,56,75,81,84])',...
  100.             'Mask Type','Graph scope.')
  101. set_param([sys,'/','delta'],...
  102.             'Mask Dialogue','Graph scope using MATLAB graph window.nEnter plotting ranges and line type.|Time range:|y-min:|y-max:|Line type (rgbw-:*). Seperate each plot by ''/'':')
  103. set_param([sys,'/','delta'],...
  104.             'Mask Translate','color = @4; ax = [0, @1, @2, @3]; dt = -1;')
  105. set_param([sys,'/','delta'],...
  106.             'Mask Help','This block plots to the MATLAB graph window and can be used as an improved version of the Scope block. Look at the m-file sfuny.m to see how it works. This block can take scalar or vector input signal.')
  107. set_param([sys,'/','delta'],...
  108.             'Mask Entries','3/15/30/''y-/g--/c-./w:/m*/ro/b+''/')
  109. %     Finished composite block 'delta'.
  110. set_param([sys,'/','delta'],...
  111.             'position',[590,72,645,128])
  112. add_block('built-in/Constant',[sys,'/','f0'])
  113. set_param([sys,'/','f0'],...
  114.             'Value','60',...
  115.             'position',[485,271,520,299])
  116. %     Subsystem  ['f',13,''].
  117. new_system([sys,'/',['f',13,'']])
  118. set_param([sys,'/',['f',13,'']],'Location',[0,59,274,252])
  119. add_block('built-in/Inport',[sys,'/',['f',13,'/x']])
  120. set_param([sys,'/',['f',13,'/x']],...
  121.             'position',[65,55,85,75])
  122. add_block('built-in/S-Function',[sys,'/',['f',13,'/S-function',13,'M-file which plots',13,'lines',13,'']])
  123. set_param([sys,'/',['f',13,'/S-function',13,'M-file which plots',13,'lines',13,'']],...
  124.             'function name','sfuny',...
  125.             'parameters','ax, color,dt',...
  126.             'position',[130,55,180,75])
  127. add_line([sys,'/',['f',13,'']],[90,65;125,65])
  128. set_param([sys,'/',['f',13,'']],...
  129.             'Mask Display','plot(0,0,100,100,[90,10,10,10,90,90,10],[65,65,90,40,40,90,90],[90,78,69,54,40,31,25,10],[77,60,48,46,56,75,81,84])',...
  130.             'Mask Type','Graph scope.')
  131. set_param([sys,'/',['f',13,'']],...
  132.             'Mask Dialogue','Graph scope using MATLAB graph window.nEnter plotting ranges and line type.|Time range:|y-min:|y-max:|Line type (rgbw-:*). Seperate each plot by ''/'':')
  133. set_param([sys,'/',['f',13,'']],...
  134.             'Mask Translate','color = @4; ax = [0, @1, @2, @3]; dt = -1;')
  135. set_param([sys,'/',['f',13,'']],...
  136.             'Mask Help','This block plots to the MATLAB graph window and can be used as an improved version of the Scope block. Look at the m-file sfuny.m to see how it works. This block can take scalar or vector input signal.')
  137. set_param([sys,'/',['f',13,'']],...
  138.             'Mask Entries','3/59.95/60.1/''y-/g--/c-./w:/m*/ro/b+''/')
  139. %     Finished composite block ['f',13,''].
  140. set_param([sys,'/',['f',13,'']],...
  141.             'position',[590,232,645,288])
  142. add_line(sys,[105,175;150,175])
  143. add_line(sys,[260,175;285,175])
  144. add_line(sys,[565,260;585,260])
  145. add_line(sys,[355,160;375,160;375,130;400,130])
  146. add_line(sys,[480,130;535,130])
  147. add_line(sys,[565,100;585,100])
  148. add_line(sys,[355,185;375,185;375,230;395,230])
  149. add_line(sys,[515,70;535,70])
  150. add_line(sys,[475,230;535,230])
  151. add_line(sys,[525,285;535,285])
  152. drawnow
  153. % Return any arguments.
  154. if (nargin | nargout)
  155.       % Must use feval here to access system in memory
  156.       if (nargin > 3)
  157.             if (flag == 0)
  158.                   eval(['[ret,x0,str,ts,xts]=',sys,'(t,x,u,flag);'])
  159.             else
  160.                   eval(['ret =', sys,'(t,x,u,flag);'])
  161.             end
  162.       else
  163.             [ret,x0,str,ts,xts] = feval(sys);
  164.       end
  165. else
  166.       drawnow % Flash up the model and execute load callback
  167. end