How do I provide input to a Simulink model without placing it in the workspace

前端 未结 4 1558
小鲜肉
小鲜肉 2020-12-29 12:38

I have a Simulink model that is currently being run from a script (i.e. not a function). The script writes variable values to the MATLAB workspace, runs the model simulation

相关标签:
4条回答
  • 2020-12-29 13:18

    Well I don't know how to do it from a simple function, but it's really handy to do it from inside a class function (method). It works fine with version 2009b.

    Place the code in file Test.m:

    classdef Test < handle
        properties
            mdl
            % Default input signal
            t = [0 1 1 2]'
            u = [0 0 1 1]'
        end
    
        methods
            function this = Test(mdl)   % Constructor
                this.mdl = mdl;
            end
    
            function sim(this)
                % Load model
                load_system(this.mdl);
                % Prepare model configuration
                conf = getActiveConfigSet(this.mdl);
                cs = conf.copy();
                set_param(cs, 'StopTime', '4');
                set_param(cs, 'LoadExternalInput', 'on');
                set_param(cs, 'ExternalInput', '[test.t test.u]');  % <-- 1
                % Run simulation
                simout = sim(this.mdl, cs);
                % Plot results
                tout = simout.find('tout');
                yout = simout.find('yout');
                plot(tout, yout(:,1), 'b--');
            end
        end
    end
    

    Then just:

    >> test = Test('TestSim');
    >> test.sim();
    

    What happens? You create object test, that has defined fields t and u. Then in method sim() You say to Simulink to look for input '[test.t test.u]'. Both Simulink and the method sim() has access to this variables (I believe this is the most important thing).

    OK it still has a big drawback that is marked with number 1. You have to know explicitly how a reference to class instance will be named in the workspace ('test' in this case). You can work it around by passing the name in a constructor, or you can use static variables and methods, but this way won't allow you to change input signal dynamically.

    0 讨论(0)
  • 2020-12-29 13:26

    You can use the evalin() function to execute from your own function a MATLAB expression (as a string) in a specific workspace, in your case the 'base' for SIMULINK to find them. However, if you do not want to use the workspace directly then you can load and save the signals or variables from/to MAT files using the From/To File blocks.

    0 讨论(0)
  • 2020-12-29 13:30

    Short answer: No.

    I could be wrong, but let me give you some background. I work on a Simulink model that is very large, we have been working on it for years. To this day we still load all necessary variables in through the workspace. This has been a complaint of mine for a long time, so much that MathWorks has even addressed the issue by providing the Simulink.save_vars function. It sounds like you are already setting up variables with a script/function, so Simulink.save_vars won't be much use to you.

    You can clean up the workspace by using structures for some of the variables, most Simulink blocks don't support structures, but some do. Also, avoid putting anything in the workspace other than variables that your model needs.

    0 讨论(0)
  • 2020-12-29 13:37

    It's not obvious, but you can input/output data from the sim() command and a calling function's workspace. I've done it before & have an example at work but can't get there until Monday to verify. However, try the solution listed on Mathworks's site:

    Solution:

    When using variable mask parameters in Simulink, the base workspace is the default source workspace of Simulink. However, by using the SIMSET command, this workspace can be changed. SIM is then used with this options structure created by SIMSET. The following is an example on how to do this.

      options = simset('SrcWorkspace','current');
      sim('modelname',[],options)
    

    ...although apparently this got deprecated in R2009b due to incompatibility with the Parallel Computing Toolbox >:( Looks like the correct solution is to explicitly push variables into the simulation's model workspace (different than the base workspace), using assignin().

    http://www.mathworks.com/matlabcentral/newsreader/view_thread/292544

    You have 2 options:

    1. For releases before R2009b, look at the SIMSET documentation. It allows you to set the "SrcWorkspace" property to "current" to use the data from your function.

    http://www.mathworks.com/support/solutions/en/data/1-1BWDA/?solution=1-1BWDA

    1. In newer releases, this option is deprecated because it is not compliant with the Parallel Computing Toolbox and PARFOR. What I recommend is:

    http://www.mathworks.com/support/solutions/en/data/1-ASPEIV/?solution=1-ASPEIV

    0 讨论(0)
提交回复
热议问题