Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Showing Exploded Mesh

Status
Not open for further replies.

Stringmaker

Mechanical
Joined
Mar 18, 2005
Messages
513
Location
US
I've seen several places inside of the Ansys documentation where a mesh is shown with an exploded view of the elements so that you can see what the internal elements look like. Is there a command in Ansys that will do this? I searched through the documentation and couldn't find anything on this. Can anyone here shine some light on this?

Thanks,
-Brian
 
There isn't an option to show an exploded view, but you can shrink the elements to allow you to see internals (see the /shrink command) -- it really depends on the shape of the mesh you're trying to see, but there are many ways to try and achieve this. Let's assume you have a square block, which has been meshed by meshing a volume, and you want to view the elements at the interior (internal to the outer layer of elements that is). You can use:

Code:
vsel,s,p   ! pick the volume
nslv,s,0   ! select the internal nodes to the volume
esln       ! select the elements based on those nodes

Otherwise try:

Code:
asel,s,p   ! pick the areas of the block
esla,s     ! select the elements based on picked areas
esel,inve  ! invert the selection

Or:

Code:
asel,s,p  
nsla,u
esln,s

etc. etc.


------------
See faq569-1083 for details on how to make best use of Eng-Tips.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top