v0.14.0
Loading...
Searching...
No Matches
LoopMethods.hpp
Go to the documentation of this file.
1/** \file LoopMethods.hpp
2 * \brief MoFEM interface
3 *
4 * Data structures for making loops over finite elements and entities in the
5 * problem or MoFEM database.
6 *
7 */
8
9#ifndef __LOOPMETHODS_HPP__
10#define __LOOPMETHODS_HPP__
11
12namespace MoFEM {
13struct PetscData : public UnknownInterface {
14
15 MoFEMErrorCode query_interface(boost::typeindex::type_index type_index,
16 UnknownInterface **iface) const;
17
18 PetscData();
19
20 virtual ~PetscData() = default;
21
24 CTX_SET_F = 1 << 0,
25 CTX_SET_A = 1 << 1,
26 CTX_SET_B = 1 << 2,
27 CTX_SET_X = 1 << 3,
28 CTX_SET_X_T = 1 << 4,
29 CTX_SET_X_TT = 1 << 6,
30 CTX_SET_TIME = 1 << 7
31 };
32
33 using Switches = std::bitset<8>;
34
43
45
46 MoFEMErrorCode copyPetscData(const PetscData &petsc_data);
47
48 Vec f;
49 Mat A;
50 Mat B;
51 Vec x;
52 Vec x_t;
53 Vec x_tt;
54};
55
56/**
57 * \brief data structure for ksp (linear solver) context
58 * \ingroup mofem_loops
59 *
60 * Struture stores context data which are set in functions run by PETSc SNES
61 * functions.
62 *
63 */
64struct KspMethod : virtual public PetscData {
65
66 MoFEMErrorCode query_interface(boost::typeindex::type_index type_index,
67 UnknownInterface **iface) const;
68
69 /**
70 * \brief pass information about context of KSP/DM for with finite element is
71 * computed
72 */
74
75 KspMethod();
76
77 virtual ~KspMethod() = default;
78
79 /**
80 * \brief copy data form another method
81 * @param ksp ksp method
82 * @return error code
83 */
85
86 KSPContext ksp_ctx; ///< Context
87 KSP ksp; ///< KSP solver
88
89 Vec &ksp_f;
90 Mat &ksp_A;
91 Mat &ksp_B;
92};
93
94/**
95 * \brief data structure for snes (nonlinear solver) context
96 * \ingroup mofem_loops
97 *
98 * Structure stores context data which are set in functions run by PETSc SNES
99 * functions.
100 *
101 */
102struct SnesMethod : virtual protected PetscData {
103
104 MoFEMErrorCode query_interface(boost::typeindex::type_index type_index,
105 UnknownInterface **iface) const;
106
108
109 SnesMethod();
110
111 virtual ~SnesMethod() = default;
112
113 /**
114 * \brief Copy snes data
115 */
117
119
120 SNES snes; ///< snes solver
121 Vec &snes_x; ///< state vector
122 Vec &snes_f; ///< residual
123 Mat &snes_A; ///< jacobian matrix
124 Mat &snes_B; ///< preconditioner of jacobian matrix
125};
126
127/**
128 * \brief data structure for TS (time stepping) context
129 * \ingroup mofem_loops
130 *
131 * Structure stores context data which are set in functions run by PETSc Time
132 * Stepping functions.
133 */
134struct TSMethod : virtual protected PetscData {
135
136 MoFEMErrorCode query_interface(boost::typeindex::type_index type_index,
137 UnknownInterface **iface) const;
138
146 };
147
148 TSMethod();
149
150 virtual ~TSMethod() = default;
151
152 /// \brief Copy TS solver data
154
155 TS ts; ///< time solver
156
158
159 PetscInt ts_step; ///< time step number
160 PetscReal ts_a; ///< shift for U_t (see PETSc Time Solver)
161 PetscReal ts_aa; ///< shift for U_tt shift for U_tt
162 PetscReal ts_t; ///< time
163 PetscReal ts_dt; ///< time step size
164
165 Vec &ts_u; ///< state vector
166 Vec &ts_u_t; ///< time derivative of state vector
167 Vec &ts_u_tt; ///< second time derivative of state vector
168 Vec &ts_F; ///< residual vector
169
170 Mat &ts_A; ///< Jacobian of G(U) = F(t,U,W+v*U,W'+a*U), equivalent to dF/dU +
171 ///< v*dF/dU_t + a*dF/dU_tt
172 Mat &ts_B; ///< Preconditioner for ts_A
173};
174
175/**
176 * \brief Data structure to exchange data between mofem and User Loop Methods.
177 * \ingroup mofem_loops
178 *
179 * It allows to exchange data between MoFEM and user functions. It stores
180 * information about multi-indices.
181 *
182 */
184
185 MoFEMErrorCode query_interface(boost::typeindex::type_index type_index,
186 UnknownInterface **iface) const {
188 *iface = const_cast<BasicMethod *>(this);
190 }
191
192 BasicMethod();
193 virtual ~BasicMethod() = default;
194
195 /**
196 * @brief number currently of processed method
197 */
199
200 /**
201 * @brief local number oe methods to process
202 */
204
205 /** \brief get number of evaluated element in the loop
206 */
207 inline int getNinTheLoop() const { return nInTheLoop; }
208
209 /** \brief get loop size
210 */
211 inline int getLoopSize() const { return loopSize; }
212
213 /**
214 * @brief Llo and hi processor rank of iterated entities
215 *
216 */
217 std::pair<int, int> loHiFERank;
218
219 /**
220 * @brief Get lo and hi processor rank of iterated entities
221 *
222 * @return raturn std::pair<int, int> loHiFERank
223 */
224 inline auto getLoHiFERank() const { return loHiFERank; }
225
226 /**
227 * @brief Get upper rank in loop for iterating elements
228 *
229 * @return loHiFERank.first
230 */
231 inline auto getLoFERank() const { return loHiFERank.first; }
232
233 /**
234 * @brief Get upper rank in loop for iterating elements
235 *
236 * @return loHiFERank.first
237 */
238 inline auto getHiFERank() const { return loHiFERank.second; }
239
240 int rAnk; ///< processor rank
241
242 int sIze; ///< number of processors in communicator
243
245 *refinedEntitiesPtr; ///< container of mofem dof entities
246
248 *refinedFiniteElementsPtr; ///< container of mofem finite element entities
249
250 const Problem *problemPtr; ///< raw pointer to problem
251
252 const Field_multiIndex *fieldsPtr; ///< raw pointer to fields container
253
255 *entitiesPtr; ///< raw pointer to container of field entities
256
257 const DofEntity_multiIndex *dofsPtr; ///< raw pointer container of dofs
258
260 *finiteElementsPtr; ///< raw pointer to container finite elements
261
263 *finiteElementsEntitiesPtr; ///< raw pointer to container finite elements
264 ///< entities
265
267 *adjacenciesPtr; ///< raw pointer to container to adjacencies between dofs
268 ///< and finite elements
269
270 inline unsigned int getFieldBitNumber(std::string field_name) const {
271 if (fieldsPtr) {
272 auto field_it = fieldsPtr->get<FieldName_mi_tag>().find(field_name);
273 if (field_it != fieldsPtr->get<FieldName_mi_tag>().end())
274 return (*field_it)->getBitNumber();
275 else
276 return BITFEID_SIZE;
277 } else {
278 THROW_MESSAGE("Pointer to fields multi-index is not set");
279 return BITFEID_SIZE;
280 }
281 }
282
283 /**
284 * @brief Copy data from other base method to this base method
285 *
286 * @param basic
287 * @return MoFEMErrorCode
288 */
290
291 /**
292 * @brief Hook function for pre-processing
293 */
294 boost::function<MoFEMErrorCode()> preProcessHook;
295
296 /**
297 * @brief Hook function for post-processing
298 */
299 boost::function<MoFEMErrorCode()> postProcessHook;
300
301 /**
302 * @brief Hook function for operator
303 */
304 boost::function<MoFEMErrorCode()> operatorHook;
305
306 /** \brief function is run at the beginning of loop
307 *
308 * It is used to zeroing matrices and vectors, calculation of shape
309 * functions on reference element, preprocessing boundary conditions, etc.
310 */
311 virtual MoFEMErrorCode preProcess();
312
313 /** \brief function is run for every finite element
314 *
315 * It is used to calculate element local matrices and assembly. It can be
316 * used for post-processing.
317 */
318 virtual MoFEMErrorCode operator()();
319
320 /** \brief function is run at the end of loop
321 *
322 * It is used to assembly matrices and vectors, calculating global variables,
323 * f.e. total internal energy, ect.
324 *
325 * Iterating over dofs:
326 * Example1 iterating over dofs in row by name of the field
327 * for(_IT_GET_FEROW_BY_NAME_DOFS_FOR_LOOP_(this,"DISPLACEMENT",it)) { ... }
328 *
329 *
330 */
331 virtual MoFEMErrorCode postProcess();
332
333 /**
334 * @brief Get the cache weak ptr object
335 *
336 * \note This store problem information on entities about DOFs. Each problem
337 * store different information. If you iterate over finite elements in
338 * preprocessor of TS solve element, us TS cache in the loop. Otherwise you
339 * will create undetermined behaviour or segmentation error. This is necessary
340 * compromise over bug resilience for memory saving and preformans.
341 *
342 * @return boost::weak_ptr<CacheTuple>
343 */
344 inline boost::weak_ptr<CacheTuple> getCacheWeakPtr() const {
345 return cacheWeakPtr;
346 }
347
348 boost::movelib::unique_ptr<bool> vecAssembleSwitch;
349 boost::movelib::unique_ptr<bool> matAssembleSwitch;
350
351 boost::weak_ptr<CacheTuple> cacheWeakPtr; // cache pointer entity data
352};
353
354/**
355 * \brief structure for User Loop Methods on finite elements
356 * \ingroup mofem_loops
357 *
358 * It can be used to calculate stiffness matrices, residuals, load vectors etc.
359 * It is low level class however in some class users looking for speed and
360 * efficiency, can use it directly.
361 *
362 * This class is used with Interface::loop_finite_elements, where
363 * user overloaded operator FEMethod::operator() is executed for each element in
364 * the problem. Class have to additional methods which are overloaded by user,
365 * FEMethod::preProcess() and FEMethod::postProcess() executed at beginning and
366 * end of the loop over problem elements, respectively.
367 *
368 */
369struct FEMethod : public BasicMethod {
370
371 MoFEMErrorCode query_interface(boost::typeindex::type_index type_index,
372 UnknownInterface **iface) const {
374 *iface = const_cast<FEMethod *>(this);
376 }
377
378 FEMethod() = default;
379
380 std::string feName; ///< Name of finite element
381
382 boost::shared_ptr<const NumeredEntFiniteElement>
383 numeredEntFiniteElementPtr; ///< Pointer to finite element database
384 ///< structure
385
386 /**
387 * @brief get finite element name
388 *
389 * @return std::string
390 */
391 inline auto getFEName() const { return feName; }
392
393 /**
394 * @brief Tet if element to skip element
395 *
396 * If is set and return false elemnent us skiped in
397 * MoFEM::Core::loop_finite_elements
398 *
399 * \note That functionality is used to run elements on particular bit levels
400 *
401 */
402 boost::function<bool(FEMethod *fe_method_ptr)> exeTestHook;
403
404 inline auto getDataDofsPtr() const {
405 return numeredEntFiniteElementPtr->getDataDofsPtr();
406 };
407
408 inline auto getDataVectorDofsPtr() const {
409 return numeredEntFiniteElementPtr->getDataVectorDofsPtr();
410 };
411
413 return numeredEntFiniteElementPtr->getDataFieldEnts();
414 }
415
416 inline boost::shared_ptr<FieldEntity_vector_view> &
418 return const_cast<NumeredEntFiniteElement *>(
421 }
422
423 inline auto &getRowFieldEnts() const {
424 return numeredEntFiniteElementPtr->getRowFieldEnts();
425 };
426
427 inline auto &getRowFieldEntsPtr() const {
428 return numeredEntFiniteElementPtr->getRowFieldEntsPtr();
429 };
430
431 inline auto &getColFieldEnts() const {
432 return numeredEntFiniteElementPtr->getColFieldEnts();
433 };
434
435 inline auto &getColFieldEntsPtr() const {
436 return numeredEntFiniteElementPtr->getColFieldEntsPtr();
437 };
438
439 inline auto getRowDofsPtr() const {
440 return numeredEntFiniteElementPtr->getRowDofsPtr();
441 };
442
443 inline auto getColDofsPtr() const {
444 return numeredEntFiniteElementPtr->getColDofsPtr();
445 };
446
447 inline auto getNumberOfNodes() const;
448
449 inline EntityHandle getFEEntityHandle() const;
450
451 MoFEMErrorCode getNodeData(const std::string field_name, VectorDouble &data,
452 const bool reset_dofs = true);
453
454};
455
456inline auto FEMethod::getNumberOfNodes() const {
457 return moab::CN::VerticesPerEntity(numeredEntFiniteElementPtr->getEntType());
458};
459
461 return numeredEntFiniteElementPtr->getEnt();
462}
463
464/**
465 * \brief Data structure to exchange data between mofem and User Loop Methods on
466 * entities. \ingroup mofem_loops
467 *
468 * It allows to exchange data between MoFEM and user functions. It stores
469 * information about multi-indices.
470 */
471struct EntityMethod : public BasicMethod {
472
473 MoFEMErrorCode query_interface(boost::typeindex::type_index type_index,
474 UnknownInterface **iface) const {
476 *iface = const_cast<EntityMethod *>(this);
478 }
479
480 EntityMethod() = default;
481
482 boost::shared_ptr<Field> fieldPtr;
483 boost::shared_ptr<FieldEntity> entPtr;
484};
485
486/**
487 * \brief Data structure to exchange data between mofem and User Loop Methods on
488 * entities. \ingroup mofem_loops
489 *
490 * It allows to exchange data between MoFEM and user functions. It stores
491 * information about multi-indices.
492 */
493struct DofMethod : public BasicMethod {
494
495 MoFEMErrorCode query_interface(boost::typeindex::type_index type_index,
496 UnknownInterface **iface) const {
498 *iface = const_cast<DofMethod *>(this);
500 }
501
502 DofMethod() = default;
503
504 boost::shared_ptr<Field> fieldPtr;
505 boost::shared_ptr<DofEntity> dofPtr;
506 boost::shared_ptr<NumeredDofEntity> dofNumeredPtr;
507};
508
509/// \deprecated name changed use DofMethod insead EntMethod
511
512} // namespace MoFEM
513
514#endif // __LOOPMETHODS_HPP__
515
516/**
517 * \defgroup mofem_loops Loops
518 * \ingroup mofem
519 */
multi_index_container< FieldEntityEntFiniteElementAdjacencyMap, indexed_by< ordered_unique< tag< Composite_Unique_mi_tag >, composite_key< FieldEntityEntFiniteElementAdjacencyMap, const_mem_fun< FieldEntityEntFiniteElementAdjacencyMap, UId, &FieldEntityEntFiniteElementAdjacencyMap::getEntUniqueId >, const_mem_fun< FieldEntityEntFiniteElementAdjacencyMap, UId, &FieldEntityEntFiniteElementAdjacencyMap::getFeUniqueId > > >, ordered_non_unique< tag< Unique_mi_tag >, const_mem_fun< FieldEntityEntFiniteElementAdjacencyMap, UId, &FieldEntityEntFiniteElementAdjacencyMap::getEntUniqueId > >, ordered_non_unique< tag< FE_Unique_mi_tag >, const_mem_fun< FieldEntityEntFiniteElementAdjacencyMap, UId, &FieldEntityEntFiniteElementAdjacencyMap::getFeUniqueId > >, ordered_non_unique< tag< FEEnt_mi_tag >, const_mem_fun< FieldEntityEntFiniteElementAdjacencyMap, EntityHandle, &FieldEntityEntFiniteElementAdjacencyMap::getFeHandle > >, ordered_non_unique< tag< Ent_mi_tag >, const_mem_fun< FieldEntityEntFiniteElementAdjacencyMap, EntityHandle, &FieldEntityEntFiniteElementAdjacencyMap::getEntHandle > > > > FieldEntityEntFiniteElementAdjacencyMap_multiIndex
MultiIndex container keeps Adjacencies Element and dof entities adjacencies and vice versa.
multi_index_container< boost::shared_ptr< Field >, indexed_by< hashed_unique< tag< BitFieldId_mi_tag >, const_mem_fun< Field, const BitFieldId &, &Field::getId >, HashBit< BitFieldId >, EqBit< BitFieldId > >, ordered_unique< tag< Meshset_mi_tag >, member< Field, EntityHandle, &Field::meshSet > >, ordered_unique< tag< FieldName_mi_tag >, const_mem_fun< Field, boost::string_ref, &Field::getNameRef > >, ordered_non_unique< tag< BitFieldId_space_mi_tag >, const_mem_fun< Field, FieldSpace, &Field::getSpace > > > > Field_multiIndex
Field_multiIndex for Field.
#define MoFEMFunctionReturnHot(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:447
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:346
#define DEPRECATED
Definition: definitions.h:17
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:416
#define MoFEMFunctionBeginHot
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:440
#define BITFEID_SIZE
max number of finite elements
Definition: definitions.h:221
#define THROW_MESSAGE(msg)
Throw MoFEM exception.
Definition: definitions.h:561
multi_index_container< boost::shared_ptr< DofEntity >, indexed_by< ordered_unique< tag< Unique_mi_tag >, const_mem_fun< DofEntity, UId, &DofEntity::getLocalUniqueId > >, ordered_non_unique< tag< Ent_mi_tag >, const_mem_fun< DofEntity, EntityHandle, &DofEntity::getEnt > > > > DofEntity_multiIndex
MultiIndex container keeps DofEntity.
multi_index_container< boost::shared_ptr< RefEntity >, indexed_by< ordered_unique< tag< Ent_mi_tag >, const_mem_fun< RefEntity, EntityHandle, &RefEntity::getEnt > >, ordered_non_unique< tag< Ent_Ent_mi_tag >, const_mem_fun< RefEntity, EntityHandle, &RefEntity::getParentEnt > >, ordered_non_unique< tag< Composite_EntType_and_ParentEntType_mi_tag >, composite_key< RefEntity, const_mem_fun< RefEntity, EntityType, &RefEntity::getEntType >, const_mem_fun< RefEntity, EntityType, &RefEntity::getParentEntType > > >, ordered_non_unique< tag< Composite_ParentEnt_And_EntType_mi_tag >, composite_key< RefEntity, const_mem_fun< RefEntity, EntityType, &RefEntity::getEntType >, const_mem_fun< RefEntity, EntityHandle, &RefEntity::getParentEnt > > > > > RefEntity_multiIndex
multi_index_container< boost::shared_ptr< RefElement >, indexed_by< ordered_unique< tag< Ent_mi_tag >, const_mem_fun< RefElement::interface_type_RefEntity, EntityHandle, &RefElement::getEnt > > > > RefElement_multiIndex
multi_index_container< boost::shared_ptr< EntFiniteElement >, indexed_by< ordered_unique< tag< Unique_mi_tag >, const_mem_fun< EntFiniteElement, UId, &EntFiniteElement::getLocalUniqueId > >, ordered_non_unique< tag< Ent_mi_tag >, const_mem_fun< EntFiniteElement::interface_type_RefEntity, EntityHandle, &EntFiniteElement::getEnt > > > > EntFiniteElement_multiIndex
MultiIndex container for EntFiniteElement.
multi_index_container< boost::shared_ptr< FiniteElement >, indexed_by< hashed_unique< tag< FiniteElement_Meshset_mi_tag >, member< FiniteElement, EntityHandle, &FiniteElement::meshset > >, hashed_unique< tag< BitFEId_mi_tag >, const_mem_fun< FiniteElement, BitFEId, &FiniteElement::getId >, HashBit< BitFEId >, EqBit< BitFEId > >, ordered_unique< tag< FiniteElement_name_mi_tag >, const_mem_fun< FiniteElement, boost::string_ref, &FiniteElement::getNameRef > > > > FiniteElement_multiIndex
MultiIndex for entities for FiniteElement.
PetscErrorCode MoFEMErrorCode
MoFEM/PETSc error code.
Definition: Exceptions.hpp:56
UBlasVector< double > VectorDouble
Definition: Types.hpp:68
implementation of Data Operators for Forces and Sources
Definition: Common.hpp:10
DEPRECATED typedef DofMethod EntMethod
std::vector< boost::weak_ptr< FieldEntity > > FieldEntity_vector_view
Field_multiIndex::index< FieldName_mi_tag >::type::iterator field_it
multi_index_container< boost::shared_ptr< FieldEntity >, indexed_by< ordered_unique< tag< Unique_mi_tag >, member< FieldEntity, UId, &FieldEntity::localUId > >, ordered_non_unique< tag< Ent_mi_tag >, const_mem_fun< FieldEntity::interface_type_RefEntity, EntityHandle, &FieldEntity::getEnt > > > > FieldEntity_multiIndex
constexpr auto field_name
Data structure to exchange data between mofem and User Loop Methods.
int loopSize
local number oe methods to process
boost::movelib::unique_ptr< bool > matAssembleSwitch
const FieldEntity_multiIndex * entitiesPtr
raw pointer to container of field entities
unsigned int getFieldBitNumber(std::string field_name) const
virtual ~BasicMethod()=default
MoFEMErrorCode copyBasicMethod(const BasicMethod &basic)
Copy data from other base method to this base method.
auto getHiFERank() const
Get upper rank in loop for iterating elements.
const FiniteElement_multiIndex * finiteElementsPtr
raw pointer to container finite elements
const RefElement_multiIndex * refinedFiniteElementsPtr
container of mofem finite element entities
int getLoopSize() const
get loop size
std::pair< int, int > loHiFERank
Llo and hi processor rank of iterated entities.
boost::function< MoFEMErrorCode()> preProcessHook
Hook function for pre-processing.
const DofEntity_multiIndex * dofsPtr
raw pointer container of dofs
int rAnk
processor rank
boost::weak_ptr< CacheTuple > getCacheWeakPtr() const
Get the cache weak ptr object.
MoFEMErrorCode query_interface(boost::typeindex::type_index type_index, UnknownInterface **iface) const
const Field_multiIndex * fieldsPtr
raw pointer to fields container
int nInTheLoop
number currently of processed method
auto getLoHiFERank() const
Get lo and hi processor rank of iterated entities.
const RefEntity_multiIndex * refinedEntitiesPtr
container of mofem dof entities
boost::movelib::unique_ptr< bool > vecAssembleSwitch
virtual MoFEMErrorCode postProcess()
function is run at the end of loop
const FieldEntityEntFiniteElementAdjacencyMap_multiIndex * adjacenciesPtr
virtual MoFEMErrorCode operator()()
function is run for every finite element
virtual MoFEMErrorCode preProcess()
function is run at the beginning of loop
const EntFiniteElement_multiIndex * finiteElementsEntitiesPtr
const Problem * problemPtr
raw pointer to problem
auto getLoFERank() const
Get upper rank in loop for iterating elements.
boost::function< MoFEMErrorCode()> operatorHook
Hook function for operator.
int sIze
number of processors in communicator
boost::weak_ptr< CacheTuple > cacheWeakPtr
int getNinTheLoop() const
get number of evaluated element in the loop
boost::function< MoFEMErrorCode()> postProcessHook
Hook function for post-processing.
Data structure to exchange data between mofem and User Loop Methods on entities.
boost::shared_ptr< DofEntity > dofPtr
DofMethod()=default
MoFEMErrorCode query_interface(boost::typeindex::type_index type_index, UnknownInterface **iface) const
boost::shared_ptr< NumeredDofEntity > dofNumeredPtr
boost::shared_ptr< Field > fieldPtr
Data structure to exchange data between mofem and User Loop Methods on entities.
EntityMethod()=default
boost::shared_ptr< Field > fieldPtr
MoFEMErrorCode query_interface(boost::typeindex::type_index type_index, UnknownInterface **iface) const
boost::shared_ptr< FieldEntity > entPtr
structure for User Loop Methods on finite elements
std::string feName
Name of finite element.
auto & getColFieldEntsPtr() const
FEMethod()=default
auto & getRowFieldEnts() const
auto getFEName() const
get finite element name
MoFEMErrorCode getNodeData(const std::string field_name, VectorDouble &data, const bool reset_dofs=true)
auto getDataDofsPtr() const
const FieldEntity_vector_view & getDataFieldEnts() const
auto getDataVectorDofsPtr() const
boost::shared_ptr< FieldEntity_vector_view > & getDataFieldEntsPtr() const
auto getColDofsPtr() const
EntityHandle getFEEntityHandle() const
MoFEMErrorCode query_interface(boost::typeindex::type_index type_index, UnknownInterface **iface) const
auto & getRowFieldEntsPtr() const
auto getNumberOfNodes() const
auto getRowDofsPtr() const
boost::shared_ptr< const NumeredEntFiniteElement > numeredEntFiniteElementPtr
auto & getColFieldEnts() const
boost::function< bool(FEMethod *fe_method_ptr)> exeTestHook
Tet if element to skip element.
MultiIndex Tag for field name.
data structure for ksp (linear solver) context
Definition: LoopMethods.hpp:64
MoFEMErrorCode copyKsp(const KspMethod &ksp)
copy data form another method
Definition: LoopMethods.cpp:55
KSPContext ksp_ctx
Context.
Definition: LoopMethods.hpp:86
virtual ~KspMethod()=default
KSPContext
pass information about context of KSP/DM for with finite element is computed
Definition: LoopMethods.hpp:73
KSP ksp
KSP solver.
Definition: LoopMethods.hpp:87
MoFEMErrorCode query_interface(boost::typeindex::type_index type_index, UnknownInterface **iface) const
Definition: LoopMethods.cpp:45
Partitioned (Indexed) Finite Element in Problem.
static constexpr Switches CtxSetA
Definition: LoopMethods.hpp:37
static constexpr Switches CtxSetX
Definition: LoopMethods.hpp:39
static constexpr Switches CtxSetX_TT
Definition: LoopMethods.hpp:41
static constexpr Switches CtxSetNone
Definition: LoopMethods.hpp:35
static constexpr Switches CtxSetF
Definition: LoopMethods.hpp:36
std::bitset< 8 > Switches
Definition: LoopMethods.hpp:33
virtual ~PetscData()=default
static constexpr Switches CtxSetX_T
Definition: LoopMethods.hpp:40
MoFEMErrorCode query_interface(boost::typeindex::type_index type_index, UnknownInterface **iface) const
Definition: LoopMethods.cpp:21
static constexpr Switches CtxSetB
Definition: LoopMethods.hpp:38
static constexpr Switches CtxSetTime
Definition: LoopMethods.hpp:42
MoFEMErrorCode copyPetscData(const PetscData &petsc_data)
Definition: LoopMethods.cpp:31
keeps basic data about problem
data structure for snes (nonlinear solver) context
MoFEMErrorCode copySnes(const SnesMethod &snes)
Copy snes data.
Definition: LoopMethods.cpp:75
Vec & snes_f
residual
MoFEMErrorCode query_interface(boost::typeindex::type_index type_index, UnknownInterface **iface) const
Definition: LoopMethods.cpp:65
Vec & snes_x
state vector
virtual ~SnesMethod()=default
Mat & snes_B
preconditioner of jacobian matrix
SNESContext snes_ctx
Mat & snes_A
jacobian matrix
SNES snes
snes solver
data structure for TS (time stepping) context
TS ts
time solver
PetscReal ts_t
time
Vec & ts_F
residual vector
PetscReal ts_dt
time step size
MoFEMErrorCode query_interface(boost::typeindex::type_index type_index, UnknownInterface **iface) const
Definition: LoopMethods.cpp:85
Vec & ts_u_tt
second time derivative of state vector
TSContext ts_ctx
PetscReal ts_a
shift for U_t (see PETSc Time Solver)
Vec & ts_u_t
time derivative of state vector
PetscInt ts_step
time step number
Vec & ts_u
state vector
virtual ~TSMethod()=default
PetscReal ts_aa
shift for U_tt shift for U_tt
MoFEMErrorCode copyTs(const TSMethod &ts)
Copy TS solver data.
Definition: LoopMethods.cpp:96
Mat & ts_B
Preconditioner for ts_A.
base class for all interface classes