QQ登录

只需要一步,快速开始

 注册地址  找回密码
查看: 11163|回复: 0
打印 上一主题 下一主题

MATLAB 添加自定义的模块到simulink库浏览器

[复制链接]
字体大小: 正常 放大

59

主题

18

听众

836

积分

升级  59%

  • TA的每日心情
    无聊
    2016-1-24 14:24
  • 签到天数: 157 天

    [LV.7]常住居民III

    自我介绍
    没有最好,只有更好!

    新人进步奖

    群组建模思维养成培训

    群组数模专题强化培训

    跳转到指定楼层
    1#
    发表于 2015-1-22 10:25 |只看该作者 |倒序浏览
    |招呼Ta 关注Ta
    安装了matlab2014b后,突然发现Simulink Library Browser窗口中没有内容,找了一种方法添加进去,希望对有需要的朋友有所帮助!
    7 U1 Q. L0 U2 j, D1、创建库文件:打开Simulink Library Browser窗口。要建立Simulink库文件,首先启动Simulink工作窗口,单击菜单栏【File】下的【New】选项,选择【library】选项, 打开一个新的Library窗口界面,此时,用户可以将自己需要添加的一些模块加入到新的窗口中。然后保存为Own_efinition.mdl(所需要定义的库文件名称)。这样,就建立了一个 自定义的库文件。
    - i5 w* Q* z0 j2、在Matlab路径下创建存放库文件的路径,也即自定义的模块库在Library Browser下的显示位置。注意在Matlab中,每一个模块库文件所在的路径必须不同。 # F/ A" z. a' h  N
    创建的Maltab路径是:Drogram FilesMATLABR2011btoolboxSimulinkSimulinkMyLibrary(根据自己的Matlab安装路径来确定),其中MyLibrary为自定义的文件夹。 ! J: v* ~0 h& Z7 V* {4 Y; R
    3、将第一步中建立的库文件拷贝到新建的Matlab路径下。在Matlab主窗口的【File】菜单栏下选择【Set Path】选项,然后单击【Add Folder】按钮,将新建的 路径添加进来,然后保存(Save),退出(Close)。
    4 m1 L+ q% C, F4、要显示自定义的模块库,还需要拷贝slblocks.m函数到新建的路径下。在Matlab的命令窗口中输入:
    ! `& {3 f# D. @9 f' T0 e( [>> which('slblocks.m', '-all') ! H& p+ a5 l8 }6 a# R
    >> open('Drogram FilesMATLABR2011btoolboxSimulinkSimulinkblocksslblocks.m')  
    * P1 a3 B( M# E, X4 ^
    " l& a3 P% _# F" V这样就可以打开slbocks.m文件模板,为了将自定义的模块库显示在Library Browser窗口下,需要对该程序进行修改。首先把slbocks.m文件拷贝到自定义库文件
    ) @1 S& L9 l8 p# L2 q同一目录下(即刚才创建的路径),然后打开该文件进行如下修改(红色为所作修改),并保存: & Z( B3 V& j* i8 S
    function blkStruct = slblocks 2 B% e. y" i$ k4 P, U
    %SLBLOCKS Defines the block library for a specific Toolbox or Blockset. % SLBLOCKS returns information about a Blockset to Simulink. The % information returned is in the form of a BlocksetStruct with the % following fields: % " g) x. e7 N2 g5 k6 L
    % Name Name of the Blockset in the Simulink block library % Blocksets & Toolboxes subsystem. 6 [6 ^# o% U; ^
    % OpenFcn MATLAB expression_r(function) to call when you % double-click on the block in the Blocksets & Toolboxes % subsystem.
    , p# C7 g. V& y, f# m1 r9 M- P% MaskDisplay Optional field that specifies the Mask Display commands % to use for the block in the Blocksets & Toolboxes % subsystem. : y  @* N! E/ a( A, J: N/ l" S1 b
    % Browser Array of Simulink Library Browser structures, described % below. 0 W8 Q6 X; g( M& H) ~
    / Z5 N" ?  Z/ |; q  G

      ]$ N) {, f/ p5 f. s: `1 `- {: ]3 [% H- [+ L7 x% |; {1 H; a* N) L' ?, `% C

    * H+ v- ]7 J9 E6 M( D  w& c0 q. W8 ?
    ! f8 C5 `  F: e, i4 O6 j% ]: N+ P1 [# m1 G( A+ ]: t
      A# o4 M6 D4 q8 b4 z- @9 m' _& _
    2 H! C2 X  ]% z% w; h: v
    % & [5 `2 D0 S& O3 T9 _+ D
    % The Simulink Library Browser needs to know which libraries in your % Blockset it should show, and what names to give them. To provide % this information, define an array of Browser data structures with one % array element for each library to display in the Simulink Library % Browser. Each array element has two fields: % 6 Q9 h# S& E+ L) D3 o& h3 X
    % Library File name of the library (mdl-file) to include in the % Library Browser.
    . m8 b# Y+ O! P4 q: p% Name Name displayed for the library in the Library Browser % window. Note that the Name is not required to be the % same as the mdl-file name. %
    * e% H9 k- L+ ^; e! r) C  u; k% Example: % % %
    " `) N+ _. U2 U! w; x; M& ?5 p% % Define the BlocksetStruct for the Simulink block libraries % % Only simulink_extras shows up in Blocksets & Toolboxes % % 4 z$ H+ t* \2 J2 X: R/ s" X
    % blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % blkStruct.OpenFcn = 'simulink_extras'; & Q0 p# i) S: l! k3 |' I
    % blkStruct.MaskDisplay = sprintf('SimulinknExtras'); % % % 9 t! W; ]5 j0 w, n
    % % Both simulink and simulink_extras show up in the Library Browser. % % 1 }1 j4 [8 M8 l( r
    % blkStruct.Browser(1).Library = 'simulink'; % blkStruct.Browser(1).Name = 'Simulink'; % blkStruct.Browser(2).Library = 'simulink_extras'; % blkStruct.Browser(2).Name = 'Simulink Extras'; %
    1 Z* b5 f& K. x8 x% Copyright 1990-2006 The MathWorks, Inc. % $Revision: 1.20.2.10 $ % % h: ]: W. @' y6 ~& ?
    % Name of the subsystem which will show up in the Simulink Blocksets 2 Z5 ~8 ?2 [0 A0 ~, ~
    , a, m6 w+ ?! W2 d: [

    " z5 u. c' j: J  D  n
    : \$ ]! J8 d. h1 \  j0 y% and Toolboxes subsystem. % 1 o: m  h6 B" b: O9 H
    blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; %
    ( m# F7 v' t# e1 }) j  W% The function that will be called when the user double-clicks on % this icon. %
    $ x3 c1 D! s6 t) p; y: J* {) iblkStruct.OpenFcn = 'simulink_extras'; %
    1 t2 O) U& u' B  Y( ?5 [7 t% The argument to be set as the Mask Display for the subsystem. You % may comment this line out if no specific mask is desired. % Example: blkStruct.MaskDisplay = 'plot([0:2*pi],sin([0:2*pi]));'; % No display for Simulink Extras. %
    # j: J7 M. M+ b7 f; n- d1 XblkStruct.MaskDisplay = ''; %
    - s! q5 [( S  r3 K. ]% Define the Browser structure array, the first element contains the % information for the Simulink block library and the second for the % Simulink Extras block library. % 6 Q; w3 J6 T$ {, m, Z  g* \5 o9 j
    Browser(1).Library = 'Own_efinition'; %这个是库文件名 8 h  r! B6 r4 x; q8 o
    Browser(1).Name = 'MyLibrary'; %这个是需要在库浏览器中显示的名称 Browser(1).IsFlat = 0;% Is this library "flat" (i.e. no subsystems)? Browser(2).Library = 'simulink_extras'; Browser(2).Name = 'Simulink Extras'; * F2 b$ T+ H+ K+ Y1 w. |- o
    Browser(2).IsFlat = 0;% Is this library "flat" (i.e. no subsystems)? blkStruct.Browser = Browser; clear Browser; %
    5 T/ Q- r, D9 W* i. {: I3 K7 a! \  _% Define information about Signal Viewers % ) \0 _- z. V; `" M
    Viewer(1).Library = 'simviewers'; Viewer(1).Name = 'Simulink'; blkStruct.Viewer = Viewer; clear Viewer; , J+ i) _, @7 x- ]; h* V
    ; z( L# X3 y: ^9 e! \' _

    & V1 _/ h. C9 j% / f  R+ a* T: v. S% X
    % Define information about Signal Generators % . ]: E5 ]" o6 ^! |' I, ~* g/ @8 I
    Generator(1).Library = 'simgens'; Generator(1).Name = 'Simulink'; blkStruct.Generator = Generator; clear Generator; 7 ]3 ^8 m0 [8 i+ G+ v! W7 I  L
    % Define information for model updater
    * Z0 {, v& q, l" _%blkStruct.ModelUpdaterMethods.fhDetermineBrokenLinks = @UpdateSimulinkBrokenLinksMappingHelper;
    / G- i% C) _5 g) w& ublkStruct.ModelUpdaterMethods.fhSeparatedChecks = @UpdateSimulinkBlocksHelper; % End of slblocks
    ) }, X# V  g% n% M  Z! p. \5、再打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库,展开后可以看到内部的自定义模块。那么用户可以方便地进行拖放模块,就可以使用 自定义的封装模块了。 4 q; E# S$ a4 g( n2 ]
    如果还要在新建的模块库下面创建子模块库,需要把Subsystem模块加入到模块库中,打开Subsystem模块,删除所有内容(ports等元件),添加自己创建的模块 4 y3 H/ q6 U) P+ s% o0 W5 a
    保存即可,然后重新打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库和字模块库。& V2 `) F* H# ]: y6 f) s# K

    ! g, y; w& A  R5 p7 V. |( g; |, i. o. {0 C2 ?
    zan
    转播转播0 分享淘帖0 分享分享0 收藏收藏0 支持支持0 反对反对0 微信微信
    您需要登录后才可以回帖 登录 | 注册地址

    qq
    收缩
    • 电话咨询

    • 04714969085
    fastpost

    关于我们| 联系我们| 诚征英才| 对外合作| 产品服务| QQ

    手机版|Archiver| |繁體中文 手机客户端  

    蒙公网安备 15010502000194号

    Powered by Discuz! X2.5   © 2001-2013 数学建模网-数学中国 ( 蒙ICP备14002410号-3 蒙BBS备-0002号 )     论坛法律顾问:王兆丰

    GMT+8, 2026-8-6 00:21 , Processed in 0.410882 second(s), 52 queries .

    回顶部