Chi-Tech
MeshTutorial_01_1DMesh.h
Go to the documentation of this file.
1/** \page MeshTutorial_01 Mesh Tutorial 1: Simple 1D Meshes
2
3### It doesn't get simpler than this
4
5Simply define the nodes of the 1D mesh in a lua table as shown below and call
6the function chiMeshCreate1DSlabMesh(). 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()
12nodes={0.0,0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1.0}
13chiMeshCreateUnpartitioned1DOrthoMesh(nodes)
14\endcode
15
16*/