QQ登录

只需要一步,快速开始

 注册地址  找回密码
查看: 10887|回复: 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窗口中没有内容,找了一种方法添加进去,希望对有需要的朋友有所帮助!
    ; q% v+ }$ B' U$ I* U# F1、创建库文件:打开Simulink Library Browser窗口。要建立Simulink库文件,首先启动Simulink工作窗口,单击菜单栏【File】下的【New】选项,选择【library】选项, 打开一个新的Library窗口界面,此时,用户可以将自己需要添加的一些模块加入到新的窗口中。然后保存为Own_efinition.mdl(所需要定义的库文件名称)。这样,就建立了一个 自定义的库文件。 8 \0 d, M$ n- j5 e$ ^; i
    2、在Matlab路径下创建存放库文件的路径,也即自定义的模块库在Library Browser下的显示位置。注意在Matlab中,每一个模块库文件所在的路径必须不同。 ! G/ E* s9 p) R
    创建的Maltab路径是:Drogram FilesMATLABR2011btoolboxSimulinkSimulinkMyLibrary(根据自己的Matlab安装路径来确定),其中MyLibrary为自定义的文件夹。
    5 s' f1 G% N: h3、将第一步中建立的库文件拷贝到新建的Matlab路径下。在Matlab主窗口的【File】菜单栏下选择【Set Path】选项,然后单击【Add Folder】按钮,将新建的 路径添加进来,然后保存(Save),退出(Close)。 & f5 E! p  l2 {7 n% s
    4、要显示自定义的模块库,还需要拷贝slblocks.m函数到新建的路径下。在Matlab的命令窗口中输入:
    4 G$ |( M- C4 e* Z>> which('slblocks.m', '-all') 3 }# `# d2 H% n- P
    >> open('Drogram FilesMATLABR2011btoolboxSimulinkSimulinkblocksslblocks.m')  
    ; L3 x% E6 k" |* b/ y/ P* t( y: j: t9 I: C; h, Y: H5 S
    这样就可以打开slbocks.m文件模板,为了将自定义的模块库显示在Library Browser窗口下,需要对该程序进行修改。首先把slbocks.m文件拷贝到自定义库文件   o. j' W: o2 q4 e+ b" }  \7 ]  r
    同一目录下(即刚才创建的路径),然后打开该文件进行如下修改(红色为所作修改),并保存: 6 A/ A0 x% r6 ~5 G$ i7 [/ L' g
    function blkStruct = slblocks 7 L8 l  Q8 i8 s& @) w+ A* [* _
    %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: %
    / L- I- f& ~0 m- Y) l# `% Name Name of the Blockset in the Simulink block library % Blocksets & Toolboxes subsystem.
    3 M& _) G9 M6 O+ A9 ]4 N. u9 d3 p' P9 j% OpenFcn MATLAB expression_r(function) to call when you % double-click on the block in the Blocksets & Toolboxes % subsystem. 0 v7 R. r( O/ w* Y0 y
    % MaskDisplay Optional field that specifies the Mask Display commands % to use for the block in the Blocksets & Toolboxes % subsystem. 6 n* W- u) G$ ~1 i: p1 K, I, e
    % Browser Array of Simulink Library Browser structures, described % below.
    2 H/ Q0 f  ~8 ~: a& B: N  T
    / g! |# E% C( ~( P
    & `7 M: d0 H3 N9 D2 e) Y$ b+ V: g' f0 }& }6 i

    $ \$ l& R/ o* }# e. K6 T! @- h7 v( |9 L4 S

    4 v8 T  W2 z' V3 f. X5 c" `( q/ L) O4 |: X# A9 U& R) e
    - X) z+ x1 b4 Z: w* ]& ?
    %
    / |, K( H. ?( a5 J, Z$ w% 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: % ( [8 A* I* Q) E/ I, B
    % Library File name of the library (mdl-file) to include in the % Library Browser.
    - r2 V3 I) P0 `' i) D% 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. %
    * U2 s$ ^# m# s% Example: % % % 2 }+ E0 Z! K* d6 m8 `1 K7 _
    % % Define the BlocksetStruct for the Simulink block libraries % % Only simulink_extras shows up in Blocksets & Toolboxes % % 1 C' h1 y- Q3 l* P; J/ I
    % blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % blkStruct.OpenFcn = 'simulink_extras';
    : j% @: f$ u/ i, E% `5 V  T% blkStruct.MaskDisplay = sprintf('SimulinknExtras'); % % %
    4 d" j2 M% [4 h1 g: P9 h% % Both simulink and simulink_extras show up in the Library Browser. % % 7 Z2 }5 J+ t: G1 d
    % blkStruct.Browser(1).Library = 'simulink'; % blkStruct.Browser(1).Name = 'Simulink'; % blkStruct.Browser(2).Library = 'simulink_extras'; % blkStruct.Browser(2).Name = 'Simulink Extras'; % 0 T4 i, y  X; \$ y0 p3 f, m
    % Copyright 1990-2006 The MathWorks, Inc. % $Revision: 1.20.2.10 $ % * `+ |2 h% h% D" a$ q
    % Name of the subsystem which will show up in the Simulink Blocksets 0 W4 n8 |5 b4 ?+ i* N

    2 e& d* s1 U5 G
    5 U( G8 V0 ^) k4 L0 t1 L% l3 b; k* n: ^' ~9 b  F
    % and Toolboxes subsystem. %
    2 @# V5 U5 q4 cblkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % , w4 C, z, e( J/ ~/ s
    % The function that will be called when the user double-clicks on % this icon. % 1 H. Q* y/ @6 g% g8 ~
    blkStruct.OpenFcn = 'simulink_extras'; %
    $ a5 h$ y2 _: g& X( Q$ 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 E( H/ I2 @1 j( T0 YblkStruct.MaskDisplay = ''; % / _! f" y. @( `0 q
    % 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. % 2 M2 B8 g: A4 Z2 i( K. C
    Browser(1).Library = 'Own_efinition'; %这个是库文件名 ( C! C3 I# e! Z0 F* V  `5 m3 `1 n
    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'; ' L$ s% E. ~, s8 U% K0 }
    Browser(2).IsFlat = 0;% Is this library "flat" (i.e. no subsystems)? blkStruct.Browser = Browser; clear Browser; %
    4 l9 t& ^% J1 x  A. M% Define information about Signal Viewers %
    $ k% p2 c$ O. k. a( {  U9 mViewer(1).Library = 'simviewers'; Viewer(1).Name = 'Simulink'; blkStruct.Viewer = Viewer; clear Viewer;
    - ]8 M- L2 x: Z; j$ p! |+ N
    3 C5 O+ `. N5 y1 w0 k/ b
    5 a  N& D4 S( F  q# V7 V%
    5 x; p% X; O, D4 [+ _% Define information about Signal Generators % $ t! K) {6 t/ [
    Generator(1).Library = 'simgens'; Generator(1).Name = 'Simulink'; blkStruct.Generator = Generator; clear Generator;
    9 ^% I6 Z$ U# W+ N, W( c5 H+ v% x& e% Define information for model updater ) r4 C# b  @9 T2 P8 a* e
    %blkStruct.ModelUpdaterMethods.fhDetermineBrokenLinks = @UpdateSimulinkBrokenLinksMappingHelper; ; c1 b4 ^8 U3 D: d0 b+ Y, K1 C
    blkStruct.ModelUpdaterMethods.fhSeparatedChecks = @UpdateSimulinkBlocksHelper; % End of slblocks , l1 S3 {; |" ^4 h" }) Y* h
    5、再打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库,展开后可以看到内部的自定义模块。那么用户可以方便地进行拖放模块,就可以使用 自定义的封装模块了。
    2 ~( k' ?1 r$ z6 g( W, @2 T( p如果还要在新建的模块库下面创建子模块库,需要把Subsystem模块加入到模块库中,打开Subsystem模块,删除所有内容(ports等元件),添加自己创建的模块
    ; v! I* e' ^' P' x% _; U9 @保存即可,然后重新打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库和字模块库。) `& f% H+ v6 S( w; F: v% t, c
    . x) D! C9 G/ |

    5 @. q+ e. P. j/ A3 z2 L& p/ w* W
    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, 2025-11-10 14:38 , Processed in 0.272563 second(s), 51 queries .

    回顶部