Discretize Meshes (discretize)#
The discretize package contains four types of meshes for soliving partial differential
equations using the finite volume method.
Mesh Classes#
|
Tensor mesh class. |
|
Class for cylindrical meshes. |
|
Curvilinear mesh class. |
|
Class for QuadTree (2D) and OcTree (3D) meshes. |
|
Class for traingular (2D) and tetrahedral (3D) meshes. |
Mesh Cells#
The TensorCell and
TreeCell classes were designed specifically to
define the cells within tensor and tree meshes, respectively.
Instances of TreeCell and
TensorCell are not meant to be created on
their own.
However, they can be returned directly by indexing a particular cell within
a tensor or tree mesh.
|
Representation of a cell in a TensorMesh. |
A class for defining cells within instances of |