v0.15.0
Loading...
Searching...
No Matches
dm_mofem.cpp
Go to the documentation of this file.
1/** \file dm_mofem.cpp
2
3 \brief Atom test for Data Manager Interface in MoFEM
4
5*/
6
7#include <MoFEM.hpp>
8
9using namespace MoFEM;
10
11static char help[] = "...\n\n";
12
13int main(int argc, char *argv[]) {
14
15 // initialize petsc
16 MoFEM::Core::Initialize(&argc, &argv, (char *)0, help);
17
18 try {
19
20 PetscBool flg = PETSC_TRUE;
21 char mesh_file_name[255];
22#if PETSC_VERSION_GE(3, 6, 4)
23 CHKERR PetscOptionsGetString(PETSC_NULLPTR, "", "-my_file", mesh_file_name,
24 255, &flg);
25#else
26 CHKERR PetscOptionsGetString(PETSC_NULLPTR, PETSC_NULLPTR, "-my_file",
27 mesh_file_name, 255, &flg);
28#endif
29 if (flg != PETSC_TRUE) {
30 SETERRQ(PETSC_COMM_SELF, 1, "*** ERROR -my_file (MESH FILE NEEDED)");
31 }
32 const char *option;
33 option = "";
34
35 // register new dm type, i.e. mofem
36 DMType dm_name = "DMMOFEM";
37 CHKERR DMRegister_MoFEM(dm_name);
38
39 // Create dm instance
40 DM dm;
41 CHKERR DMCreate(PETSC_COMM_WORLD, &dm);
42 CHKERR DMSetType(dm, dm_name);
43
44 // read mesh and create moab and mofem data structures
45 moab::Core mb_instance;
46 moab::Interface &moab = mb_instance;
47 CHKERR moab.load_file(mesh_file_name, 0, option);
48 MoFEM::Core core(moab);
49 MoFEM::Interface &m_field = core;
50
51 EntityHandle root_set = moab.get_root_set();
52 // add all entities to database, all of them will be used
53 BitRefLevel bit_level0;
54 bit_level0.set(0);
55 CHKERR m_field.getInterface<BitRefManager>()->setBitRefLevelByDim(
56 root_set, 3, bit_level0);
57 // define & build field
58 const int field_rank = 1;
59 CHKERR m_field.add_field("FIELD", H1, AINSWORTH_LEGENDRE_BASE, field_rank);
60 // add entities to field
61 CHKERR m_field.add_ents_to_field_by_type(root_set, MBTET, "FIELD");
62 // set app. order
63 int order = 4;
64 CHKERR m_field.set_field_order(root_set, MBTET, "FIELD", order);
65 CHKERR m_field.set_field_order(root_set, MBTRI, "FIELD", order);
66 CHKERR m_field.set_field_order(root_set, MBEDGE, "FIELD", order);
67 CHKERR m_field.set_field_order(root_set, MBVERTEX, "FIELD", 1);
68 // build data structures for fields
69 CHKERR m_field.build_fields();
70
71 // define & build finite elements
72 CHKERR m_field.add_finite_element("FE");
73 // Define rows/cols and element data
74 CHKERR m_field.modify_finite_element_add_field_row("FE", "FIELD");
75 CHKERR m_field.modify_finite_element_add_field_col("FE", "FIELD");
76 CHKERR m_field.modify_finite_element_add_field_data("FE", "FIELD");
77 // add entities to finite element
78 CHKERR m_field.add_ents_to_finite_element_by_type(root_set, MBTET, "FE");
79 // build finite elements
81 // build adjacencies
82 CHKERR m_field.build_adjacencies(bit_level0);
83
84 // set dm data structure which created mofem data structures
85 CHKERR DMMoFEMCreateMoFEM(dm, &m_field, dm_name, bit_level0);
86 CHKERR DMSetFromOptions(dm);
87 CHKERR DMMoFEMAddElement(dm, "FE");
88 CHKERR DMSetUp(dm);
89
90 Mat m;
91 Vec l, g;
92
93 CHKERR DMCreateGlobalVector(dm, &g);
94 CHKERR DMCreateLocalVector(dm, &l);
95 CHKERR DMCreateMatrix(dm, &m);
96
97 // glob loc
98 CHKERR VecSet(g, 1.1);
99 CHKERR VecGhostUpdateBegin(g, INSERT_VALUES, SCATTER_FORWARD);
100 CHKERR VecGhostUpdateEnd(g, INSERT_VALUES, SCATTER_FORWARD);
101
102 CHKERR DMGlobalToLocalBegin(dm, g, ADD_VALUES, l);
103 CHKERR DMGlobalToLocalEnd(dm, g, ADD_VALUES, l);
104
105 // loc glob
106 CHKERR DMLocalToGlobalBegin(dm, l, ADD_VALUES, g);
107 CHKERR DMLocalToGlobalEnd(dm, l, ADD_VALUES, g);
108
109 CHKERR DMoFEMMeshToLocalVector(dm, g, INSERT_VALUES, SCATTER_REVERSE);
110
111 CHKERR VecDestroy(&g);
112 CHKERR VecDestroy(&l);
113 CHKERR MatDestroy(&m);
114
115 FILE *file = std::fopen("dm_mofem.txt", "w");
116 if (file == nullptr) {
117 SETERRQ(PETSC_COMM_WORLD, MOFEM_OPERATION_UNSUCCESSFUL,
118 "Failed to open file for logging");
119 }
120
121 EntityMethod method;
122 method.preProcessHook = [&]() {
124
125 // View to file
126 auto core_log = logging::core::get();
127 core_log->add_sink(LogManager::createSink(
128 LogManager::getStrmSync(m_field.get_comm(), file),
129 "LOG_TEST_METHOD"));
130 LogManager::setLog("LOG_TEST_METHOD");
131
132 MOFEM_LOG("LOG_TEST_METHOD", Sev::inform)
133 << "Pre-processing for DM MoFEM test started";
135 };
136 method.operatorHook = [&]() {
138 MOFEM_LOG("LOG_TEST_METHOD", Sev::inform)
139 << *method.entPtr << " : " << method.entPtr->getEntFieldData();
141 };
142 method.postProcessHook = [&]() {
144 MOFEM_LOG("LOG_TEST_METHOD", Sev::inform)
145 << "Post-processing for DM MoFEM test finished";
146 MOFEM_LOG_FILE_SYNCHRONISE(m_field.get_comm(), file);
148 };
149
150 CHKERR m_field.loop_entities(dm_name, "FIELD", ROW, method, 0,
151 m_field.get_comm_size());
152
153 // Always close the file
154 std::fclose(file);
155
156 // destroy dm
157 CHKERR DMDestroy(&dm);
158 }
160
161 // finish work cleaning memory, getting statistics, ect.
163
164 return 0;
165}
#define MOFEM_LOG_FILE_SYNCHRONISE(comm, fd)
Synchronise "SYNC" channel.
int main()
@ ROW
#define CATCH_ERRORS
Catch errors.
@ AINSWORTH_LEGENDRE_BASE
Ainsworth Cole (Legendre) approx. base nme:nme847.
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 ...
@ MOFEM_OPERATION_UNSUCCESSFUL
Definition definitions.h:34
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
#define CHKERR
Inline error check.
constexpr int order
static char help[]
Definition dm_mofem.cpp:11
PetscErrorCode DMMoFEMAddElement(DM dm, std::string fe_name)
add element to dm
Definition DMMoFEM.cpp:488
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.
Definition DMMoFEM.cpp:114
PetscErrorCode DMoFEMMeshToLocalVector(DM dm, Vec l, InsertMode mode, ScatterMode scatter_mode)
set local (or ghosted) vector values on mesh for partition only
Definition DMMoFEM.cpp:514
PetscErrorCode DMRegister_MoFEM(const char sname[])
Register MoFEM problem.
Definition DMMoFEM.cpp:43
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_row(const std::string &fe_name, const std::string name_row)=0
set field row which finite element use
virtual MoFEMErrorCode modify_finite_element_add_field_data(const std::string &fe_name, const std::string name_field)=0
set finite element field data
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_entities(const std::string field_name, EntityMethod &method, Range const *const ents=nullptr, int verb=DEFAULT_VERBOSITY)=0
Loop over field entities.
static LoggerType & setLog(const std::string channel)
Set ans resset chanel logger.
#define MOFEM_LOG(channel, severity)
Log.
FTensor::Index< 'l', 3 > l
char mesh_file_name[255]
std::bitset< BITREFLEVEL_SIZE > BitRefLevel
Bit structure attached to each entity identifying to what mesh entity is attached.
Definition Types.hpp:40
implementation of Data Operators for Forces and Sources
Definition Common.hpp:10
PetscErrorCode PetscOptionsGetString(PetscOptions *, const char pre[], const char name[], char str[], size_t size, PetscBool *set)
constexpr double g
FTensor::Index< 'm', 3 > m
boost::function< MoFEMErrorCode()> preProcessHook
Hook function for pre-processing.
boost::function< MoFEMErrorCode()> operatorHook
Hook function for operator.
boost::function< MoFEMErrorCode()> postProcessHook
Hook function for post-processing.
Managing BitRefLevels.
virtual int get_comm_size() const =0
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.
virtual MPI_Comm & get_comm() const =0
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:118
Deprecated interface functions.
Data structure to exchange data between mofem and User Loop Methods on entities.
boost::shared_ptr< FieldEntity > entPtr
static boost::shared_ptr< SinkType > createSink(boost::shared_ptr< std::ostream > stream_ptr, std::string comm_filter)
Create a sink object.
static boost::shared_ptr< std::ostream > getStrmSync()
Get the strm sync object.
MoFEMErrorCode getInterface(IFACE *&iface) const
Get interface reference to pointer of interface.