-
Notifications
You must be signed in to change notification settings - Fork 5
TagMesh
lukas edited this page May 19, 2017
·
1 revision
Table of Contents
attribute | role | description |
---|---|---|
nx, ny, nz |
implicit | number of cells in x, y and z direction |
xmin, ymin, zmin |
implicit | starting point of the mesh in x, y, z coordinates |
xmax, ymax, zmax |
implicit | ending point of the mesh in x, y, z coordinates |
px, py, pz |
optional | number of sub-meshes in x, y or z direction to be created, default 1,1,1 |
P |
optional | automatically splits the defined mesh into P sub-meshes, default 1 |
Meshes are created based on the properties passed. If an argument is not set, the method tries to retrieve a value from a global variable of the same name. This allows setting the mesh properties in a different method (such as the tag bounded_room) and using them implicitly to define the mesh.
TODO