https://github.com/steventen/simulink-model-parsing-tools
read and write simulink model in python
https://github.com/steventen/simulink-model-parsing-tools
Last synced: 11 months ago
JSON representation
read and write simulink model in python
- Host: GitHub
- URL: https://github.com/steventen/simulink-model-parsing-tools
- Owner: steventen
- License: mit
- Created: 2011-10-25T03:23:22.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2024-07-17T16:02:03.000Z (about 2 years ago)
- Last Synced: 2025-04-04T08:45:32.574Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 46
- Watchers: 6
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
##-- Simulink Mode Parsing Tools --##
This tool package intends to extend my parsing tool for SimMechancis which has a very similar structure with Simulink.
* the tools contian MDLparsetool.py for parsing .mdl file, which is created directly under Matlab's Simulink environment.
* the tools provide functions like get_param(), set_param(), add_block(), add_line() etc.
The goal of this project is to implement the same system manipulation functions as provided in Matlab environement.
So that one can create and/or modify Simulink model by using python.
##-- Requirements --##
To run this tool, you'll need:
* Python, version 2.4 or higher
* for mdl file parser, you need to install pyparsing module
##-- Credits --##
Project author: Steven Yue
The function for parsing mdl file into nest list was writtern by Kjell Magne Fauske. Thanks