Access/Call Simulink from Python

六眼飞鱼酱① 提交于 2019-12-07 09:38:04

问题


I want to model a system in Simulink, and then access that simulation from a python program to feed it new conditions or inputs.

I know there is a module out there that allows you to access the Matlab engine from Python, but this is a little different.

I'd like to have a system modeled in Simulink, and monitor some hardware using Python. Then, every say quarter second or so, call Simulink, run the simulation using current conditions of the hardware, get some output and repeat the process. Basically I'm trying to play around with a real time simulator for hardware.

I am running Ubuntu 11.04

I know Python isnt ideally suited for this, but that's not the point. Any idea if this is possible? Or where I may start?


回答1:


There's an open-source HTTP and XML-RPC server for Matlab Simulink called SimServer:

http://simulinksimserv.sourceforge.net/

An example Python script has been provided(in the package) which shows how the XML-RPC interface can be used to Get and Set data in a running Simulink model.



来源:https://stackoverflow.com/questions/8198488/access-call-simulink-from-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!