v0.14.0
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | List of all members
MoFEM::PrismsFromSurfaceInterface Struct Reference

merge node from two bit levels More...

#include <src/interfaces/PrismsFromSurfaceInterface.hpp>

Inheritance diagram for MoFEM::PrismsFromSurfaceInterface:
[legend]
Collaboration diagram for MoFEM::PrismsFromSurfaceInterface:
[legend]

Public Types

enum  SwapType { NO_SWAP = 0 , SWAP_TRI_NODE_ORDER = 1 , SWAP_TOP_AND_BOT_TRI = 2 }
 List of types of node swapping performed on a created prism Node swapping is required to satisfy the canonical ordering for the prism in case the surface normal is pointing inwards rather than outwards Currently supported options (assuming canonical ordering of nodes 0-5): NO_SWAP : node swapping is not performed SWAP_TRI_NODE_ORDER : swap the order of nodes on prism's triangle faces (1 <-> 2, 4 <-> 5) SWAP_TOP_AND_BOT_TRI : swap nodes between the top and the bottom triangles (0 <-> 3, 1 <-> 4, 2 <-> 5) More...
 

Public Member Functions

MoFEMErrorCode query_interface (boost::typeindex::type_index type_index, UnknownInterface **iface) const
 
 PrismsFromSurfaceInterface (const MoFEM::Core &core)
 
MoFEMErrorCode createPrisms (const Range &ents, const SwapType swap_type, Range &prisms, int verb=-1)
 Make prisms from triangles. More...
 
DEPRECATED MoFEMErrorCode createPrisms (const Range &ents, Range &prisms, int verb=-1)
 
MoFEMErrorCode seedPrismsEntities (Range &prisms, const BitRefLevel &bit, int verb=-1)
 Seed prism entities by bit level. More...
 
MoFEMErrorCode createPrismsFromPrisms (const Range &prisms, bool from_down, Range &out_prisms, int verb=-1)
 Make prisms by extruding top or bottom prisms. More...
 
MoFEMErrorCode setThickness (const Range &prisms, const double director3[], const double director4[])
 
MoFEMErrorCode setNormalThickness (const Range &prisms, double thickness3, double thickness4)
 
MoFEMErrorCode updateMeshestByEdgeBlock (const Range &prisms)
 Add quads to bockset. More...
 
MoFEMErrorCode updateMeshestByTriBlock (const Range &prisms)
 Add prism to bockset. More...
 
- Public Member Functions inherited from MoFEM::UnknownInterface
virtual MoFEMErrorCode query_interface (boost::typeindex::type_index type_index, UnknownInterface **iface) const =0
 
template<class IFACE >
MoFEMErrorCode registerInterface (bool error_if_registration_failed=true)
 Register interface. More...
 
template<class IFACE >
MoFEMErrorCode getInterface (IFACE *&iface) const
 Get interface refernce to pointer of interface. More...
 
template<class IFACE >
MoFEMErrorCode getInterface (IFACE **const iface) const
 Get interface pointer to pointer of interface. More...
 
template<class IFACE , typename boost::enable_if< boost::is_pointer< IFACE >, int >::type = 0>
IFACE getInterface () const
 Get interface pointer to pointer of interface. More...
 
template<class IFACE , typename boost::enable_if< boost::is_reference< IFACE >, int >::type = 0>
IFACE getInterface () const
 Get reference to interface. More...
 
template<class IFACE >
IFACE * getInterface () const
 Function returning pointer to interface. More...
 
virtual ~UnknownInterface ()=default
 

Public Attributes

MoFEM::CorecOre
 
std::map< EntityHandle, EntityHandlecreatedVertices
 

Additional Inherited Members

- Static Public Member Functions inherited from MoFEM::UnknownInterface
static MoFEMErrorCode getLibVersion (Version &version)
 Get library version. More...
 
static MoFEMErrorCode getFileVersion (moab::Interface &moab, Version &version)
 Get database major version. More...
 
static MoFEMErrorCode setFileVersion (moab::Interface &moab, Version version=Version(MoFEM_VERSION_MAJOR, MoFEM_VERSION_MINOR, MoFEM_VERSION_BUILD))
 Get database major version. More...
 
static MoFEMErrorCode getInterfaceVersion (Version &version)
 Get database major version. More...
 

Detailed Description

merge node from two bit levels

Examples
prism_elements_from_surface.cpp, and prism_polynomial_approximation.cpp.

Definition at line 15 of file PrismsFromSurfaceInterface.hpp.

Member Enumeration Documentation

◆ SwapType

List of types of node swapping performed on a created prism Node swapping is required to satisfy the canonical ordering for the prism in case the surface normal is pointing inwards rather than outwards Currently supported options (assuming canonical ordering of nodes 0-5): NO_SWAP : node swapping is not performed SWAP_TRI_NODE_ORDER : swap the order of nodes on prism's triangle faces (1 <-> 2, 4 <-> 5) SWAP_TOP_AND_BOT_TRI : swap nodes between the top and the bottom triangles (0 <-> 3, 1 <-> 4, 2 <-> 5)

Enumerator
NO_SWAP 
SWAP_TRI_NODE_ORDER 
SWAP_TOP_AND_BOT_TRI 

Definition at line 37 of file PrismsFromSurfaceInterface.hpp.

Constructor & Destructor Documentation

◆ PrismsFromSurfaceInterface()

MoFEM::PrismsFromSurfaceInterface::PrismsFromSurfaceInterface ( const MoFEM::Core core)
inline

Definition at line 21 of file PrismsFromSurfaceInterface.hpp.

22 : cOre(const_cast<MoFEM::Core &>(core)) {}
Core (interface) class.
Definition: Core.hpp:82

Member Function Documentation

◆ createPrisms() [1/2]

MoFEMErrorCode MoFEM::PrismsFromSurfaceInterface::createPrisms ( const Range ents,
const SwapType  swap_type,
Range prisms,
int  verb = -1 
)

Make prisms from triangles.

Parameters
entsRange of triangles
swap_typeDefines how the nodes of the created prism are swapped (required for canonical ordering if the surface normal is pointing inwards)
prismsReturned range of prisms
verbVerbosity level
Returns
Error code
Examples
prism_elements_from_surface.cpp.

Definition at line 22 of file PrismsFromSurfaceInterface.cpp.

23 {
25 Interface &m_field = cOre;
26 Range tris = ents.subset_by_type(MBTRI);
27 for (Range::iterator tit = tris.begin(); tit != tris.end(); tit++) {
28 const EntityHandle *conn;
29 int number_nodes = 0;
30 CHKERR m_field.get_moab().get_connectivity(*tit, conn, number_nodes, false);
31 double coords[3 * number_nodes];
32 CHKERR m_field.get_moab().get_coords(conn, number_nodes, coords);
33 EntityHandle prism_nodes[6];
34 for (int nn = 0; nn < 3; nn++) {
35 prism_nodes[nn] = conn[nn];
36 if (createdVertices.find(conn[nn]) != createdVertices.end()) {
37 prism_nodes[3 + nn] = createdVertices[prism_nodes[nn]];
38 } else {
39 CHKERR m_field.get_moab().create_vertex(&coords[3 * nn],
40 prism_nodes[3 + nn]);
41 createdVertices[conn[nn]] = prism_nodes[3 + nn];
42 CHKERR m_field.get_moab().tag_set_data(cOre.get_th_RefParentHandle(),
43 &prism_nodes[3 + nn], 1,
44 &prism_nodes[nn]);
45 }
46 }
47 switch (swap_type) {
49 std::swap(prism_nodes[1], prism_nodes[2]);
50 std::swap(prism_nodes[4], prism_nodes[5]);
51 break;
53 std::swap(prism_nodes[0], prism_nodes[3]);
54 std::swap(prism_nodes[1], prism_nodes[4]);
55 std::swap(prism_nodes[2], prism_nodes[5]);
56 break;
57 case NO_SWAP:
58 default:
59 break;
60 }
61 EntityHandle prism;
62 CHKERR m_field.get_moab().create_element(MBPRISM, prism_nodes, 6, prism);
63 Range edges;
64 CHKERR m_field.get_moab().get_adjacencies(&prism, 1, 1, true, edges,
65 moab::Interface::UNION);
66 Range faces;
67 CHKERR m_field.get_moab().get_adjacencies(&prism, 1, 2, true, faces,
68 moab::Interface::UNION);
69 prisms.insert(prism);
70 for (int ee = 0; ee <= 2; ee++) {
71 EntityHandle e1;
72 CHKERR m_field.get_moab().side_element(prism, 1, ee, e1);
73 EntityHandle e2;
74 CHKERR m_field.get_moab().side_element(prism, 1, ee + 6, e2);
75 CHKERR m_field.get_moab().tag_set_data(cOre.get_th_RefParentHandle(), &e2,
76 1, &e1);
77 }
78 EntityHandle f3, f4;
79 {
80 CHKERR m_field.get_moab().side_element(prism, 2, 3, f3);
81 CHKERR m_field.get_moab().side_element(prism, 2, 4, f4);
82 CHKERR m_field.get_moab().tag_set_data(cOre.get_th_RefParentHandle(), &f4,
83 1, &f3);
84 }
85 if (number_nodes > 3) {
86 EntityHandle meshset;
87 CHKERR m_field.get_moab().create_meshset(MESHSET_SET, meshset);
88 CHKERR m_field.get_moab().add_entities(meshset, &f4, 1);
89 for (int ee = 0; ee <= 2; ee++) {
90 EntityHandle e2;
91 CHKERR m_field.get_moab().side_element(prism, 1, ee + 6, e2);
92 CHKERR m_field.get_moab().add_entities(meshset, &e2, 1);
93 }
94 CHKERR m_field.get_moab().convert_entities(meshset, true, false, false);
95 CHKERR m_field.get_moab().delete_entities(&meshset, 1);
96 const EntityHandle *conn_f4;
97 int number_nodes_f4 = 0;
98 CHKERR m_field.get_moab().get_connectivity(f4, conn_f4, number_nodes_f4,
99 false);
100 if (number_nodes_f4 != number_nodes) {
101 SETERRQ(PETSC_COMM_SELF, MOFEM_DATA_INCONSISTENCY,
102 "data inconsistency");
103 }
104 CHKERR m_field.get_moab().set_coords(&conn_f4[3], 3, &coords[9]);
105 }
106 }
108}
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:346
@ MOFEM_DATA_INCONSISTENCY
Definition: definitions.h:31
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:416
#define CHKERR
Inline error check.
Definition: definitions.h:535
DeprecatedCoreInterface Interface
Definition: Interface.hpp:1975
Tag get_th_RefParentHandle() const
Definition: Core.hpp:197
std::map< EntityHandle, EntityHandle > createdVertices

◆ createPrisms() [2/2]

DEPRECATED MoFEMErrorCode MoFEM::PrismsFromSurfaceInterface::createPrisms ( const Range ents,
Range prisms,
int  verb = -1 
)
Deprecated:
Use the function with the same name and a parameter swap_type, permitting to swap the order of each triangle's nodes or alternatively swap nodes between top and bottom triangles, which is required for the canonical ordering if surface normal is pointing inwards

Definition at line 15 of file PrismsFromSurfaceInterface.cpp.

16 {
18 CHKERR createPrisms(ents, NO_SWAP, prisms, verb);
20}
MoFEMErrorCode createPrisms(const Range &ents, const SwapType swap_type, Range &prisms, int verb=-1)
Make prisms from triangles.

◆ createPrismsFromPrisms()

MoFEMErrorCode MoFEM::PrismsFromSurfaceInterface::createPrismsFromPrisms ( const Range prisms,
bool  from_down,
Range out_prisms,
int  verb = -1 
)

Make prisms by extruding top or bottom prisms.

Parameters
prismsInput prisms
from_downUse top or down face, if true from f3
out_prismsReturned prisms entities
verbVerbosity level
Returns
Error code
Examples
prism_elements_from_surface.cpp.

Definition at line 143 of file PrismsFromSurfaceInterface.cpp.

144 {
146 Interface &m_field = cOre;
147 Range tris;
148 for (Range::iterator pit = prisms.begin(); pit != prisms.end(); pit++) {
149 EntityHandle face;
150 if (from_down) {
151 CHKERR m_field.get_moab().side_element(*pit, 2, 3, face);
152 } else {
153 CHKERR m_field.get_moab().side_element(*pit, 2, 4, face);
154 }
155 tris.insert(face);
156 }
157 CHKERR createPrisms(tris, NO_SWAP, out_prisms, verb);
159}

◆ query_interface()

MoFEMErrorCode MoFEM::PrismsFromSurfaceInterface::query_interface ( boost::typeindex::type_index  type_index,
UnknownInterface **  iface 
) const
virtual

Implements MoFEM::UnknownInterface.

Definition at line 9 of file PrismsFromSurfaceInterface.cpp.

10 {
11 *iface = const_cast<PrismsFromSurfaceInterface *>(this);
12 return 0;
13}
PrismsFromSurfaceInterface(const MoFEM::Core &core)

◆ seedPrismsEntities()

MoFEMErrorCode MoFEM::PrismsFromSurfaceInterface::seedPrismsEntities ( Range prisms,
const BitRefLevel bit,
int  verb = -1 
)

Seed prism entities by bit level.

Parameters
prismsRange of entities
bitBitRefLevel
verbVerbosity level
Returns
Error code
Examples
prism_elements_from_surface.cpp, and prism_polynomial_approximation.cpp.

Definition at line 110 of file PrismsFromSurfaceInterface.cpp.

111 {
112 Interface &m_field = cOre;
113 auto ref_ents_ptr = m_field.get_ref_ents();
115 MPI_Comm comm = m_field.get_comm();
116 RefEntity_multiIndex *refined_entities_ptr;
117 refined_entities_ptr =
118 const_cast<RefEntity_multiIndex *>(ref_ents_ptr);
119 if (!prisms.empty()) {
120 int dim = m_field.get_moab().dimension_from_handle(prisms[0]);
121 for (int dd = 0; dd <= dim; dd++) {
122 Range ents;
123 CHKERR m_field.get_moab().get_adjacencies(prisms, dd, true, ents,
124 moab::Interface::UNION);
125 Range::iterator eit = ents.begin();
126 for (; eit != ents.end(); eit++) {
127 std::pair<RefEntity_multiIndex::iterator, bool> p_ent =
128 refined_entities_ptr->insert(boost::shared_ptr<RefEntity>(
129 new RefEntity(m_field.get_basic_entity_data_ptr(), *eit)));
130 *(const_cast<RefEntity *>(p_ent.first->get())->getBitRefLevelPtr()) |=
131 bit;
132 if (verb >= VERY_VERBOSE) {
133 std::ostringstream ss;
134 ss << *(p_ent.first);
135 PetscSynchronizedPrintf(comm, "%s\n", ss.str().c_str());
136 }
137 }
138 }
139 }
141}
@ VERY_VERBOSE
Definition: definitions.h:210
const int dim
multi_index_container< boost::shared_ptr< RefEntity >, indexed_by< ordered_unique< tag< Ent_mi_tag >, const_mem_fun< RefEntity, EntityHandle, &RefEntity::getEnt > >, ordered_non_unique< tag< Ent_Ent_mi_tag >, const_mem_fun< RefEntity, EntityHandle, &RefEntity::getParentEnt > >, ordered_non_unique< tag< Composite_EntType_and_ParentEntType_mi_tag >, composite_key< RefEntity, const_mem_fun< RefEntity, EntityType, &RefEntity::getEntType >, const_mem_fun< RefEntity, EntityType, &RefEntity::getParentEntType > > >, ordered_non_unique< tag< Composite_ParentEnt_And_EntType_mi_tag >, composite_key< RefEntity, const_mem_fun< RefEntity, EntityType, &RefEntity::getEntType >, const_mem_fun< RefEntity, EntityHandle, &RefEntity::getParentEnt > > > > > RefEntity_multiIndex
auto bit
set bit
const Tensor2_symmetric_Expr< const ddTensor0< T, Dim, i, j >, typename promote< T, double >::V, Dim, i, j > dd(const Tensor0< T * > &a, const Index< i, Dim > index1, const Index< j, Dim > index2, const Tensor1< int, Dim > &d_ijk, const Tensor1< double, Dim > &d_xyz)
Definition: ddTensor0.hpp:33
RefEntityTmp< 0 > RefEntity
MoFEMErrorCode get_ref_ents(const RefEntity_multiIndex **refined_entities_ptr) const
Get ref entities multi-index from database.
Definition: Core.cpp:755

◆ setNormalThickness()

MoFEMErrorCode MoFEM::PrismsFromSurfaceInterface::setNormalThickness ( const Range prisms,
double  thickness3,
double  thickness4 
)

Set normal thickness

Parameters
prismsRange of prisms
thicknessnormal thickness
Returns

Definition at line 195 of file PrismsFromSurfaceInterface.cpp.

196 {
197 Interface &m_field = cOre;
199
200 auto add_normal = [&](std::map<EntityHandle, std::array<double, 3>> &nodes,
201 EntityHandle face) {
203 const EntityHandle *conn;
204 int number_nodes;
205 CHKERR m_field.get_moab().get_connectivity(face, conn, number_nodes, false);
206 std::array<double, 9> coords;
207 CHKERR m_field.get_moab().get_coords(conn, number_nodes, coords.data());
208 std::array<double, 3> normal;
209 CHKERR Tools::getTriNormal(coords.data(), normal.data());
210 double a = sqrt(normal[0] * normal[0] + normal[1] * normal[1] +
211 normal[2] * normal[2]);
212 for (auto d : {0, 1, 2})
213 normal[d] /= a;
214 for (auto n : {0, 1, 2}) {
215 try {
216 for (auto d : {0, 1, 2})
217 nodes.at(conn[n])[d] += normal[d];
218 } catch (...) {
219 nodes.insert(
220 std::pair<EntityHandle, std::array<double, 3>>(conn[n], normal));
221 }
222 }
224 };
225
226 auto apply_map = [&](auto &nodes, double t) {
228 for (auto &m : nodes) {
229 std::array<double, 3> coords;
230 CHKERR m_field.get_moab().get_coords(&m.first, 1, coords.data());
231 auto &normal = m.second;
232 double a = sqrt(normal[0] * normal[0] + normal[1] * normal[1] +
233 normal[2] * normal[2]);
234 for (auto d : {0, 1, 2})
235 coords[d] += (normal[d] / a) * t;
236 CHKERR m_field.get_moab().set_coords(&m.first, 1, coords.data());
237 }
239 };
240
241 map<EntityHandle, std::array<double, 3>> nodes_f3, nodes_f4;
242 for (Range::iterator pit = prisms.begin(); pit != prisms.end(); pit++) {
243 for (int ff = 3; ff <= 4; ff++) {
244 EntityHandle face;
245 CHKERR m_field.get_moab().side_element(*pit, 2, ff, face);
246 if (ff == 3)
247 CHKERR add_normal(nodes_f3, face);
248 else
249 CHKERR add_normal(nodes_f4, face);
250 }
251 }
252
253 CHKERR apply_map(nodes_f3, thickness3);
254 CHKERR apply_map(nodes_f4, thickness4);
255
257}
constexpr double a
#define MoFEMFunctionReturnHot(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:447
#define MoFEMFunctionBeginHot
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:440
FTensor::Index< 'n', SPACE_DIM > n
FTensor::Index< 'm', SPACE_DIM > m
const Tensor1_Expr< const dTensor0< T, Dim, i >, typename promote< T, double >::V, Dim, i > d(const Tensor0< T * > &a, const Index< i, Dim > index, const Tensor1< int, Dim > &d_ijk, const Tensor1< double, Dim > &d_xyz)
Definition: dTensor0.hpp:27
constexpr double t
plate stiffness
Definition: plate.cpp:59
static MoFEMErrorCode getTriNormal(const double *coords, double *normal)
Get the Tri Normal objectGet triangle normal.
Definition: Tools.cpp:350

◆ setThickness()

MoFEMErrorCode MoFEM::PrismsFromSurfaceInterface::setThickness ( const Range prisms,
const double  director3[],
const double  director4[] 
)

Set uniform thickness

Parameters
prismsRange of prisms
director3Displacement of face 3
director4Displacement of face 4
Returns
Examples
prism_elements_from_surface.cpp.

Definition at line 161 of file PrismsFromSurfaceInterface.cpp.

162 {
164 Interface &m_field = cOre;
165 Range nodes_f3, nodes_f4;
166 for (Range::iterator pit = prisms.begin(); pit != prisms.end(); pit++) {
167 for (int ff = 3; ff <= 4; ff++) {
168 EntityHandle face;
169 CHKERR m_field.get_moab().side_element(*pit, 2, ff, face);
170 const EntityHandle *conn;
171 int number_nodes = 0;
172 CHKERR m_field.get_moab().get_connectivity(face, conn, number_nodes,
173 false);
174 if (ff == 3) {
175 nodes_f3.insert(&conn[0], &conn[number_nodes]);
176 } else {
177 nodes_f4.insert(&conn[0], &conn[number_nodes]);
178 }
179 }
180 }
181 double coords[3];
182 for (Range::iterator nit = nodes_f3.begin(); nit != nodes_f3.end(); nit++) {
183 CHKERR m_field.get_moab().get_coords(&*nit, 1, coords);
184 cblas_daxpy(3, 1, director3, 1, coords, 1);
185 CHKERR m_field.get_moab().set_coords(&*nit, 1, coords);
186 }
187 for (Range::iterator nit = nodes_f4.begin(); nit != nodes_f4.end(); nit++) {
188 CHKERR m_field.get_moab().get_coords(&*nit, 1, coords);
189 cblas_daxpy(3, 1, director4, 1, coords, 1);
190 CHKERR m_field.get_moab().set_coords(&*nit, 1, coords);
191 }
193}

◆ updateMeshestByEdgeBlock()

MoFEMErrorCode MoFEM::PrismsFromSurfaceInterface::updateMeshestByEdgeBlock ( const Range prisms)

Add quads to bockset.

If quad is adjacent to extruded edge, is added to given blockset

Parameters
prisms
Returns
MoFEMErrorCode

Definition at line 260 of file PrismsFromSurfaceInterface.cpp.

260 {
261 Interface &m_field = cOre;
263 Range prisms_edges;
264 CHKERR m_field.get_moab().get_adjacencies(prisms, 1, true, prisms_edges,
265 moab::Interface::UNION);
266 Range prisms_faces;
267 CHKERR m_field.get_moab().get_adjacencies(prisms, 2, true, prisms_faces,
268 moab::Interface::UNION);
269 for (_IT_CUBITMESHSETS_FOR_LOOP_(m_field, it)) {
270 Range edges;
271 CHKERR m_field.get_moab().get_entities_by_type(it->meshset, MBEDGE, edges,
272 true);
273 edges = intersect(edges, prisms_edges);
274 if (!edges.empty()) {
275 Range edges_faces;
276 CHKERR m_field.get_moab().get_adjacencies(edges, 2, false, edges_faces,
277 moab::Interface::UNION);
278 edges_faces = intersect(edges_faces, prisms_faces.subset_by_type(MBQUAD));
279 EntityHandle meshset = it->getMeshset();
280 CHKERR m_field.get_moab().add_entities(meshset, edges_faces);
281 }
282 }
284}
#define _IT_CUBITMESHSETS_FOR_LOOP_(MESHSET_MANAGER, IT)
Iterator that loops over all the Cubit MeshSets in a moFEM field.

◆ updateMeshestByTriBlock()

MoFEMErrorCode MoFEM::PrismsFromSurfaceInterface::updateMeshestByTriBlock ( const Range prisms)

Add prism to bockset.

If prism is adjacent to extruded triangle, is added to given blockset

Parameters
prisms
Returns
MoFEMErrorCode

Definition at line 287 of file PrismsFromSurfaceInterface.cpp.

287 {
288 Interface &m_field = cOre;
290 Range prisms_tris;
291 CHKERR m_field.get_moab().get_adjacencies(prisms, 2, true, prisms_tris,
292 moab::Interface::UNION);
293 prisms_tris = prisms_tris.subset_by_type(MBTRI);
294 for (_IT_CUBITMESHSETS_FOR_LOOP_(m_field, it)) {
295 Range tris;
296 CHKERR m_field.get_moab().get_entities_by_type(it->meshset, MBTRI, tris,
297 true);
298 tris = intersect(tris, prisms_tris);
299 if (!tris.empty()) {
300 Range tris_ents;
301 CHKERR m_field.get_moab().get_adjacencies(tris, 3, false, tris_ents,
302 moab::Interface::UNION);
303 tris_ents = intersect(tris_ents, prisms);
304 EntityHandle meshset = it->getMeshset();
305 CHKERR m_field.get_moab().add_entities(meshset, tris_ents);
306 }
307 }
309}

Member Data Documentation

◆ cOre

MoFEM::Core& MoFEM::PrismsFromSurfaceInterface::cOre

Definition at line 20 of file PrismsFromSurfaceInterface.hpp.

◆ createdVertices

std::map<EntityHandle, EntityHandle> MoFEM::PrismsFromSurfaceInterface::createdVertices

The documentation for this struct was generated from the following files: