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

其他行业

开发平台:

Matlab

  1. function [ret,x0,str,ts,xts]=chp12sm6(t,x,u,flag);
  2. %CHP12SM6   is the M-file description of the SIMULINK system named CHP12SM6.
  3. %   The block-diagram can be displayed by typing: CHP12SM6.
  4. %
  5. %   SYS=CHP12SM6(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 CHP12SM6 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 CHP12SM6 with a FLAG of zero:
  15. %   [SIZES]=CHP12SM6([],[],[],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',[151,245,938,690])
  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/Sum',[sys,'/','Sum'])
  46. set_param([sys,'/','Sum'],...
  47.         'inputs','+-',...
  48.         'position',[135,100,170,140])
  49. add_block('built-in/Step Fcn',[sys,'/','Step Input'])
  50. set_param([sys,'/','Step Input'],...
  51.         'Time','20',...
  52.         'Before','1',...
  53.         'position',[40,92,80,128])
  54. add_block('built-in/Transfer Fcn',[sys,'/','Sensor'])
  55. set_param([sys,'/','Sensor'],...
  56.         'orientation',2,...
  57.         'Denominator','[0.05  1]',...
  58.         'position',[265,229,360,281])
  59. add_block('built-in/Note',[sys,'/','Vref'])
  60. set_param([sys,'/','Vref'],...
  61.         'position',[105,65,110,85])
  62. add_block('built-in/Note',[sys,'/','Ve'])
  63. set_param([sys,'/','Ve'],...
  64.         'position',[195,90,200,95])
  65. add_block('built-in/Transfer Fcn',[sys,'/','Amplifier'])
  66. set_param([sys,'/','Amplifier'],...
  67.         'Numerator','[10]',...
  68.         'Denominator','[0.1  1]',...
  69.         'position',[220,93,305,147])
  70. add_block('built-in/Note',[sys,'/','VR'])
  71. set_param([sys,'/','VR'],...
  72.         'position',[320,90,345,95])
  73. add_block('built-in/Transfer Fcn',[sys,'/','Exciter'])
  74. set_param([sys,'/','Exciter'],...
  75.         'Denominator','[0.4  1]',...
  76.         'position',[375,92,460,148])
  77. add_block('built-in/Note',[sys,'/','VF'])
  78. set_param([sys,'/','VF'],...
  79.         'position',[480,75,485,95])
  80. add_block('built-in/Transfer Fcn',[sys,'/','Generator'])
  81. set_param([sys,'/','Generator'],...
  82.         'Denominator','[1  1]',...
  83.         'position',[525,94,605,146])
  84. add_block('built-in/Note',[sys,'/','Vt'])
  85. set_param([sys,'/','Vt'],...
  86.         'position',[620,85,625,90])
  87. %     Subsystem  'Graph'.
  88. new_system([sys,'/','Graph'])
  89. set_param([sys,'/','Graph'],'Location',[0,59,274,252])
  90. add_block('built-in/Inport',[sys,'/','Graph/x'])
  91. set_param([sys,'/','Graph/x'],...
  92.         'position',[65,55,85,75])
  93. add_block('built-in/S-Function',[sys,'/',['Graph/S-function',13,'M-file which plots',13,'lines',13,'']])
  94. set_param([sys,'/',['Graph/S-function',13,'M-file which plots',13,'lines',13,'']],...
  95.         'function name','sfuny',...
  96.         'parameters','ax, color,dt',...
  97.         'position',[130,55,180,75])
  98. add_line([sys,'/','Graph'],[90,65;125,65])
  99. set_param([sys,'/','Graph'],...
  100.         '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])',...
  101.         'Mask Type','Graph scope.')
  102. set_param([sys,'/','Graph'],...
  103.         '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 ''/'':')
  104. set_param([sys,'/','Graph'],...
  105.         'Mask Translate','color = @4; ax = [0, @1, @2, @3]; dt = -1;')
  106. set_param([sys,'/','Graph'],...
  107.         '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.')
  108. set_param([sys,'/','Graph'],...
  109.         'Mask Entries','20/0/2.0/''y-/g--/c-./w:/m*/ro/b+''/')
  110. %     Finished composite block 'Graph'.
  111. set_param([sys,'/','Graph'],...
  112.         'position',[690,98,730,142])
  113. add_block('built-in/To Workspace',[sys,'/','Terminal Voltage'])
  114. set_param([sys,'/','Terminal Voltage'],...
  115.         'mat-name','Vt',...
  116.         'position',[695,184,740,216])
  117. add_line(sys,[85,110;130,110])
  118. add_line(sys,[175,120;215,120])
  119. add_line(sys,[310,120;370,120])
  120. add_line(sys,[465,120;520,120])
  121. add_line(sys,[610,120;685,120])
  122. add_line(sys,[260,255;120,255;130,130])
  123. add_line(sys,[630,120;630,255;365,255])
  124. add_line(sys,[655,120;655,200;690,200])
  125. drawnow
  126. % Return any arguments.
  127. if (nargin | nargout)
  128.     % Must use feval here to access system in memory
  129.     if (nargin > 3)
  130.         if (flag == 0)
  131.             eval(['[ret,x0,str,ts,xts]=',sys,'(t,x,u,flag);'])
  132.         else
  133.             eval(['ret =', sys,'(t,x,u,flag);'])
  134.         end
  135.     else
  136.         [ret,x0,str,ts,xts] = feval(sys);
  137.     end
  138. else
  139.     drawnow % Flash up the model and execute load callback
  140. end