...
Write the connectivities array of the elements of the current mesh. These functions include GiD_fBeginElements()
and GiD_fEndElements()
. All elements are of the same type EType
as described in GiD_fBeginMesh, GiD_fBeginMeshColor https://gidsimulation.atlassian.net/wiki/spaces/GPT/pages/2500165853
If GiD_fWriteElementsBlock()
or GiD_fWriteElementsMatBlock()
are used, i.e. no list of element's id’s are provided, then the element's id’s are assumed to be 1..num_elements
.
...
connectivities
is the array consecutive element’s connectivities of the num_elements
, and it is expected to have num_elements * NNode
doubles. Being Nnode
the number of nodes per element as specified in GiD_fBeginMesh, GiD_fBeginMeshColor https://gidsimulation.atlassian.net/wiki/spaces/GPT/pages/2500165853 .
Example:
C/C++ as in testpost_fd.c
:
...