Simulink rapid accelerator slowly filling HD
7 views (last 30 days)
Show older comments
I am running an optimisation problem which requires to run a Simulink model several times to find the minimum of the cost function. The Simulink model is set up in rapid accelerator mode and run in parallel on different cores. The problem is that Matlab is slowly filling the hard drive with temporary files (.dmr files in ..AppData\Local\Temp). Is there any way I can avoid Matlab from building up these massive files?
Answers (1)
Tejas
on 21 Oct 2024
Hello Giorgio,
To prevent the creation of large .DMR files, consider using the Simulation Data Inspector settings to set global limits on the amount of data saved. This approach helps in preventing temporary files from using up all the disk space. For more details, refer to this MATLAB answer: https://www.mathworks.com/matlabcentral/answers/1901545-how-to-manage-simulink-s-generation-of-dmr-files-in-the-temp-directory .
Alternatively, if the Simulink model is run multiple times using a 'for' loop, the following command can be used after each iteration to clear temporary files. More information on this command can be found in the documentation: https://www.mathworks.com/help/simulink/slref/simulink.sdi.clear.html .
Simulink.sdi.clear
0 Comments
See Also
Categories
Find more on Verification, Validation, and Test 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!