Different properties of outer elements
Different properties of outer elements
(OP)
I have some complex bone geometry in Abaqus, is there any way of defining the elements associated with the outer surface to have one set of material properties and the rest of the internal elements to have another set of material properties.
Another way of doing this maybe to have the first 1mm of material below the surface to have one set of material properties and the rest of the internal material to have another material property.
I would really appreciate some advice on this.
Thanks
Another way of doing this maybe to have the first 1mm of material below the surface to have one set of material properties and the rest of the internal material to have another material property.
I would really appreciate some advice on this.
Thanks





RE: Different properties of outer elements
The hardest part is usually selecting the outer elements. Depending on the complexity and size of your geometry you could try this manually using tools like 'select by angle' and display groups in CAE.
If you are comfortable with Python its easy enough to cycle through element faces and determine whether or not they're 'outer' faces.
RE: Different properties of outer elements
Your suggestion has got me thinking some more...
Could I define the outer elements to be a certain depth? This might be a more difficult if the elements not hex or if there are some tricky radius bends.
I may have to model the two sections seperately and then tie them together (one inside the other).
Would the python script be a complicated one to put together?
Thanks.
RE: Different properties of outer elements
The python scripting wouldn't be overly complex if all you want to do is identify outer elements. You just have to cycle through all elements in the part and using the element connectivity object add any elements not completely surrounded by other elements to a set.
Things get a bit trickier if you want to add elements a certain distance from the surface to a set but again it is entirely possible using a python script. You can even do fancy things like assign material property gradients etc.