Mesh
Function | Description |
---|---|
|
Create a |
|
Create a |
|
Create a |
|
load a mesh |
|
Create a submesh out of a mesh from a range of element of subentities |
- Create an empty Mesh of \(d\)-simplex
// Create a shared mesh ptr
// use default constructor
auto mesh = makeMesh<Simplex<d>>();
// pass a worldComm
auto mesh = makeMesh<Simplex<d>>( Environment::worldComm() );
// Create a unique mesh ptr
// use default constructor
auto mesh = makeUniqueMesh<Simplex<d>>();
// pass a worldComm
auto mesh = makeUniqueMesh<Simplex<d>>( Environment::worldComm() );
- Load a mesh of \(d\)-simplex
auto mesh=loadMesh( _mesh=new Mesh<Simplex<d>> );