How to set working directory for Simscape?
2 views (last 30 days)
Show older comments
I have a fundamental question while working with one of the Simscale examples. I copied the Gamma Stirling Engine example to a different directory. However, all the hyperlinks for the parameters m files are still connected to the original folder. Is this because there is a working directory for Simscale/Simulink ? If so how do I change it to the current directory where the model is.
0 Comments
Answers (1)
Brahmadev
on 24 Apr 2024
Edited: Brahmadev
on 24 Apr 2024
You can copy the .m files to the new folder as well and then modify the text present in the model as well as the callback function for the example to point to the new .m files.
For modifying the callback function, go to Modelling Tab -> Model Settings and update the PreLoadFcn with the new/copied file names. It is recommended to give the copied files a new name so that they are not shadowed by the .m files in the example folder. See schreenshot below:
You can see which file is being used by running the following command in the command window:
which GammaStirlingEngineParams
Similarily, you can update the text in the model by right-clicking on it and clicking "edit text". Further the hyperlink can be edited by clicking on the and using "Ctrl-K" or right-clicking it and chossing Hyperlink. Change the command to point to the .m files in the new folder. You can also specify the entire path instead of just the name.
edit NewFileName
See screenshot below:
Hope this helps!
3 Comments
See Also
Categories
Find more on Foundation and Custom Domains 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!