[GiDlist] element type

Moderator: GiD Team

Post Reply
kenji furui

[GiDlist] element type

Post by kenji furui »

Dear GID members,

Is there any way to print element types in .dat file?
I would like to know the command used in the .bas
file.

regards,

kenji furui
The University of Texas at Austin,


__________________________________________________
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com
Enrique Escolano

[GiDlist] element type

Post by Enrique Escolano »

The current element types are: Linear, Triangle,Quadrilateral, Tetrahedra, Prism, Hexahedra

Inside the bas file, *nelem("elemtype") returns the number of elements of this type
Example:

*if(nelem(Linear))
*nelem(Linear) Linear
*endif
*if(nelem(Triangle))
*nelem(Triangle) Triangles
*endif
*if(nelem(Quadrilateral))
*nelem(Quadrilateral) Quadrilaterals
*endif
*if(nelem(Tetrahedra))
*nelem(Tetrahedra) Tetrahedras
*endif
*if(nelem(Prism))
*nelem(Prism) Prisms
*endif
*if(nelem(Hexahedra))
*nelem(Hexahedra) Hexahedras
*endif
----- Original Message -----
From: "kenji furui" petrocowboy at yahoo.com
To: gidlist at gatxan.cimne.upc.es
Sent: Thursday, August 22, 2002 9:53 PM
Subject: [GiDlist] element type


Dear GID members,

Is there any way to print element types in .dat file?
I would like to know the command used in the .bas
file.

regards,

kenji furui
The University of Texas at Austin,


__________________________________________________
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com
_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20020828/dfbec120/attachment.htm
Post Reply