Quadratic tetrahedral elements node order.

Moderator: GiD Team

Post Reply
Rolando
Posts: 8
Joined: Fri Jan 14, 2022 12:18 am

Quadratic tetrahedral elements node order.

Post by Rolando »

Dear all,

I have already generated a 3d solid mesh using quadratic tetrahedral elements. I did extract the .txt file and imported directly into DIANA FEM software. However, it seems that the node order definition of each element [node1, node2, node3,...,node10] is not already compatible with the order definition expected in DiANA (see the image below). Is it possible to redefine node order within GiD?

Thanks in advance!

Image
User avatar
escolano
Posts: 1922
Joined: Sun Sep 05, 1982 10:51 pm

Re: Quadratic tetrahedral elements node order.

Post by escolano »

How is this .txt file extracted from GiD?

Maybe the DIANA FEM solver is able to read some format exported by GiD, like NASTRAN, VTK, Exodus ||

Otherwise your must write a GiD problemtype 'DIANA' and write the GiD information in the native format expected by this program.
The file can be written for simple cases with a .bas GiD template (typical of classic problemtypes) or with some Tcl scripting procedure (typical of customLib problemtypes)

Maybe you are already writing it with a .bas template,
then you can write the element connectivities in the order you want
e.g.
inside a *loop elems / *end elems
instead a simple
*elemsconec
that will write all connectivities but with the order predefined in GiD you
can write the local index (from 1) of the element node that you want to be printed
e.g.
*elemsconec(3) *elemsconec(2) *elemsconec(1) ...
Post Reply