QQ登录

只需要一步,快速开始

 注册地址  找回密码
查看: 11120|回复: 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窗口中没有内容,找了一种方法添加进去,希望对有需要的朋友有所帮助!# j7 l3 t8 b; t$ t# j1 |: E& T/ Y/ ?
    1、创建库文件:打开Simulink Library Browser窗口。要建立Simulink库文件,首先启动Simulink工作窗口,单击菜单栏【File】下的【New】选项,选择【library】选项, 打开一个新的Library窗口界面,此时,用户可以将自己需要添加的一些模块加入到新的窗口中。然后保存为Own_efinition.mdl(所需要定义的库文件名称)。这样,就建立了一个 自定义的库文件。
    % M% j! q( ^/ u3 v2、在Matlab路径下创建存放库文件的路径,也即自定义的模块库在Library Browser下的显示位置。注意在Matlab中,每一个模块库文件所在的路径必须不同。 % c2 w& U7 h. j9 \9 i
    创建的Maltab路径是:Drogram FilesMATLABR2011btoolboxSimulinkSimulinkMyLibrary(根据自己的Matlab安装路径来确定),其中MyLibrary为自定义的文件夹。 $ {6 ~8 h0 B' D/ V0 v
    3、将第一步中建立的库文件拷贝到新建的Matlab路径下。在Matlab主窗口的【File】菜单栏下选择【Set Path】选项,然后单击【Add Folder】按钮,将新建的 路径添加进来,然后保存(Save),退出(Close)。 3 S; y% Q: X" A  s$ G
    4、要显示自定义的模块库,还需要拷贝slblocks.m函数到新建的路径下。在Matlab的命令窗口中输入:
    $ L" R) [* |8 {5 n& N+ ~2 M>> which('slblocks.m', '-all')
    2 [/ w# w: \6 N7 q, n- K>> open('Drogram FilesMATLABR2011btoolboxSimulinkSimulinkblocksslblocks.m')  
    - w7 E. W4 T  |" c1 s  p$ [4 j
    ) ]9 l' b1 V* A9 ^  X, N' g% z5 R这样就可以打开slbocks.m文件模板,为了将自定义的模块库显示在Library Browser窗口下,需要对该程序进行修改。首先把slbocks.m文件拷贝到自定义库文件
    5 u/ h5 e5 R( B4 A% W, P: {& m同一目录下(即刚才创建的路径),然后打开该文件进行如下修改(红色为所作修改),并保存:
    1 y9 W% b, V, x- p+ N; Efunction blkStruct = slblocks 6 n' ~7 ^; C1 [# R
    %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: % 5 e" _9 `- s! F+ W! @7 l
    % Name Name of the Blockset in the Simulink block library % Blocksets & Toolboxes subsystem. 2 V8 y% o8 V, V4 `' R
    % OpenFcn MATLAB expression_r(function) to call when you % double-click on the block in the Blocksets & Toolboxes % subsystem.
    6 n3 o9 b4 e6 {4 z! B% MaskDisplay Optional field that specifies the Mask Display commands % to use for the block in the Blocksets & Toolboxes % subsystem.
    ; @4 m4 N2 X7 c9 c/ l3 ~* J% Browser Array of Simulink Library Browser structures, described % below.
    ; B6 x& M( t2 i0 K- n2 K8 x
    1 [; L# q& V8 t, ^* {& K! ]8 B' P1 X

    7 l; V* o5 p' z* b" w7 V5 M8 K
    . V8 o" r' x6 W4 L  U( a/ x+ o* x: a# P' g' F3 S
    , S, N6 n7 X, C% i* o2 s& F3 M

    3 [5 f, j; Z. n8 ^0 l' ~1 }! d* r
    % # H( _; K- n, @' r* n: v: l
    % 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: % / g7 A* r6 r) o0 R4 Z
    % Library File name of the library (mdl-file) to include in the % Library Browser.
    - ~. U: t2 s$ Q6 x0 L/ G7 f% 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. %
    1 [" j- s8 A4 d! y% c0 v% Example: % % % 9 ?' l7 U3 P/ p$ v% S  e% U9 B
    % % Define the BlocksetStruct for the Simulink block libraries % % Only simulink_extras shows up in Blocksets & Toolboxes % %
    % j  q) N( g) d1 A2 s) q9 ?% blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % blkStruct.OpenFcn = 'simulink_extras';
    ( g: _6 V& |8 O6 Y% blkStruct.MaskDisplay = sprintf('SimulinknExtras'); % % %
    , t$ M; O* @& O+ w5 g3 s! V+ L% % Both simulink and simulink_extras show up in the Library Browser. % %
    & h" V$ h0 L/ s% blkStruct.Browser(1).Library = 'simulink'; % blkStruct.Browser(1).Name = 'Simulink'; % blkStruct.Browser(2).Library = 'simulink_extras'; % blkStruct.Browser(2).Name = 'Simulink Extras'; % $ U! X8 h  w3 L% S! L; b
    % Copyright 1990-2006 The MathWorks, Inc. % $Revision: 1.20.2.10 $ % % O( I2 i9 f( |% ?+ ~
    % Name of the subsystem which will show up in the Simulink Blocksets
    ; D/ l  `8 D' j' @2 ]( o1 D% j& o: j% F( @

    $ m: O. U% a4 ^4 H6 |0 R$ V. l; I5 ^% e8 w. c) z& u
    % and Toolboxes subsystem. %
    & `  l# b2 l  d, i: IblkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % / D5 j* e. j0 t2 p( ~$ b9 @7 t
    % The function that will be called when the user double-clicks on % this icon. %
    , w- p/ I" x) _& ablkStruct.OpenFcn = 'simulink_extras'; %
    5 w; u+ ]1 P/ A, g% 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. %
    , }4 q/ ^+ E$ f% _; cblkStruct.MaskDisplay = ''; % 7 Y0 s5 K2 Z: z/ Z2 f
    % 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. % 5 ]6 ?7 g+ ~) x7 @6 c3 f. F" z" W1 h
    Browser(1).Library = 'Own_efinition'; %这个是库文件名 , z* t/ i1 ~8 `2 B
    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';
    + H3 a" J/ D4 E2 {Browser(2).IsFlat = 0;% Is this library "flat" (i.e. no subsystems)? blkStruct.Browser = Browser; clear Browser; %
    ! M8 @+ X0 }. M( Z9 \% Define information about Signal Viewers %
    3 P# a) X1 O% t) yViewer(1).Library = 'simviewers'; Viewer(1).Name = 'Simulink'; blkStruct.Viewer = Viewer; clear Viewer; 7 s# s' U: a; V8 n1 f  W( g% B
    , v$ j: E. ?7 s
    & E/ [! W6 u8 b; m6 B, J8 W
    % 5 P* j# M7 j- s0 N
    % Define information about Signal Generators % 4 J$ \' C) t# ~" s
    Generator(1).Library = 'simgens'; Generator(1).Name = 'Simulink'; blkStruct.Generator = Generator; clear Generator; 8 x2 O- d8 J( \* N' ]: ~$ [1 }
    % Define information for model updater
    9 G0 p. e- G' |: p9 F%blkStruct.ModelUpdaterMethods.fhDetermineBrokenLinks = @UpdateSimulinkBrokenLinksMappingHelper; ! B8 r  Q; D1 k+ G! S$ ]8 g, u4 U7 U
    blkStruct.ModelUpdaterMethods.fhSeparatedChecks = @UpdateSimulinkBlocksHelper; % End of slblocks 4 `. F- Z  T" O1 r5 m! \% b3 x
    5、再打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库,展开后可以看到内部的自定义模块。那么用户可以方便地进行拖放模块,就可以使用 自定义的封装模块了。
    , J. ^, ^% ]* m* u如果还要在新建的模块库下面创建子模块库,需要把Subsystem模块加入到模块库中,打开Subsystem模块,删除所有内容(ports等元件),添加自己创建的模块
      |' c: I, u* d. H+ }/ P2 y. o5 k保存即可,然后重新打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库和字模块库。
    " I0 N$ a1 D+ K  t3 Y8 J" K4 D- t! o' B' Q+ Q
    / P  Y2 [* F; N/ S. n$ v# F( p0 c
    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-5-25 16:39 , Processed in 0.473585 second(s), 51 queries .

    回顶部