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

其他行业

开发平台:

Matlab

  1. function [ret,x0,str,ts,xts]=sim11ex6(t,x,u,flag);
  2. %SIM11EX6   is the M-file description of the SIMULINK system named SIM11EX6.
  3. %   The block-diagram can be displayed by typing: SIM11EX6.
  4. %
  5. %   SYS=SIM11EX6(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 SIM11EX6 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 SIM11EX6 with a FLAG of zero:
  15. %   [SIZES]=SIM11EX6([],[],[],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',[127,58,980,604])
  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',     '2')
  41. set_param(sys,'Min step size', '0.0001')
  42. set_param(sys,'Max step size', '.01')
  43. set_param(sys,'Relative error','1e-3')
  44. set_param(sys,'Return vars',   '')
  45. add_block('built-in/Note',[sys,'/','EXAMPLE  11.6'])
  46. set_param([sys,'/','EXAMPLE  11.6'],...
  47.         'position',[325,40,330,45])
  48. add_block('built-in/Note',[sys,'/','NUMERICAL SOLUTION OF THE SWING EQUATION  (ONE MACHINE SYSTEM)'])
  49. set_param([sys,'/','NUMERICAL SOLUTION OF THE SWING EQUATION  (ONE MACHINE SYSTEM)'],...
  50.         'position',[350,70,355,75])
  51. add_block('built-in/Note',[sys,'/','Change the clrearing time of faut'])
  52. set_param([sys,'/','Change the clrearing time of faut'],...
  53.         'position',[330,105,335,110])
  54. add_block('built-in/Note',[sys,'/','to find the critical clearing time'])
  55. set_param([sys,'/','to find the critical clearing time'],...
  56.         'position',[325,130,330,135])
  57. add_block('built-in/Note',[sys,'/',['X2''']])
  58. set_param([sys,'/',['X2''']],...
  59.         'position',[250,170,255,175])
  60. add_block('built-in/Integrator',[sys,'/','integ1'])
  61. set_param([sys,'/','integ1'],...
  62.         'position',[270,182,305,218])
  63. add_block('built-in/Note',[sys,'/','x2'])
  64. set_param([sys,'/','x2'],...
  65.         'position',[320,175,325,180])
  66. add_block('built-in/Integrator',[sys,'/','integ2'])
  67. set_param([sys,'/','integ2'],...
  68.         'Initial','0.46055',...
  69.         'position',[350,182,385,218])
  70. add_block('built-in/Switch',[sys,'/','tc = 0.3'])
  71. set_param([sys,'/','tc = 0.3'],...
  72.         'orientation',2,...
  73.         'Threshold','0.3',...
  74.         'position',[160,263,220,397])
  75. add_block('built-in/Clock',[sys,'/','t'])
  76. set_param([sys,'/','t'],...
  77.         'orientation',2,...
  78.         'position',[250,315,275,345])
  79. add_block('built-in/Fcn',[sys,'/',[' Fault cleared',13,'']])
  80. set_param([sys,'/',[' Fault cleared',13,'']],...
  81.         'orientation',2,...
  82.         'Expr','1.4625*sin(u)',...
  83.         'position',[290,266,400,304])
  84. add_block('built-in/Fcn',[sys,'/','During fault'])
  85. set_param([sys,'/','During fault'],...
  86.         'orientation',2,...
  87.         'Expr','0.65*sin(u)',...
  88.         'position',[285,356,400,394])
  89. add_block('built-in/Sum',[sys,'/','Sum'])
  90. set_param([sys,'/','Sum'],...
  91.         'inputs','+-',...
  92.         'position',[110,174,135,221])
  93. add_block('built-in/Gain',[sys,'/','60*pi//H'])
  94. set_param([sys,'/','60*pi//H'],...
  95.         'Gain','pi*60/5',...
  96.         'position',[165,159,240,241])
  97. add_block('built-in/Note',[sys,'/','Pe'])
  98. set_param([sys,'/','Pe'],...
  99.         'position',[250,255,260,265])
  100. add_block('built-in/Note',[sys,'/','Pe_'])
  101. set_param([sys,'/','Pe_'],...
  102.         'position',[255,380,260,385])
  103. add_block('built-in/Note',[sys,'/','x1'])
  104. set_param([sys,'/','x1'],...
  105.         'position',[420,170,425,175])
  106. add_block('built-in/Gain',[sys,'/',['Rad. to Degree',13,'']])
  107. set_param([sys,'/',['Rad. to Degree',13,'']],...
  108.         'Gain','180/pi',...
  109.         'position',[480,162,550,238])
  110. %     Subsystem  ['Auto-Scale',13,'Graph'].
  111. new_system([sys,'/',['Auto-Scale',13,'Graph']])
  112. set_param([sys,'/',['Auto-Scale',13,'Graph']],'Location',[0,59,274,252])
  113. add_block('built-in/Inport',[sys,'/',['Auto-Scale',13,'Graph/x']])
  114. set_param([sys,'/',['Auto-Scale',13,'Graph/x']],...
  115.         'position',[65,55,85,75])
  116. add_block('built-in/S-Function',[sys,'/',['Auto-Scale',13,'Graph/S-function',13,'M-file which plots',13,'lines',13,'']])
  117. set_param([sys,'/',['Auto-Scale',13,'Graph/S-function',13,'M-file which plots',13,'lines',13,'']],...
  118.         'function name','sfunyst',...
  119.         'parameters','ax, color, npts, dt',...
  120.         'position',[130,55,180,75])
  121. add_line([sys,'/',['Auto-Scale',13,'Graph']],[90,65;125,65])
  122. set_param([sys,'/',['Auto-Scale',13,'Graph']],...
  123.         '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])',...
  124.         'Mask Type','Storage scope.')
  125. set_param([sys,'/',['Auto-Scale',13,'Graph']],...
  126.         '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):')
  127. set_param([sys,'/',['Auto-Scale',13,'Graph']],...
  128.         'Mask Translate','npts = @4; color = @5; ax = [0, @1, @2, @3]; dt=-1;')
  129. set_param([sys,'/',['Auto-Scale',13,'Graph']],...
  130.         '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.')
  131. set_param([sys,'/',['Auto-Scale',13,'Graph']],...
  132.         'Mask Entries','2/-50/100/200/''r-/g--/c-./w:/m*/ro/b+''/')
  133. %     Finished composite block ['Auto-Scale',13,'Graph'].
  134. set_param([sys,'/',['Auto-Scale',13,'Graph']],...
  135.         'position',[610,168,655,232])
  136. add_block('built-in/Note',[sys,'/','delta'])
  137. set_param([sys,'/','delta'],...
  138.         'position',[575,170,580,175])
  139. add_block('built-in/Note',[sys,'/',['To change the clearing time of fault open the switch ',13,'dialog box and change the Threshold setting.            ']])
  140. set_param([sys,'/',['To change the clearing time of fault open the switch ',13,'dialog box and change the Threshold setting.            ']],...
  141.         'position',[315,430,320,435])
  142. add_block('built-in/Step Fcn',[sys,'/','Step'])
  143. set_param([sys,'/','Step'],...
  144.         'Time','.01',...
  145.         'Before','0.8',...
  146.         'After','0.8',...
  147.         'position',[15,158,65,212])
  148. add_block('built-in/Note',[sys,'/','Pm = 0.8'])
  149. set_param([sys,'/','Pm = 0.8'],...
  150.         'position',[50,130,55,135])
  151. add_line(sys,[310,200;345,200])
  152. add_line(sys,[70,185;105,185])
  153. add_line(sys,[555,200;605,200])
  154. add_line(sys,[390,200;475,200])
  155. add_line(sys,[140,200;160,200])
  156. add_line(sys,[245,200;265,200])
  157. add_line(sys,[285,285;225,285])
  158. add_line(sys,[280,375;225,375])
  159. add_line(sys,[155,330;85,330;85,210;105,210])
  160. add_line(sys,[245,330;225,330])
  161. add_line(sys,[420,200;420,285;405,285])
  162. add_line(sys,[440,200;440,375;405,375])
  163. drawnow
  164. % Return any arguments.
  165. if (nargin | nargout)
  166.     % Must use feval here to access system in memory
  167.     if (nargin > 3)
  168.         if (flag == 0)
  169.             eval(['[ret,x0,str,ts,xts]=',sys,'(t,x,u,flag);'])
  170.         else
  171.             eval(['ret =', sys,'(t,x,u,flag);'])
  172.         end
  173.     else
  174.         [ret,x0,str,ts,xts] = feval(sys);
  175.     end
  176. else
  177.     drawnow % Flash up the model and execute load callback
  178. end