39 {
40
42
43 try {
44
45 moab::Core mb_instance;
46 moab::Interface &moab = mb_instance;
47 int rank;
48 MPI_Comm_rank(PETSC_COMM_WORLD, &rank);
49
50 PetscBool flg = PETSC_TRUE;
52#if PETSC_VERSION_GE(3, 6, 4)
54 255, &flg);
55#else
58#endif
59 if (flg != PETSC_TRUE) {
60 SETERRQ(PETSC_COMM_SELF, 1, "*** ERROR -my_file (MESH FILE NEEDED)");
61 }
62
63 const char *option;
64 option = "";
66
67
68
69
70
71
72
75
76
78 3);
79
80
83 "MESH_NODE_POSITIONS");
85 "MESH_NODE_POSITIONS");
87 "MESH_NODE_POSITIONS");
88
90 bit_level0.set(0);
92 0, 3, bit_level0);
94 CHKERR moab.get_entities_by_type(0, MBTET, tets,
true);
96 CHKERR moab.get_entities_by_type(0, MBEDGE, edges,
true);
98
99
105
106
108
109
111
113
115
118
125
128
129 auto fe_ptr =
130 boost::make_shared<VolumeElementForcesAndSourcesCore>(m_field);
131 auto material_grad_mat = boost::make_shared<MatrixDouble>();
132 auto material_det_vec = boost::make_shared<VectorDouble>();
133 fe_ptr->meshPositionsFieldName = "none";
135 "MESH_NODE_POSITIONS", material_grad_mat));
136 fe_ptr->getOpPtrVector().push_back(
138 fe_ptr->getOpPtrVector().push_back(
new OpSetHOWeights(material_det_vec));
140
142
143 double vol;
144 CHKERR VecAssemblyBegin(vol_vec);
145 CHKERR VecAssemblyEnd(vol_vec);
146 CHKERR VecSum(vol_vec, &vol);
147 CHKERR PetscPrintf(PETSC_COMM_WORLD,
"vol = %3.8e\n", vol);
148 if (fabs(vol - 1.0) > 1e-4)
150 }
152
154}
#define CATCH_ERRORS
Catch errors.
@ AINSWORTH_LEGENDRE_BASE
Ainsworth Cole (Legendre) approx. base .
@ MOFEM_ATOM_TEST_INVALID
#define CHKERR
Inline error check.
PetscErrorCode DMMoFEMSetIsPartitioned(DM dm, PetscBool is_partitioned)
PetscErrorCode DMMoFEMAddElement(DM dm, std::string fe_name)
add element to dm
PetscErrorCode DMMoFEMCreateMoFEM(DM dm, MoFEM::Interface *m_field_ptr, const char problem_name[], const MoFEM::BitRefLevel bit_level, const MoFEM::BitRefLevel bit_mask=MoFEM::BitRefLevel().set())
Must be called by user to set MoFEM data structures.
PetscErrorCode DMRegister_MoFEM(const char sname[])
Register MoFEM problem.
PetscErrorCode DMoFEMLoopFiniteElements(DM dm, const char fe_name[], MoFEM::FEMethod *method, CacheTupleWeakPtr cache_ptr=CacheTupleSharedPtr())
Executes FEMethod for finite elements in DM.
PetscErrorCode DMSetUp_MoFEM(DM dm)
virtual MoFEMErrorCode add_finite_element(const std::string &fe_name, enum MoFEMTypes bh=MF_EXCL, int verb=DEFAULT_VERBOSITY)=0
add finite element
virtual MoFEMErrorCode build_finite_elements(int verb=DEFAULT_VERBOSITY)=0
Build finite elements.
virtual MoFEMErrorCode modify_finite_element_add_field_col(const std::string &fe_name, const std::string name_row)=0
set field col which finite element use
virtual MoFEMErrorCode add_ents_to_finite_element_by_type(const EntityHandle entities, const EntityType type, const std::string &name, const bool recursive=true)=0
add entities to finite element
virtual MoFEMErrorCode modify_finite_element_add_field_data(const std::string &fe_name, const std::string name_filed)=0
set finite element field data
virtual MoFEMErrorCode modify_finite_element_add_field_row(const std::string &fe_name, const std::string name_row)=0
set field row which finite element use
virtual MoFEMErrorCode build_fields(int verb=DEFAULT_VERBOSITY)=0
virtual MoFEMErrorCode set_field_order(const EntityHandle meshset, const EntityType type, const std::string &name, const ApproximationOrder order, int verb=DEFAULT_VERBOSITY)=0
Set order approximation of the entities in the field.
virtual MoFEMErrorCode add_ents_to_field_by_type(const Range &ents, const EntityType type, const std::string &name, int verb=DEFAULT_VERBOSITY)=0
Add entities to field meshset.
virtual MoFEMErrorCode loop_dofs(const Problem *problem_ptr, const std::string &field_name, RowColData rc, DofMethod &method, int lower_rank, int upper_rank, int verb=DEFAULT_VERBOSITY)=0
Make a loop over dofs.
std::bitset< BITREFLEVEL_SIZE > BitRefLevel
Bit structure attached to each entity identifying to what mesh entity is attached.
auto createSmartVectorMPI(MPI_Comm comm, PetscInt n, PetscInt N)
Create MPI Vector.
auto createSmartDM(MPI_Comm comm, const std::string dm_type_name)
Creates smart DM object.
PetscErrorCode PetscOptionsGetString(PetscOptions *, const char pre[], const char name[], char str[], size_t size, PetscBool *set)
virtual MoFEMErrorCode build_adjacencies(const Range &ents, int verb=DEFAULT_VERBOSITY)=0
build adjacencies
virtual MPI_Comm & get_comm() const =0
virtual MoFEMErrorCode add_field(const std::string &name, const FieldSpace space, const FieldApproximationBase base, const FieldCoefficientsNumber nb_of_coefficients, const TagType tag_type=MB_TAG_SPARSE, const enum MoFEMTypes bh=MF_EXCL, int verb=DEFAULT_VERBOSITY)=0
Add field.
virtual int get_comm_rank() const =0
static MoFEMErrorCode Initialize(int *argc, char ***args, const char file[], const char help[])
Initializes the MoFEM database PETSc, MOAB and MPI.
static MoFEMErrorCode Finalize()
Checks for options to be called at the conclusion of the program.
Deprecated interface functions.
Get field gradients at integration pts for scalar filed rank 0, i.e. vector field.
Set inverse jacobian to base functions.
Projection of edge entities with one mid-node on hierarchical basis.
MoFEMErrorCode getInterface(IFACE *&iface) const
Get interface refernce to pointer of interface.