QQ登录

只需要一步,快速开始

 注册地址  找回密码
查看: 11147|回复: 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窗口中没有内容,找了一种方法添加进去,希望对有需要的朋友有所帮助!
    % o! T6 o9 Q' Q. Y" @9 k: E1、创建库文件:打开Simulink Library Browser窗口。要建立Simulink库文件,首先启动Simulink工作窗口,单击菜单栏【File】下的【New】选项,选择【library】选项, 打开一个新的Library窗口界面,此时,用户可以将自己需要添加的一些模块加入到新的窗口中。然后保存为Own_efinition.mdl(所需要定义的库文件名称)。这样,就建立了一个 自定义的库文件。
    9 P% W1 V8 U- x: @7 `( m; E0 l2、在Matlab路径下创建存放库文件的路径,也即自定义的模块库在Library Browser下的显示位置。注意在Matlab中,每一个模块库文件所在的路径必须不同。
    $ k0 Y) C1 V+ C3 C9 x0 I创建的Maltab路径是:Drogram FilesMATLABR2011btoolboxSimulinkSimulinkMyLibrary(根据自己的Matlab安装路径来确定),其中MyLibrary为自定义的文件夹。 - U6 N; E' f  A1 m, b% D
    3、将第一步中建立的库文件拷贝到新建的Matlab路径下。在Matlab主窗口的【File】菜单栏下选择【Set Path】选项,然后单击【Add Folder】按钮,将新建的 路径添加进来,然后保存(Save),退出(Close)。
    . F" r6 ~2 W; ]' n4、要显示自定义的模块库,还需要拷贝slblocks.m函数到新建的路径下。在Matlab的命令窗口中输入: 7 Y! Q* B1 T' r, x( u
    >> which('slblocks.m', '-all')
    3 @' v! l% k; u>> open('Drogram FilesMATLABR2011btoolboxSimulinkSimulinkblocksslblocks.m')  
    ! f. r0 X" d# F* S# z% A' d1 e) ]" }0 x6 g# |1 O+ [  w- g
    这样就可以打开slbocks.m文件模板,为了将自定义的模块库显示在Library Browser窗口下,需要对该程序进行修改。首先把slbocks.m文件拷贝到自定义库文件 1 h! a* P5 z' W$ T1 m* v6 [# e! R  Q' a
    同一目录下(即刚才创建的路径),然后打开该文件进行如下修改(红色为所作修改),并保存:
    6 H& G/ {4 N4 n4 C+ |# Lfunction blkStruct = slblocks
    ! L: E1 C$ H' G8 \' x%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: % 9 b' V* i. M# X- I" |1 A* w8 C) X
    % Name Name of the Blockset in the Simulink block library % Blocksets & Toolboxes subsystem. / D3 q: m; H# g: x& @
    % OpenFcn MATLAB expression_r(function) to call when you % double-click on the block in the Blocksets & Toolboxes % subsystem. # _; `8 g! ^& H
    % MaskDisplay Optional field that specifies the Mask Display commands % to use for the block in the Blocksets & Toolboxes % subsystem. & u* Z: N; }/ I0 b: |  |
    % Browser Array of Simulink Library Browser structures, described % below.
    1 x9 g0 T  a# O0 B+ D7 f
    7 J- ~' {1 \* c9 T5 _! J$ z+ {
    * W% p# L' h0 c0 `% ^3 ^( n- P, z( G
    + [* a/ N+ w: r9 k7 A: s5 D+ P; u4 a% K4 |( [* o" U3 u  O* P
    / k7 A: x/ X3 d6 E" l- L* O
    * v) A8 `. P* U- r

    1 P- E5 m7 Y% W1 ]+ E  ]; i9 x$ C5 p- K& b* z6 b7 k
    % / F& B1 W' M! _
    % 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: %
    / {1 j1 ?& c8 F. q% Library File name of the library (mdl-file) to include in the % Library Browser.
    5 f& A/ U& x" i7 Z% 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. %
    & Z; P5 S- |5 B9 Y+ \  j2 K% Example: % % % + y2 W7 _5 I! ^. H
    % % Define the BlocksetStruct for the Simulink block libraries % % Only simulink_extras shows up in Blocksets & Toolboxes % %
    / H% g" B' T9 `/ S/ o6 J% blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % blkStruct.OpenFcn = 'simulink_extras';
    $ F) m! b) V) c0 `8 l% blkStruct.MaskDisplay = sprintf('SimulinknExtras'); % % % 1 R! a$ a  }' ]/ H
    % % Both simulink and simulink_extras show up in the Library Browser. % %
    : C; V9 c6 ?6 n0 z& z# V% blkStruct.Browser(1).Library = 'simulink'; % blkStruct.Browser(1).Name = 'Simulink'; % blkStruct.Browser(2).Library = 'simulink_extras'; % blkStruct.Browser(2).Name = 'Simulink Extras'; % - ^8 L( I! Q! @& A( s, s
    % Copyright 1990-2006 The MathWorks, Inc. % $Revision: 1.20.2.10 $ % " D1 o; r' r* o; A' g% g* h' @' v' u
    % Name of the subsystem which will show up in the Simulink Blocksets 0 M8 Q0 Z0 d7 m

    : ^# k; U; j3 d$ i6 v% Q9 c  R) W' R0 f# o/ I# q9 N

    5 q" o3 ]2 x$ R) Z  ]; h% and Toolboxes subsystem. % 3 f- Z8 t5 `0 K8 L
    blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; %   d) ?* k- |! T$ [! d; N
    % The function that will be called when the user double-clicks on % this icon. %
    + ?; e! L3 e4 ]+ o$ n# NblkStruct.OpenFcn = 'simulink_extras'; %
    2 j3 o$ |/ o. T% k9 z. I% 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. % ( |& r$ Y" r7 T1 k4 P# M( G
    blkStruct.MaskDisplay = ''; % 7 v, P6 H) @5 m  g7 ]( d+ C6 y
    % 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. %
    4 @& K: X: T- e5 a  I, Q* b) rBrowser(1).Library = 'Own_efinition'; %这个是库文件名 $ o; x+ F. W9 [: b# s1 Y' {8 V; E
    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'; " r7 x1 j  ~. n: Z/ m( T
    Browser(2).IsFlat = 0;% Is this library "flat" (i.e. no subsystems)? blkStruct.Browser = Browser; clear Browser; % + d5 _2 \) I" G" P
    % Define information about Signal Viewers % 5 i# {+ h+ L2 j' B) b8 K
    Viewer(1).Library = 'simviewers'; Viewer(1).Name = 'Simulink'; blkStruct.Viewer = Viewer; clear Viewer;
    ( H3 |4 z% [# b5 y
    % _# x6 e+ X- u$ x  u3 T
    , |; Z$ I* v3 W% 0 C( S7 |, O4 n* J
    % Define information about Signal Generators %
    ! {# N! j0 v! D! R7 S8 s# FGenerator(1).Library = 'simgens'; Generator(1).Name = 'Simulink'; blkStruct.Generator = Generator; clear Generator;
    " P% x; w5 y6 G3 N' G: {% Define information for model updater
    1 I7 k2 Q/ |6 z5 W0 Q%blkStruct.ModelUpdaterMethods.fhDetermineBrokenLinks = @UpdateSimulinkBrokenLinksMappingHelper; ( m& p, O. Y6 z
    blkStruct.ModelUpdaterMethods.fhSeparatedChecks = @UpdateSimulinkBlocksHelper; % End of slblocks
    8 [: l9 t9 v, i0 _$ P/ Q) v5、再打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库,展开后可以看到内部的自定义模块。那么用户可以方便地进行拖放模块,就可以使用 自定义的封装模块了。
    8 H9 W9 ~5 F) `6 m如果还要在新建的模块库下面创建子模块库,需要把Subsystem模块加入到模块库中,打开Subsystem模块,删除所有内容(ports等元件),添加自己创建的模块
    ! o1 \. h# y  Y* |" U0 o保存即可,然后重新打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库和字模块库。
    # J  A9 s9 v7 @- z% p
    0 a( U/ o( t% k) g- x" ]0 p  _( M
    & k  K9 L8 ~3 s( ~- f3 O
    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-7-10 15:00 , Processed in 0.425253 second(s), 52 queries .

    回顶部