21 {
22
23 const string default_options = "-ksp_type fgmres \n"
24 "-pc_type lu \n"
25 "-pc_factor_mat_solver_type mumps \n"
26 "-mat_mumps_icntl_20 0 \n"
27 "-ksp_monitor \n";
28
29 string param_file = "param_file.petsc";
30 if (!static_cast<bool>(ifstream(param_file))) {
31 std::ofstream
file(param_file.c_str(), std::ios::ate);
33 file << default_options;
35 }
36 }
37
39
40 try {
41
42 moab::Core mb_instance;
43 moab::Interface &moab = mb_instance;
44 int rank;
45 MPI_Comm_rank(PETSC_COMM_WORLD, &rank);
46
47 PetscBool flg = PETSC_TRUE;
48 char mesh_file_name[255];
50 mesh_file_name, 255, &flg);
51 if (flg != PETSC_TRUE) {
53 "*** ERROR -my_file (MESH FILE NEEDED)");
54 }
55
56 const char *option;
57 option = "";
58 CHKERR moab.load_file(mesh_file_name, 0, option);
59
60
63
64
66 bit_level0.set(0);
67 EntityHandle meshset_level0;
68 CHKERR moab.create_meshset(MESHSET_SET, meshset_level0);
70 0, 3, bit_level0);
71
72
74
75
77
78
80 bit_level0);
81
82
83 EntityHandle root_set = moab.get_root_set();
84
86
87
88
89
92 &flg);
93 if (flg != PETSC_TRUE) {
95 }
96
101
103 3);
105 "MESH_NODE_POSITIONS");
110
112 CHKERR thermal_elements.addThermalElements(
"TEMP");
113 CHKERR thermal_elements.addThermalFluxElement(
"TEMP");
114 CHKERR thermal_elements.addThermalConvectionElement(
"TEMP");
115
117 "THERMAL_FE");
119 "THERMAL_FLUX_FE");
121 "THERMAL_CONVECTION_FE");
122
123
124
125
127
129
131
134
136
138 "MESH_NODE_POSITIONS");
140
141
142
143
146
148
156 ->createMPIAIJWithArrays<PetscGlobalIdx_mi_tag>("THERMAL_PROBLEM", &A);
157
159
161 thermal_elements.getLoopFeRhs().getOpPtrVector(), {H1},
162 "MESH_NODE_POSITIONS");
164 thermal_elements.getLoopFeLhs().getOpPtrVector(), {H1},
165 "MESH_NODE_POSITIONS");
166
167 CHKERR thermal_elements.setThermalFiniteElementRhsOperators(
"TEMP",
F);
168 CHKERR thermal_elements.setThermalFiniteElementLhsOperators(
"TEMP", A);
169 CHKERR thermal_elements.setThermalFluxFiniteElementRhsOperators(
"TEMP",
F);
170 CHKERR thermal_elements.setThermalConvectionFiniteElementLhsOperators(
171 "TEMP", A);
172 CHKERR thermal_elements.setThermalConvectionFiniteElementRhsOperators(
174
176 CHKERR VecGhostUpdateBegin(T, INSERT_VALUES, SCATTER_FORWARD);
177 CHKERR VecGhostUpdateEnd(T, INSERT_VALUES, SCATTER_FORWARD);
179 CHKERR VecGhostUpdateBegin(
F, INSERT_VALUES, SCATTER_FORWARD);
180 CHKERR VecGhostUpdateEnd(
F, INSERT_VALUES, SCATTER_FORWARD);
182
183
185 my_dirichlet_bc);
187 "THERMAL_PROBLEM",
ROW, T, INSERT_VALUES, SCATTER_REVERSE);
188
190 thermal_elements.getLoopFeRhs());
192 thermal_elements.getLoopFeLhs());
194 thermal_elements.getLoopFeFlux());
196 "THERMAL_PROBLEM", "THERMAL_CONVECTION_FE",
197 thermal_elements.getLoopFeConvectionRhs());
199 "THERMAL_PROBLEM", "THERMAL_CONVECTION_FE",
200 thermal_elements.getLoopFeConvectionLhs());
201
202
204 my_dirichlet_bc);
205
206 CHKERR VecGhostUpdateBegin(
F, ADD_VALUES, SCATTER_REVERSE);
207 CHKERR VecGhostUpdateEnd(
F, ADD_VALUES, SCATTER_REVERSE);
210 CHKERR MatAssemblyBegin(A, MAT_FINAL_ASSEMBLY);
211 CHKERR MatAssemblyEnd(A, MAT_FINAL_ASSEMBLY);
212
214
215
216 KSP solver;
217 CHKERR KSPCreate(PETSC_COMM_WORLD, &solver);
218 CHKERR KSPSetOperators(solver, A, A);
219 CHKERR KSPSetFromOptions(solver);
221
223 CHKERR VecGhostUpdateBegin(T, INSERT_VALUES, SCATTER_FORWARD);
224 CHKERR VecGhostUpdateEnd(T, INSERT_VALUES, SCATTER_FORWARD);
225
227 my_dirichlet_bc);
228
229
231 "THERMAL_PROBLEM",
ROW, T, INSERT_VALUES, SCATTER_REVERSE);
232
234 CHKERR moab.write_file(
"solution.h5m");
235 }
236
238 false, "TEMP");
240 ent_method_on_10nodeTet.setNodes = false;
242
244 EntityHandle out_meshset;
245 CHKERR moab.create_meshset(MESHSET_SET, out_meshset);
247 "THERMAL_PROBLEM", "THERMAL_FE", out_meshset);
248 CHKERR moab.write_file(
"out.vtk",
"VTK",
"", &out_meshset, 1);
249 CHKERR moab.delete_entities(&out_meshset, 1);
250 }
251
255 CHKERR KSPDestroy(&solver);
256 }
258
260}
#define CATCH_ERRORS
Catch errors.
@ AINSWORTH_LEGENDRE_BASE
Ainsworth Cole (Legendre) approx. base .
#define CHKERR
Inline error check.
virtual MoFEMErrorCode build_finite_elements(int verb=DEFAULT_VERBOSITY)=0
Build finite elements.
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.
virtual MoFEMErrorCode problem_basic_method_postProcess(const Problem *problem_ptr, BasicMethod &method, int verb=DEFAULT_VERBOSITY)=0
Set data for BasicMethod.
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.
MoFEMErrorCode partitionGhostDofs(const std::string name, int verb=VERBOSE)
determine ghost nodes
MoFEMErrorCode buildProblem(const std::string name, const bool square_matrix, int verb=VERBOSE)
build problem data structures
MoFEMErrorCode partitionProblem(const std::string name, int verb=VERBOSE)
partition problem dofs (collective)
MoFEMErrorCode partitionFiniteElements(const std::string name, bool part_from_moab=false, int low_proc=-1, int hi_proc=-1, int verb=VERBOSE)
partition finite elements
virtual MoFEMErrorCode get_problem_finite_elements_entities(const std::string name, const std::string &fe_name, const EntityHandle meshset)=0
add finite elements to the meshset
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
const FTensor::Tensor2< T, Dim, Dim > Vec
std::bitset< BITREFLEVEL_SIZE > BitRefLevel
Bit structure attached to each entity identifying to what mesh entity is attached.
PetscErrorCode PetscOptionsGetInt(PetscOptions *, const char pre[], const char name[], PetscInt *ivalue, PetscBool *set)
PetscErrorCode PetscOptionsGetString(PetscOptions *, const char pre[], const char name[], char str[], size_t size, PetscBool *set)
Add operators pushing bases from local to physical configuration.
virtual MoFEMErrorCode problem_basic_method_preProcess(const Problem *problem_ptr, BasicMethod &method, int verb=DEFAULT_VERBOSITY)=0
Set data for BasicMethod.
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 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.
Matrix manager is used to build and partition problems.
Problem manager is used to build and partition problems.
Projection of edge entities with one mid-node on hierarchical basis.
MoFEMErrorCode getInterface(IFACE *&iface) const
Get interface reference to pointer of interface.
Vector manager is used to create vectors \mofem_vectors.
structure grouping operators and data used for thermal problems