I want to stop my simulink code after 10 seconds of running

23 views (last 30 days)
I am using simulink audio tool box to record an audio.
I am starting this simulink code using my matlab code.(sim("*simulink file name*")).
But i want this simulink file to run for 15 seconds so the .wav file output from the simulink code can be read by the matlab code.

Answers (2)

Jon
Jon on 30 Jun 2022
So I'm assuming you mean that you want the Simulink model to run for 15 seconds of real time. Otherwise if you just want it to run for 15 seconds of simulated elapsed time you could just set you stop time to 15 seconds.
To make it run for 15 seconds of real time you can use the Simulation Pacing Option. To get to this setting click on the drop down below the Run button. There you can check the box for "Enable pacing to slow down simulation, and set the slider for Simulation timer per wall clock second to 1. With those settings, if you set the stop time of the simulation to 15 seconds, the real elapsed time will also be 15 seconds.
  4 Comments
Jon
Jon on 30 Jun 2022
Finally, I should have noticed earlier that you are using a special toolbox "Audio Toolbox"
I am not familiar with this toolbox, but it is quite possible it has some built in settings to allow you to capture data for a specified amount of real time. In this case I would just use the built in functionality
Walter Roberson
Walter Roberson on 30 Jun 2022
audiorecorder() is useful for capturing a specific amount of audio data.

Sign in to comment.


jibrahim
jibrahim on 1 Jul 2022
This should work:
sim(modelname, 15)
  2 Comments
Jon
Jon on 1 Jul 2022
Yes, you can set the stop time programmatically as you show. I think the OP wants the model to run for 15 seconds of realtime, that is what I explained in my answer above.
jibrahim
jibrahim on 1 Jul 2022
If the audio IO blocks are used (e,g audio Device Reader, Writer...), then the model will run in realtime with no required changes from the user. The IO blocks will take care of blocking execution.

Sign in to comment.

Categories

Find more on Audio Processing Algorithm Design in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!