![]() |
stroid v0.1.0
Multi-block curvilinear mesh generation
|
Enumerations | |
| enum class | VISUALIZATION_MODE : uint8_t { NONE , ELEMENT_ID , BOUNDARY_ELEMENT_ID } |
| Visualization modes for GLVis display. More... | |
Functions | |
| void | SaveMesh (const mfem::Mesh &mesh, const std::string &filename) |
Save a mesh to MFEM's native .mesh format. | |
| void | SaveVTU (mfem::Mesh &mesh, const std::string &exportName) |
| Save a mesh as a ParaView VTU dataset. | |
| void | ViewMesh (mfem::Mesh &mesh, const std::string &title, VISUALIZATION_MODE mode, const std::string &vishost, int visport) |
| Stream a mesh to a running GLVis server for interactive viewing. | |
| void | VisualizeFaceValence (mfem::Mesh &mesh) |
| Visualize boundary face valence (1=surface, 2=internal). | |
|
strong |
| void stroid::IO::SaveMesh | ( | const mfem::Mesh & | mesh, |
| const std::string & | filename ) |
Save a mesh to MFEM's native .mesh format.
| mesh | Mesh to serialize. |
| filename | Output path (including extension). |
| void stroid::IO::SaveVTU | ( | mfem::Mesh & | mesh, |
| const std::string & | exportName ) |
Save a mesh as a ParaView VTU dataset.
| mesh | Mesh to export. |
| exportName | Output base name (ParaView will add extensions). |
| void stroid::IO::ViewMesh | ( | mfem::Mesh & | mesh, |
| const std::string & | title, | ||
| VISUALIZATION_MODE | mode, | ||
| const std::string & | vishost, | ||
| int | visport ) |
Stream a mesh to a running GLVis server for interactive viewing.
| mesh | Mesh to display. |
| title | Window title shown in GLVis. |
| mode | Attribute visualization mode. |
| vishost | GLVis server host. |
| visport | GLVis server port. |
| void stroid::IO::VisualizeFaceValence | ( | mfem::Mesh & | mesh | ) |
Visualize boundary face valence (1=surface, 2=internal).
| mesh | Mesh whose boundary faces are inspected. |