Chi-Tech
MeshTutorial_03_3DOrthoMesh.h
Go to the documentation of this file.
1/** \page MeshTutorial_03 Mesh Tutorial 3: A 3D Orthogonal Mesh
2
3### Again ... it doesn't get simpler than this
4
5Simply define the x,-y and z-nodes each in a lua table as shown below and call
6the function chiMeshCreate3DOrthoMesh(). As per usual, a mesh-handler needs to be
7created through chiMeshHandlerCreate() and the whole process is concluded with
8a call to chiVolumeMesherExecute().
9
10\code
11chiMeshHandlerCreate()
12nodesx={0.0,0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1.0}
13nodesy={0.0,0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1.0}
14nodesz={0.0,0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1.0}
15chiMeshCreateUnpartitioned3DOrthoMesh(nodesx,nodesy,nodesz)
16chiVolumeMesherExecute();
17\endcode
18
19*/