wiki:public/doc/by_ext/msh/S_nodes
Last modified 3 years ago Last modified on 08/05/15 09:44:14

Description

The $NODES keyword introduces the definition of all nodal coordinates

Parameters

  • Number of nodes: At first the number of all nodes must be given in the subsequent line under the subkeyword $NODES.
  • List of node coordinates: int double double double The first parameter (int) defines the node index. The numbering starts always with "0" and must be complete and without gaps. The following three values (double double double) are the Cartesian coordinates X Y Z.

Examples

1

#FEM_MSH
 $NODES
 7500
0 0.0 0.0 0.0
1 1000.0 0.0 0.0
2 1000.0 750.0 0.0
3 0.0 750.0 0.0
4 10.10101010 750.0 0.0
5 20.20202020 750.0 0.0
: : : :
: : : :
: : : :
 $ELEMENTS
7326
0 0 quad 3 4 346 345
1 0 quad 345 346 347 344
2 0 quad 344 347 348 343
3 0 quad 343 348 349 342
: : : :
: : : :
: : : :
#STOP