Difference between revisions of "HANtune/MATLAB Interface"

From OpenMBD
Jump to: navigation, search
(Reading data from a running Simulink model)
Line 9: Line 9:
 
====Set your model====
 
====Set your model====
  
#Change these to the name and location of your model
+
<nowiki#Change these to the name and location of your model
<nowiki>modelName = 'MyModel'
+
>modelName = 'MyModel'
 
modelPath = 'C:\Users\Michiel Klifman\Desktop'
 
modelPath = 'C:\Users\Michiel Klifman\Desktop'
  

Revision as of 18:53, 21 October 2019

HANtune can be interfaced with MATLAB® (and by extension Simulink®). We can do this by using the MATLAB engine and calling it from a script.

Note: You will need to have installed a version of MATLAB® with the Java MATLAB engine.

Connecting to the MATLAB Engine

Reading data from a running Simulink model

Set your model

<nowiki#Change these to the name and location of your model

>modelName = 'MyModel' modelPath = 'C:\Users\Michiel Klifman\Desktop'

  1. Add folders to MATLAB path

from java.lang import System scriptPath = System.getProperty("user.dir") + "\scripts\examples\MATLAB_Interface" engine.eval("addpath('" + scriptPath + "')") engine.eval("addpath('" + modelPath + "')")</nowiki>

Creating a daq list

Reading data from a running Simulink model