How to set working directory for Simscape?
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Brahmadev
2024-4-24
编辑:Brahmadev
2024-4-24
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Foundation and Custom Domains 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!