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

其他行业

开发平台:

Matlab

  1. function [ret,x0,str,ts,xts]=chp12sm3(t,x,u,flag);
  2. %CHP12SM3   is the M-file description of the SIMULINK system named CHP12SM3.
  3. %   The block-diagram can be displayed by typing: CHP12SM3.
  4. %
  5. %   SYS=CHP12SM3(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 CHP12SM3 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 CHP12SM3 with a FLAG of zero:
  15. %   [SIZES]=CHP12SM3([],[],[],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',[143,258,892,951])
  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',     '10')
  41. set_param(sys,'Min step size', '0.0001')
  42. set_param(sys,'Max step size', '.1')
  43. set_param(sys,'Relative error','1e-3')
  44. set_param(sys,'Return vars',   '')
  45. add_block('built-in/Sum',[sys,'/','Sum1'])
  46. set_param([sys,'/','Sum1'],...
  47.         'inputs','--',...
  48.         'position',[95,57,115,93])
  49. add_block('built-in/Gain',[sys,'/','1//R'])
  50. set_param([sys,'/','1//R'],...
  51.         'orientation',2,...
  52.         'Gain','20',...
  53.         'position',[285,128,340,182])
  54. add_block('built-in/Integrator',[sys,'/','Integrator'])
  55. set_param([sys,'/','Integrator'],...
  56.         'orientation',2,...
  57.         'position',[260,198,290,242])
  58. add_block('built-in/Gain',[sys,'/','KI'])
  59. set_param([sys,'/','KI'],...
  60.         'orientation',2,...
  61.         'Gain','7',...
  62.         'position',[165,197,215,243])
  63. add_block('built-in/Transfer Fcn',[sys,'/','Governor'])
  64. set_param([sys,'/','Governor'],...
  65.         'Denominator','[0.2   1]',...
  66.         'position',[145,52,210,98])
  67. add_block('built-in/Transfer Fcn',[sys,'/','Turbine'])
  68. set_param([sys,'/','Turbine'],...
  69.         'Denominator','[0.5  1]',...
  70.         'position',[250,53,320,97])
  71. add_block('built-in/Step Fcn',[sys,'/','Step Input'])
  72. set_param([sys,'/','Step Input'],...
  73.         'Time','100',...
  74.         'Before','0.2',...
  75.         'After','.2',...
  76.         'position',[295,5,315,25])
  77. add_block('built-in/Sum',[sys,'/','Sum'])
  78. set_param([sys,'/','Sum'],...
  79.         'inputs','-+',...
  80.         'position',[375,60,395,80])
  81. add_block('built-in/Transfer Fcn',[sys,'/','Inertia & load'])
  82. set_param([sys,'/','Inertia & load'],...
  83.         'Denominator','[10  0.8]',...
  84.         'position',[420,47,500,93])
  85. %     Subsystem  'Graph'.
  86. new_system([sys,'/','Graph'])
  87. set_param([sys,'/','Graph'],'Location',[0,59,274,252])
  88. add_block('built-in/Inport',[sys,'/','Graph/x'])
  89. set_param([sys,'/','Graph/x'],...
  90.         'position',[65,55,85,75])
  91. add_block('built-in/S-Function',[sys,'/',['Graph/S-function',13,'M-file which plots',13,'lines',13,'']])
  92. set_param([sys,'/',['Graph/S-function',13,'M-file which plots',13,'lines',13,'']],...
  93.         'function name','sfuny',...
  94.         'parameters','ax, color,dt',...
  95.         'position',[130,55,180,75])
  96. add_line([sys,'/','Graph'],[90,65;125,65])
  97. set_param([sys,'/','Graph'],...
  98.         '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])',...
  99.         'Mask Type','Graph scope.')
  100. set_param([sys,'/','Graph'],...
  101.         '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 ''/'':')
  102. set_param([sys,'/','Graph'],...
  103.         'Mask Translate','color = @4; ax = [0, @1, @2, @3]; dt = -1;')
  104. set_param([sys,'/','Graph'],...
  105.         '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.')
  106. set_param([sys,'/','Graph'],...
  107.         'Mask Entries','10/-.05/.05/''y-/g--/c-./w:/m*/ro/b+''/')
  108. %     Finished composite block 'Graph'.
  109. set_param([sys,'/','Graph'],...
  110.         'position',[620,51,650,89])
  111. add_block('built-in/To Workspace',[sys,'/','To Workspace'])
  112. set_param([sys,'/','To Workspace'],...
  113.         'mat-name','Dw',...
  114.         'position',[630,7,680,23])
  115. add_line(sys,[215,75;245,75])
  116. add_line(sys,[325,75;370,75])
  117. add_line(sys,[400,70;415,70])
  118. add_line(sys,[120,75;140,75])
  119. add_line(sys,[505,70;615,70])
  120. add_line(sys,[255,220;220,220])
  121. add_line(sys,[160,220;30,220;30,65;90,65])
  122. add_line(sys,[280,155;55,155;55,85;90,85])
  123. add_line(sys,[320,15;350,15;350,65;370,65])
  124. add_line(sys,[520,70;520,155;345,155])
  125. add_line(sys,[565,70;565,220;295,220])
  126. add_line(sys,[585,70;585,15;625,15])
  127. drawnow
  128. % Return any arguments.
  129. if (nargin | nargout)
  130.     % Must use feval here to access system in memory
  131.     if (nargin > 3)
  132.         if (flag == 0)
  133.             eval(['[ret,x0,str,ts,xts]=',sys,'(t,x,u,flag);'])
  134.         else
  135.             eval(['ret =', sys,'(t,x,u,flag);'])
  136.         end
  137.     else
  138.         [ret,x0,str,ts,xts] = feval(sys);
  139.     end
  140. else
  141.     drawnow % Flash up the model and execute load callback
  142. end