getting errors while Copying imported model from solidworks into a new simulink model
9 ビュー (過去 30 日間)
古いコメントを表示
I am trying to copy an imported Solidworks model into a new Simulink model, but I get these errors:
my imported model is something like below and it works perfectly, but when i try to copy it in order to use it in another simulink model i get those errors mentioned above, what can i do?
Both my imported model and my new copied one are in the same folder and I am using R2017b version.
0 件のコメント
採用された回答
Nicolas Schmit
2017 年 11 月 1 日
The model needs a variable "smiData" which is missing. Look for the code that imports or creates this variable.
1 件のコメント
Steve Miller
2018 年 3 月 6 日
When you export from SolidWorks, a MATLAB file is created that defines the data that Simscape Multibody needs. Usually, it is called name_DataFile.m That is where smiData is defined. When you import the XML file, the block diagram is created assembly_name.slx, and that MATLAB code is called from the Model Workspace. If you copy the blocks to a new model, that new model won't load the data into its workspace.
You need to either explicitly call name_DataFile.m so that the data is in the MATLAB Workspace or adjust your Model Workspace within the Model Explorer so that the data is loaded into the Model Workspace.
If this is not clear, look in the product documentation to learn what these terms mean. --Steve
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Simscape Multibody についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!