 |
| v0.14.0
|
Go to the documentation of this file.
25 const int nb_gauss_pts = face_ptr_fe->
gaussPts.size2();
26 gaussPts.resize(4, nb_gauss_pts,
false);
29 constexpr
double tet_coords[12] = {0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1};
30 constexpr
double hex_coords[24] = {0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0,
31 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1};
33 auto set_gauss = [&](
auto &
coords) {
36 auto &data = *face_ptr_fe->dataOnElement[
H1];
37 auto t_base = data.dataOnEntities[MBVERTEX][0].getFTensor0N(
NOBASE);
40 for (
int gg = 0; gg != nb_gauss_pts; ++gg) {
45 t_gauss_coords(
i) += t_base * t_coords(
i);
49 gaussPts(3, gg) = face_ptr_fe->gaussPts(2, gg);
56 CHKERR set_gauss(tet_coords);
59 CHKERR set_gauss(hex_coords);
63 "Element type not implemented: %d",
type);
75 "User operator and finite element do not work together");
96 const auto nb_nodes_on_ele = CN::VerticesPerEntity(
type);
103 auto sit = side_table.get<0>().find(face_entity);
104 if (sit == side_table.get<0>().end())
106 "Face can not be found on volume element");
118 conn, find(
conn, &
conn[nb_nodes_on_ele], face_ptr_fe->conn[nn]));
122 "No common node on face and element can not be found");
#define MoFEMFunctionReturnHot(a)
Last executable line of each PETSc function used for error handling. Replaces return()
bool operatorImplCalled
flag to check if operatorImpl was called
std::array< int, 4 > faceConnMap
int nbNodesOnFace
Number of nodes on face.
MoFEMErrorCode setPtrFE(ForcesAndSourcesCore *ptr)
PetscErrorCode MoFEMErrorCode
MoFEM/PETSc error code.
ForcesAndSourcesCore * sidePtrFE
Element to integrate on the sides.
std::array< int, 8 > tetConnMap
MoFEMErrorCode operatorImpl()
#define CHKERR
Inline error check.
virtual moab::Interface & get_moab()=0
implementation of Data Operators for Forces and Sources
multi_index_container< boost::shared_ptr< SideNumber >, indexed_by< ordered_unique< member< SideNumber, EntityHandle, &SideNumber::ent > >, ordered_non_unique< composite_key< SideNumber, const_mem_fun< SideNumber, EntityType, &SideNumber::getEntType >, member< SideNumber, signed char, &SideNumber::side_number > > > > > SideNumber_multiIndex
SideNumber_multiIndex for SideNumber.
const EntityHandle * conn
MoFEMErrorCode operator()()
Get side and sense and call operator from derived class.
int faceSideNumber
Face side number.
MoFEMErrorCode setGaussPts(int order)
FTensor::Index< 'i', SPACE_DIM > i
structure to get information form mofem into EntitiesFieldData
@ MOFEM_DATA_INCONSISTENCY
MatrixDouble gaussPts
Matrix of integration points.
boost::shared_ptr< const NumeredEntFiniteElement > numeredEntFiniteElementPtr
#define MoFEMFunctionBeginHot
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
MoFEMErrorCode operator()()
function is run for every finite element
Base volume element used to integrate on skeleton.
int faceSense
Sense of face, could be 1 or -1.
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
ForcesAndSourcesCore * ptrFE
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...