Loading [MathJax]/extensions/MathZoom.js
OGS
MeshEnums.h
Go to the documentation of this file.
1
15#pragma once
16
17#include <string>
18#include <vector>
19
20namespace MeshLib {
21
22enum class MeshItemType
23{
24 Node,
25 Edge,
26 Face,
27 Cell,
29};
30
32static constexpr char const* mesh_item_type_strings[] = {
33 "node", "edge", "face", "cell", "integration_point"};
34
36static constexpr char const* toString(const MeshItemType t)
37{
38 return mesh_item_type_strings[static_cast<int>(t)];
39}
40
41std::ostream& operator<<(std::ostream& os, MeshItemType const& t);
42
47enum class MeshElemType
48{
49 INVALID = 0,
50 POINT = 1,
51 LINE = 3,
52 QUAD = 9,
53 HEXAHEDRON = 12,
54 TRIANGLE = 5,
55 TETRAHEDRON = 10,
56 PRISM = 16,
57 PYRAMID = 14
58};
59
63enum class CellType
64{
65 INVALID = 0,
66 POINT1 = 1,
67 LINE2 = 2,
68 LINE3 = 3,
69 TRI3 = 4,
70 TRI6 = 5,
71 QUAD4 = 6,
72 QUAD8 = 7,
73 QUAD9 = 8,
74 TET4 = 9,
75 TET10 = 10,
76 HEX8 = 11,
77 HEX20 = 12,
78 HEX27 = 13,
79 PRISM6 = 14,
80 PRISM15 = 15,
81 PRISM18 = 16,
82 PYRAMID5 = 17,
83 PYRAMID13 = 18,
85};
86
99
104{
105 ELEVATION,
106 MATERIALS,
108 NONE
109};
110
112std::string MeshElemType2String(const MeshElemType t);
113
115std::string MeshElemType2StringShort(const MeshElemType t);
116
118MeshElemType String2MeshElemType(const std::string &s);
119
121std::vector<MeshElemType> getMeshElemTypes();
122
124std::vector<std::string> getMeshElemTypeStringsShort();
125
127std::string CellType2String(const CellType t);
128
129std::string MeshQualityType2String(const MeshQualityType t);
131
132} // namespace MeshLib
MeshElemType String2MeshElemType(const std::string &s)
Given a string of the shortened name of the element type, this returns the corresponding MeshElemType...
Definition MeshEnums.cpp:95
CellType
Types of mesh elements supported by OpenGeoSys.
Definition MeshEnums.h:64
static constexpr char const * mesh_item_type_strings[]
Char array names for all of MeshItemType values.
Definition MeshEnums.h:32
MeshLib::MeshQualityType String2MeshQualityType(std::string const &s)
std::string MeshElemType2String(const MeshElemType t)
Given a MeshElemType this returns the appropriate string.
Definition MeshEnums.cpp:21
MeshQualityType
Describes a mesh quality metric.
Definition MeshEnums.h:91
std::vector< MeshElemType > getMeshElemTypes()
Returns a vector of all mesh element types.
std::string MeshElemType2StringShort(const MeshElemType t)
Given a MeshElemType this returns the appropriate string with a short name.
Definition MeshEnums.cpp:58
std::vector< std::string > getMeshElemTypeStringsShort()
Returns a vector of strings of mesh element types.
std::string CellType2String(const CellType t)
Given a MeshElemType this returns the appropriate string.
std::string MeshQualityType2String(const MeshQualityType t)
std::ostream & operator<<(std::ostream &os, Element const &e)
Definition Element.cpp:88
UseIntensityAs
Selection of possible interpretations for intensities.
Definition MeshEnums.h:104
static constexpr char const * toString(const MeshItemType t)
Returns a char array for a specific MeshItemType.
Definition MeshEnums.h:36
MeshElemType
Types of mesh elements supported by OpenGeoSys. Values are from VTKCellType enum.
Definition MeshEnums.h:48