Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Elements <Elemtype> ?<first_id>? ?<last_id>? ?-sublist|-array|-array2? ?-avoid_frozen_layers? ?-layer <layername>? ?-group <groupname>?:  ?-orphan?

Returns a list with the element numbers, the connectivities , radius if it is a sphere, normal if it is a circle, and the material number, from 'first_id' to 'last_id, if they are specified.

...


Modifiers:
-sublist : Instead of a flat list it returns each result item as a Tcl list (enclosed in braces)
-array : Instead of a flat list it returns the results as a list of objarrays (more efficient).
For 'Nodes' it returns a list with 1 objarray for the NodeIDs and a list with 3 objarrays: the X coordinates, the Y coordinates and the Z coordinates.
For 'Elements' it returns a list with the element type, an objarray with the element id's, a list with an objarray for each node of the connectivity (i.e. for a triangle an objarray for all node1, another for the node2 and another for the node3), and an objarray for the material id of the elements.
-array2 : Instead of a flat list it returns the results as a list of objarrays (more efficient).
For 'Nodes' it returns a list with 2 objarrays: one for the NodeIDs and another for the xyz coordinates.
For 'Elements' it returns a list with the element type, an objarray with the element id's, an objarray for all the connectivities (i.e. for a triangle an objarray with node1-node2-node3-node1-node2-node3), and an objarray for the material id of the elements.
An 'objarray' is a Tcl_Obj object specialized for arrays, implemented as a Tcl package named 'objarray'. (for more information see the local file <GiD>/scripts/objarray/objarray.pdf)
-avoid_frozen_layers : to ignore nodes or elements of frozen layers
-layer <layername> : to get only nodes of element of this layer
-group <groupname> : to get only nodes of element of this group

-orphan : for elements only, to get elements that do not belong the the mesh of any geometrical entity

  • EmbeddedDistances: Returns a list with 2 items, the objarray of ids of the nodes (integers) and the objarray of distances to the boundary (doubles). This information is only available meshing with embedded mesh type


Examples:
in: GiD_Info Mesh
out: "1 Tetrahedra Triangle"
in: GiD_Info Mesh MaxNumNodes
out: "1623"

Code Block
set data [GiD_Info Mesh EmbeddedDistances]

...


lassign $data nodes distances

...


set length [objarray length $nodes_list]

...


for {set i 0} {$i < $length} {incr i } {

...


    set node_id [objarray get $nodes $i]

...


    set distance [objarray get $distances $i]

...


    W "$node_id $distance"

...


}


Example 2:

Mesh with

node_id x_coord y_coord z_coord
1 0.0 1.0 0.0
2 1.0 1.0 0.0
3 0.0 0.0 0.0
4 1.0 0.0 0.0

element_id node1 node2 node3 material
1 3 4 1 0
2 1 4 2 0


Code Block
GiD_Info Mesh nodes

...


-> 1 0.0 1.0 0.0 2 1.0 1.0 0.0 3 0.0 0.0 0.0 4 1.0 0.0 0.0

...



GiD_Info Mesh nodes -sublist

...


-> {1 0.0 1.0 0.0} {2 1.0 1.0 0.0} {3 0.0 0.0 0.0} {4 1.0 0.0 0.0}

...



GiD_Info Mesh nodes -array

...


-> {1 2 3 4} {{0.0 1.0 0.0 1.0} {1.0 1.0 0.0 0.0} {0.0 0.0 0.0 0.0

...

}}

GiD_Info Mesh nodes -array2

...


-> {1 2 3 4} {0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0}

...



GiD_Info Mesh elements triangle

...


-> 1 3 4 1 0 2 1 4 2 0

...



GiD_Info Mesh elements triangle -sublist

...


-> {1 3 4 1 0} {2 1 4 2 0}

...



GiD_Info Mesh elements triangle -array

...


-> {Triangle {1 2} {{3 1} {4 4} {1 2}} {0 0}}

...



GiD_Info Mesh elements triangle -array2

...



-> {Triangle {1 2} {3 4 1 1 4 2} {0 0}}