How to import/include parts, meshes,... from different cae files?
How to import/include parts, meshes,... from different cae files?
(OP)
Hello everyone :)
I would like to know, what is the best way to combine or import parts, meshes, constraints,... from different cae files. Is the import of an orphan mesh through inp import the only way?
3 of us are working on a larger assembly, and it would be nice, that we could directly combine together different cae files into one, without orphan meshes.
Thanks a lot :)
B.
I would like to know, what is the best way to combine or import parts, meshes, constraints,... from different cae files. Is the import of an orphan mesh through inp import the only way?
3 of us are working on a larger assembly, and it would be nice, that we could directly combine together different cae files into one, without orphan meshes.
Thanks a lot :)
B.





RE: How to import/include parts, meshes,... from different cae files?
ABAQUS/CAE ->Menu ->Model-> Copy objects ???
RE: How to import/include parts, meshes,... from different cae files?
Thanks for reply. Yes, I have tried this option, of course, but this works only between several models in the opened cae file. What I would like is to be able to copy some features (parts, meshes,..) from one cae file to another. But since there can be only one cae file opened when working with Abaqus/CAE, I dont know how to do it.
Any more ideas, perhaps? I would be glad :)
br, B.
RE: How to import/include parts, meshes,... from different cae files?
RE: How to import/include parts, meshes,... from different cae files?
You can replay (FIle - Run Script) the jnl file of the source database inside the target database. You'll end up replicating the source database, but since it is now a separate model within the target database you can simply use the "Model - Copy Objects" to get parts/meshes/materials/sections from one model to the other.
Not perfect, but it may save the day!
PS: You'll have to look carefully at the model names and other commands in the jnl that could mess things up. That's why I said you need to know your way around the jnl. BUt it's really not that hard...
RE: How to import/include parts, meshes,... from different cae files?
Your idea it is quite good. I tested it.
What you have to do is to look in the .jnl file and notice the names of the models.
If the model is created in the .jnl file, i.e. you find
mdb.Model(name='Model-name'),
then you have to be sure there is no any other model in the CAE with the same name.
If there is no model creation command in the .jnl file then you can either insert it in the .jnl file or you can create an empty model in CAE with the same name as the one in .jnl file.
Then you can replay the .jnl file and use Copy Objects.
RE: How to import/include parts, meshes,... from different cae files?
brep, another star from me too
your advice was really good, i tried it and it works as it should. and besides that, it also gave me some new ideas about scripting and automatization in abaqus.
real thanks again :))