QQ登录

只需要一步,快速开始

 注册地址  找回密码
查看: 11175|回复: 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/ m6 d0 D( ^+ U/ ^/ d
    1、创建库文件:打开Simulink Library Browser窗口。要建立Simulink库文件,首先启动Simulink工作窗口,单击菜单栏【File】下的【New】选项,选择【library】选项, 打开一个新的Library窗口界面,此时,用户可以将自己需要添加的一些模块加入到新的窗口中。然后保存为Own_efinition.mdl(所需要定义的库文件名称)。这样,就建立了一个 自定义的库文件。
    + \! e, l6 T& u6 S, X: J2、在Matlab路径下创建存放库文件的路径,也即自定义的模块库在Library Browser下的显示位置。注意在Matlab中,每一个模块库文件所在的路径必须不同。 ( L, L2 e9 g2 U% i
    创建的Maltab路径是:Drogram FilesMATLABR2011btoolboxSimulinkSimulinkMyLibrary(根据自己的Matlab安装路径来确定),其中MyLibrary为自定义的文件夹。 . g' _- M5 Q5 \" I
    3、将第一步中建立的库文件拷贝到新建的Matlab路径下。在Matlab主窗口的【File】菜单栏下选择【Set Path】选项,然后单击【Add Folder】按钮,将新建的 路径添加进来,然后保存(Save),退出(Close)。 $ j% L0 i% E6 z  I# d- I
    4、要显示自定义的模块库,还需要拷贝slblocks.m函数到新建的路径下。在Matlab的命令窗口中输入: $ Q6 U/ V" I; E. I
    >> which('slblocks.m', '-all')
    ) d, _( Z; P% F! \1 @+ Y( ?2 V4 f>> open('Drogram FilesMATLABR2011btoolboxSimulinkSimulinkblocksslblocks.m')  
    ! q: [/ U& b, z3 d, m! ^; d
    . }' Q& ?- `+ b9 m" Q这样就可以打开slbocks.m文件模板,为了将自定义的模块库显示在Library Browser窗口下,需要对该程序进行修改。首先把slbocks.m文件拷贝到自定义库文件 2 [; _3 q6 ^0 T* _9 \. U" s/ u
    同一目录下(即刚才创建的路径),然后打开该文件进行如下修改(红色为所作修改),并保存: 0 A0 R0 R: L8 h- [/ J
    function blkStruct = slblocks
    # w4 S* D* x- b9 p8 B3 O%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: %
    " U: e4 n- ~+ y% Name Name of the Blockset in the Simulink block library % Blocksets & Toolboxes subsystem. , L. x! [/ o1 x, ~- T4 e  n0 s/ T& X
    % OpenFcn MATLAB expression_r(function) to call when you % double-click on the block in the Blocksets & Toolboxes % subsystem. & G$ X- u! j# j& t- T  s' h
    % MaskDisplay Optional field that specifies the Mask Display commands % to use for the block in the Blocksets & Toolboxes % subsystem.
    3 N# G2 n  ?' E! O% Browser Array of Simulink Library Browser structures, described % below.
    4 I3 k4 W, z) m7 g, {  ?
    6 q; S: H: a% F. {; {0 t5 |  o; a

    % F2 c3 I/ p" {% V  J/ N' q' T4 s9 {

    9 p( N6 h8 T; z! x9 g" g$ x- O4 J' i; l0 A8 T$ {, O

    ! E$ b- n) \+ C- D* C& L0 V0 f% g# o# e% K
    % 7 h  d+ X( {, y$ y
    % 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: %
    * {3 t. c+ r, c% Library File name of the library (mdl-file) to include in the % Library Browser. 0 J/ p# p! U- i; e+ H% t4 V
    % 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. % + @) f9 _7 E( C7 X2 ~. Z
    % Example: % % % 1 O+ t$ w4 D* O
    % % Define the BlocksetStruct for the Simulink block libraries % % Only simulink_extras shows up in Blocksets & Toolboxes % %
    * T# Y! d. y) M, |4 K% blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % blkStruct.OpenFcn = 'simulink_extras';
    ' F* y! U- l; ^; D+ Z% i& e; b: I% blkStruct.MaskDisplay = sprintf('SimulinknExtras'); % % %
    ( i+ h8 i8 O9 w% h  i% % Both simulink and simulink_extras show up in the Library Browser. % % - y/ o( t4 ~8 i, F8 [  z! T
    % blkStruct.Browser(1).Library = 'simulink'; % blkStruct.Browser(1).Name = 'Simulink'; % blkStruct.Browser(2).Library = 'simulink_extras'; % blkStruct.Browser(2).Name = 'Simulink Extras'; %
    5 ?/ j% J' N4 j- c" B% Copyright 1990-2006 The MathWorks, Inc. % $Revision: 1.20.2.10 $ % 3 ?3 c0 o0 x) C! g& f! ^" `
    % Name of the subsystem which will show up in the Simulink Blocksets . L, n8 G) D& q% t7 s; y
    * X# p) ?: N& W

    * D' z) J6 K. P7 z3 X2 C; _2 r  h, [7 f8 k, c
    % and Toolboxes subsystem. % 7 x! s; D$ z) i$ I+ W) x& b
    blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % 2 _. m& y% @' ^
    % The function that will be called when the user double-clicks on % this icon. % * O# `: m+ ~$ T" k8 W: C* w
    blkStruct.OpenFcn = 'simulink_extras'; %
    , O. I) `* r" T5 W" [* }% 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. %
    * g+ o4 ^; M; ~, J4 IblkStruct.MaskDisplay = ''; %
    . f& S, i6 H: z# j2 \% 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 {, ^7 X- h9 y1 [% d  A6 d
    Browser(1).Library = 'Own_efinition'; %这个是库文件名 3 s- E+ U2 Z. 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';
    5 C" T# T8 U9 `Browser(2).IsFlat = 0;% Is this library "flat" (i.e. no subsystems)? blkStruct.Browser = Browser; clear Browser; % . r9 f9 g- a* U& p9 H5 e& D
    % Define information about Signal Viewers % 5 G* T7 P4 u/ X: r1 X, D
    Viewer(1).Library = 'simviewers'; Viewer(1).Name = 'Simulink'; blkStruct.Viewer = Viewer; clear Viewer; 3 b& }7 M0 p6 D* f' }
    % l& o/ M) t' N6 n/ Y0 V, c/ J

    / ]8 m2 H; ^( l( Y% O% / l7 Z6 s4 H( ^% ^
    % Define information about Signal Generators %
    7 |8 H6 K8 H3 m" C6 xGenerator(1).Library = 'simgens'; Generator(1).Name = 'Simulink'; blkStruct.Generator = Generator; clear Generator;
    6 {0 R& D4 Z3 M. b  D1 k% Define information for model updater / ?5 j9 D& F  h+ D8 D( S
    %blkStruct.ModelUpdaterMethods.fhDetermineBrokenLinks = @UpdateSimulinkBrokenLinksMappingHelper;
    ) T9 K# u. L4 J. fblkStruct.ModelUpdaterMethods.fhSeparatedChecks = @UpdateSimulinkBlocksHelper; % End of slblocks : s8 I, h% f- w
    5、再打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库,展开后可以看到内部的自定义模块。那么用户可以方便地进行拖放模块,就可以使用 自定义的封装模块了。 * F8 e, k$ Z6 W3 h" M$ |
    如果还要在新建的模块库下面创建子模块库,需要把Subsystem模块加入到模块库中,打开Subsystem模块,删除所有内容(ports等元件),添加自己创建的模块
    2 T" A7 w' n9 H5 O) X0 v2 ?$ ~保存即可,然后重新打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库和字模块库。  B8 v. A9 |- b4 V8 a; ~

    + v' W7 B' T9 W8 P
    ; M0 X: u: s6 t% R$ Z6 U1 K
    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-24 05:54 , Processed in 0.480361 second(s), 51 queries .

    回顶部