v0.13.2
Loading...
Searching...
No Matches
Functions | Variables
build_large_problem.cpp File Reference
#include <MoFEM.hpp>

Go to the source code of this file.

Functions

int main (int argc, char *argv[])
 

Variables

static char help [] = "...\n\n"
 

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)

Definition at line 11 of file build_large_problem.cpp.

11 {
12
13 MoFEM::Core::Initialize(&argc, &argv, (char *)0, help);
14
15 try {
16
17 moab::Core mb_instance;
18 moab::Interface &moab = mb_instance;
19 int rank;
20 MPI_Comm_rank(PETSC_COMM_WORLD, &rank);
21
22 PetscBool flg = PETSC_TRUE;
23 char mesh_file_name[255];
24
25#if PETSC_VERSION_GE(3, 6, 4)
26 CHKERR PetscOptionsGetString(PETSC_NULL, "", "-my_file", mesh_file_name,
27 255, &flg);
28#else
29 CHKERR PetscOptionsGetString(PETSC_NULL, PETSC_NULL, "-my_file",
30 mesh_file_name, 255, &flg);
31#endif
32
33 if (flg != PETSC_TRUE)
34 SETERRQ1(PETSC_COMM_SELF, MOFEM_NOT_FOUND, "file not found -my_file %s",
36
37 CHKERR moab.load_file(mesh_file_name, 0, "");
38
39 // Create MoFEM database
40 MoFEM::Core core(moab);
41 MoFEM::Interface &m_field = core;
42
43 // set entities bit level
44 CHKERR m_field.getInterface<BitRefManager>()->setBitRefLevelByDim(
45 0, 3, BitRefLevel().set(0));
46
47 // fields
49 MB_TAG_DENSE);
50
51 // meshset consisting all entities in mesh
52 EntityHandle root_set = moab.get_root_set();
53 // add entities to field
54 CHKERR m_field.add_ents_to_field_by_type(root_set, MBVERTEX, "F1");
55 CHKERR m_field.add_ents_to_field_by_type(root_set, MBEDGE, "F1");
56 CHKERR m_field.add_ents_to_field_by_type(root_set, MBTRI, "F1");
57 CHKERR m_field.add_ents_to_field_by_type(root_set, MBTET, "F1");
58
59 // set app. order
60 constexpr int order = 3;
61 CHKERR m_field.set_field_order(root_set, MBVERTEX, "F1", 1);
62 CHKERR m_field.set_field_order(root_set, MBEDGE, "F1", order);
63 CHKERR m_field.set_field_order(root_set, MBTRI, "F1", order);
64 CHKERR m_field.set_field_order(root_set, MBTET, "F1", order);
65
66 CHKERR m_field.build_fields();
67
68 // add elements
69 CHKERR m_field.add_finite_element("E1");
73 CHKERR m_field.add_ents_to_finite_element_by_type(root_set, MBTET, "E1");
75 CHKERR m_field.build_adjacencies(BitRefLevel().set(0));
76
77 // Problems
78 CHKERR m_field.add_problem("P1");
80 CHKERR m_field.modify_problem_add_finite_element("P1", "E1");
81
82 // build problems
83 auto prb_mng_ptr = m_field.getInterface<ProblemsManager>();
84 CHKERR m_field.getInterface(prb_mng_ptr);
85 CHKERR prb_mng_ptr->buildProblem("P1", true);
86 CHKERR prb_mng_ptr->partitionProblem("P1");
87 CHKERR prb_mng_ptr->partitionFiniteElements("P1");
88 CHKERR prb_mng_ptr->partitionGhostDofs("P1");
89
90 MOFEM_LOG_CHANNEL("WORLD");
91 MOFEM_LOG("WORLD", Sev::inform) << "Create matrix";
94 ->createMPIAIJWithArrays<PetscGlobalIdx_mi_tag>("P1", A);
95 MOFEM_LOG_CHANNEL("WORLD");
96 MOFEM_LOG("WORLD", Sev::inform) << "Done";
97
98 auto fe_ptr = boost::make_shared<FEMethod>();
99
100 auto pre_proc_hook = [&]() {
103 };
104
105 auto post_proc_hook = [&]() {
108 };
109
110 auto op_hook = [&]() {
112
113 MOFEM_LOG_CHANNEL("WORLD");
114 MOFEM_LOG("WORLD", Sev::verbose)
115 << "Iterate finite element " << *(fe_ptr->numeredEntFiniteElementPtr);
116
117 auto row_dofs = fe_ptr->getRowDofsPtr();
118 for (auto &dof : *row_dofs)
119 MOFEM_LOG("WORLD", Sev::noisy) << *dof << endl;
120
122 };
123
124 fe_ptr->preProcessHook = pre_proc_hook;
125 fe_ptr->postProcessHook = post_proc_hook;
126 fe_ptr->operatorHook = op_hook;
127
128 MOFEM_LOG_CHANNEL("WORLD");
129 MOFEM_LOG("WORLD", Sev::inform) << "Iterate finite elements";
130 CHKERR m_field.loop_finite_elements("P1", "E1", *fe_ptr);
131 MOFEM_LOG("WORLD", Sev::inform) << "Done";
132
134 using VolOp = VolumeElementForcesAndSourcesCore::UserDataOperator;
136
137 auto vol_ptr = boost::make_shared<Vol>(m_field);
138
139 struct Op : public VolOp {
140
141 Op() : VolOp("F1", VolOp::OPROWCOL, true) {}
142
143 MoFEMErrorCode doWork(int row_side, int col_side, EntityType row_type,
144 EntityType col_type, EntData &row_data,
145 EntData &col_data) {
146 return 0;
147 };
148 };
149
150 vol_ptr->getOpPtrVector().push_back(new Op());
151
152 MOFEM_LOG_CHANNEL("WORLD");
153 MOFEM_LOG("WORLD", Sev::inform) << "Iterate volume finite elements";
154 CHKERR m_field.loop_finite_elements("P1", "E1", *vol_ptr);
155 MOFEM_LOG("WORLD", Sev::inform) << "Done";
156
157 }
159
160 // finish work cleaning memory, getting statistics, etc.
162
163 return 0;
164}
static char help[]
#define CATCH_ERRORS
Catch errors.
Definition: definitions.h:372
@ AINSWORTH_LEGENDRE_BASE
Ainsworth Cole (Legendre) approx. base .
Definition: definitions.h:60
@ H1
continuous field
Definition: definitions.h:85
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:346
@ MOFEM_NOT_FOUND
Definition: definitions.h:33
#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
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.
#define MOFEM_LOG(channel, severity)
Log.
Definition: LogManager.hpp:308
#define MOFEM_LOG_CHANNEL(channel)
Set and reset channel.
Definition: LogManager.hpp:284
virtual MoFEMErrorCode loop_finite_elements(const std::string problem_name, const std::string &fe_name, FEMethod &method, boost::shared_ptr< NumeredEntFiniteElement_multiIndex > fe_ptr=nullptr, MoFEMTypes bh=MF_EXIST, CacheTupleWeakPtr cache_ptr=CacheTupleSharedPtr(), int verb=DEFAULT_VERBOSITY)=0
Make a loop over finite elements.
virtual MoFEMErrorCode add_problem(const std::string &name, enum MoFEMTypes bh=MF_EXCL, int verb=DEFAULT_VERBOSITY)=0
Add problem.
virtual MoFEMErrorCode modify_problem_ref_level_add_bit(const std::string &name_problem, const BitRefLevel &bit)=0
add ref level to problem
virtual MoFEMErrorCode modify_problem_add_finite_element(const std::string name_problem, const std::string &fe_name)=0
add finite element to problem, this add entities assigned to finite element to a particular problem
char mesh_file_name[255]
PetscErrorCode MoFEMErrorCode
MoFEM/PETSc error code.
Definition: Exceptions.hpp:56
std::bitset< BITREFLEVEL_SIZE > BitRefLevel
Bit structure attached to each entity identifying to what mesh entity is attached.
Definition: Types.hpp:40
PetscErrorCode PetscOptionsGetString(PetscOptions *, const char pre[], const char name[], char str[], size_t size, PetscBool *set)
constexpr AssemblyType A
Managing BitRefLevels.
virtual MoFEMErrorCode build_adjacencies(const Range &ents, int verb=DEFAULT_VERBOSITY)=0
build adjacencies
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.
Core (interface) class.
Definition: Core.hpp:82
static MoFEMErrorCode Initialize(int *argc, char ***args, const char file[], const char help[])
Initializes the MoFEM database PETSc, MOAB and MPI.
Definition: Core.cpp:72
static MoFEMErrorCode Finalize()
Checks for options to be called at the conclusion of the program.
Definition: Core.cpp:112
Deprecated interface functions.
Data on single entity (This is passed as argument to DataOperator::doWork)
Matrix manager is used to build and partition problems.
Problem manager is used to build and partition problems.
intrusive_ptr for managing petsc objects
MoFEMErrorCode getInterface(IFACE *&iface) const
Get interface refernce to pointer of interface.
MoFEMErrorCode doWork(int side, EntityType type, EntitiesFieldData::EntData &data)

Variable Documentation

◆ help

char help[] = "...\n\n"
static

Definition at line 9 of file build_large_problem.cpp.