getting errors while Copying imported model from solidworks into a new simulink model
11 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
saeed hosseini
le 31 Oct 2017
Commenté : Steve Miller
le 6 Mar 2018
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 commentaires
Réponse acceptée
Nicolas Schmit
le 1 Nov 2017
The model needs a variable "smiData" which is missing. Look for the code that imports or creates this variable.
1 commentaire
Steve Miller
le 6 Mar 2018
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
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Simscape Multibody dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!