How can i modify a model automatically which uses an excel file as an input when this excel file is modified (checksum is modified) ?
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello everybody,
I am working on a simulink model which should be modified every time an excel file is modified. the idea is to use the getfile checksum function but i can't find a solution to make an automatic check in the model to know if the excel file is modified or not ?
Thanks in advance,
댓글 수: 0
답변 (1개)
Titus Edelhofer
2019년 6월 4일
Hi Lamjed,
does the entire Simulink model needs to be changed or only a block? If it's only a block you could mask the block and add to the mask initialization the call to update (or not).
If it is the whole model, you would need to add this to the model init function (menu File->Model Properties->Callbacks->InitFcn).
Titus
댓글 수: 3
Titus Edelhofer
2019년 6월 4일
Hi Lamjed,
hmm, then I guess it will be much more involved: yes, my suggestions were aiming at modifying the model when you either do an update (Ctrl-D) or start the simulation. To happen "automatically" would require one of the two options below:
- Excel "tells" the Simulink model to update
- The Simulink model polls the state of the Excel file
Regarding 1: you might be able to use Automation Server or other techniques, but they all will require the Excel file to do some "action". I guess this is not what you want.
Regarding 2: you could start a timer in MATLAB that periodically (every ten seconds?) checks the Excel file and in case it detects changes instructs the simulink model to update
set_param(modelName, 'SimulationCommand', 'update')
Should work - but still strange. Better advice probably needs much more background information from you.
Titus
참고 항목
카테고리
Help Center 및 File Exchange에서 Simulink Functions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!