Loading [MathJax]/extensions/AMSmath.js
v0.14.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Schur.hpp
Go to the documentation of this file.
1 /**
2  * @file Schur.hpp
3  * @brief Assemble Schur complement
4  * @date 2023-02-02
5  *
6  * @copyright Copyright (c) 2023
7  *
8  * To create nested system of Schur complements, you push sequence of operator,
9  * to set up data on entities, and then assemble complements.
10  *
11  * \note Try separate floating points operations from book keeping. Also, align
12  * memory that blocks follow floating point operations.
13  *
14  */
15 
16 #ifndef __SCHUR_HPP__
17 #define __SCHUR_HPP__
18 
19 namespace MoFEM {
20 
21 constexpr const char MoFEM_BLOCK_MAT[] = "mofem_block_mat";
22 
23 /**
24  * @brief Structure to register events for Schur block assembly and solver
25  */
26 struct SchurEvents {
27  static PetscLogEvent MOFEM_EVENT_schurMatSetValues;
28  static PetscLogEvent MOFEM_EVENT_opSchurAssembleEnd;
30  static PetscLogEvent MOFEM_EVENT_BlockStructureMult;
31  static PetscLogEvent MOFEM_EVENT_BlockStructureSolve;
32  static PetscLogEvent MOFEM_EVENT_AssembleSchurMat;
33  static PetscLogEvent MOFEM_EVENT_zeroRowsAndCols;
34  SchurEvents();
35 };
36 
37 struct SchurElemMats;
38 struct SchurElemMatsBlock;
40 
42 
43  OpSchurAssembleBase() = delete;
44 
45 private:
47 };
48 
50 
51 /**
52  * @brief Construct a new Op Schur Assemble End object
53  *
54  * @param fields_name list of fields (can be empty)
55  * @param field_ents list of entities on which schur complement is applied
56  * @param schur_aos maps dofs indices from main problem to schur complement
57  * @param schur_mat schur matrix
58  * @param sym_schur true if schur (matrix) complement is symmetric
59  * @param symm_op true if block diagonal is symmetric
60  */
62 createOpSchurAssembleEnd(std::vector<std::string> fields_name,
63  std::vector<boost::shared_ptr<Range>> field_ents,
66  bool sym_schur = false, bool symm_op = false);
67 
68 /**
69  * @brief Create a Op Schur Zero Rows And Cols object
70  *
71  * @param marker_ptr
72  * @return OpSchurAssembleBase*
73  */
75  boost::shared_ptr<std::vector<unsigned char>> marker_ptr, double diag_val);
76 
77 using SchurFieldPair = std::pair<std::string, std::string>;
78 
79 using SchurFEOpsFEandFields = std::vector<
80 
81  std::pair<std::string, std::vector<SchurFieldPair>>
82 
83  >;
84 
85 /**
86  * @brief Create a Mat Diag Blocks object
87  *
88  * @return Mat
89  */
90 boost::shared_ptr<BlockStructure> createBlockMatStructure(
91 
92  DM dm, //< dm
93  SchurFEOpsFEandFields schur_fe_op_vec //< block elements
94 
95 );
96 
97 using SchurShellMatData =
98  std::pair<SmartPetscObj<Mat>, boost::shared_ptr<BlockStructure>>;
99 
100 /**
101  * @brief Create a Schur Mat object
102  *
103  * @param dm
104  * @param data
105  * @return std::pair<SmartPetscObj<Mat>, boost::shared_ptr<BlockStructure>>
106  */
107 SchurShellMatData createBlockMat(DM dm, boost::shared_ptr<BlockStructure> data);
108 
109 using NestSchurData = std::tuple<
110 
111  std::array<SmartPetscObj<Mat>, 4>,
112  std::array<boost::shared_ptr<BlockStructure>, 4>,
113  boost::shared_ptr<BlockStructure>,
114  std::pair<SmartPetscObj<IS>, SmartPetscObj<IS>>
115 
116  >;
117 
118 /**
119  * @brief Get the Schur Nest Mat Array object
120  *
121  * @param dms schur dm, and block dm
122  * @param block mat A data
123  * @param fields_name list of fields
124  * @param field_ents list of entities on which schur complement is applied
125  * @param add_preconditioner_block add block for preconditioner
126  * @return boost::shared_ptr<NestSchurData>
127  */
128 boost::shared_ptr<NestSchurData> createSchurNestedMatrixStruture(
129  std::pair<SmartPetscObj<DM>, SmartPetscObj<DM>> dms,
130  boost::shared_ptr<BlockStructure> block_mat_data,
131 
132  std::vector<std::string> fields_name, //< a00 fields
133  std::vector<boost::shared_ptr<Range>> field_ents, //< a00 ents
134  bool add_preconditioner_block = false
135 
136 );
137 
138 /**
139  * @brief Assemble Schur matrix
140  *
141  * @param m_field
142  * @param B
143  * @param S
144  * @param fields_name
145  * @param field_ents
146  * @param ao
147  * @return MoFEMErrorCode
148  */
150 assembleBlockMatSchur(MoFEM::Interface &m_field, Mat B, Mat S,
151  std::vector<std::string> fields_name,
152  std::vector<boost::shared_ptr<Range>> field_ents,
153  SmartPetscObj<AO> ao);
154 
155 /**
156  * @brief Get the Block Storage object
157  *
158  * @return std::vector<double>&
159  */
160 boost::shared_ptr<std::vector<double>> getBlockMatStorageMat(Mat B);
161 
162 /**
163  * @brief Get the Block Storage object
164  *
165  * @return std::vector<double>&
166  */
167 boost::shared_ptr<std::vector<double>>
169 
170 /**
171  * @brief Switch preconditioner
172  *
173  * @param block_mat_data
174  * @return MoFEMErrorCode
175  */
177 schurSwitchPreconditioner(boost::shared_ptr<BlockStructure> block_mat_data);
178 
179 /**
180  * @brief Save block matrix as a mesh
181  *
182  * @param block_mat_data
183  * @param filename
184  * @return MoFEMErrorCode
185  */
187 schurSaveBlockMesh(boost::shared_ptr<BlockStructure> block_mat_data,
188  std::string filename);
189 
190 /**
191  * @brief Create a Mat Diag Blocks object
192  *
193  * \code {.cpp}
194  *
195  * auto [nested_mat, nested_data_ptr] = createSchurNestedMatrix(
196  *
197  * createSchurNestedMatrixStruture(
198  *
199  * {schur_dm, block_dm}, shell_data,
200  *
201  * {"TENSOR"}, {nullptr}
202  *
203  * )
204  *
205  * );
206  *
207  * \endcode
208  *
209  * @return Mat
210  */
211 std::pair<SmartPetscObj<Mat>, boost::shared_ptr<NestSchurData>>
212 createSchurNestedMatrix(boost::shared_ptr<NestSchurData> schur_net_data_ptr);
213 
214 template <>
215 MoFEMErrorCode DMMoFEMSetNestSchurData(DM dm, boost::shared_ptr<NestSchurData>);
216 
217 /**
218  * @brief Set PC for A00 block
219  *
220  * @param pc
221  * @return MoFEMErrorCode
222  */
224 
226 
228  SchurBackendMatSetValuesPtr() = delete;
229  using MatSetValuesPtr = boost::function<MoFEMErrorCode(
230  Mat M, const EntitiesFieldData::EntData &row_data,
231  const EntitiesFieldData::EntData &col_data, const MatrixDouble &mat,
232  InsertMode iora)>;
233  static MatSetValuesPtr matSetValuesPtr; ///< backend assembly function
234  static MatSetValuesPtr
235  matSetValuesBlockPtr; ///< backend assembly block mat function
236  static MatSetValuesPtr
237  matSetValuesPreconditionedBlockPtr; ///< backend assembly block
238  ///< preconditioner mat function
239 };
240 
241 template <>
244  const EntitiesFieldData::EntData &col_data,
245  const MatrixDouble &mat, InsertMode iora);
246 
247 template <>
248 inline MoFEMErrorCode
250  const VectorDouble &nf, InsertMode iora) {
251  return VecSetValues<EssentialBcStorage>(V, data, nf, iora);
252 }
253 
254 template <>
255 MoFEMErrorCode MatSetValues<AssemblyTypeSelector<SCHUR>>(
256  Mat M, const EntitiesFieldData::EntData &row_data,
257  const EntitiesFieldData::EntData &col_data, const MatrixDouble &mat,
258  InsertMode iora);
259 
260 template <>
261 inline MoFEMErrorCode VecSetValues<AssemblyTypeSelector<SCHUR>>(
262  Vec V, const EntitiesFieldData::EntData &data, const VectorDouble &nf,
263  InsertMode iora) {
264  return VecSetValues<SchurElemMats>(V, data, nf, iora);
265 }
266 
267 /***
268  * @brief Specialization of MatSetValues for BlockStructure
269  */
270 template <>
273  const EntitiesFieldData::EntData &col_data,
274  const MatrixDouble &mat, InsertMode iora);
275 
276 /***
277  * @brief Specialisation of MatSetValues for AssemblyTypeSelector<BLOCK_MAT>
278  */
279 template <>
280 inline MoFEMErrorCode MatSetValues<AssemblyTypeSelector<BLOCK_MAT>>(
281  Mat M, const EntitiesFieldData::EntData &row_data,
282  const EntitiesFieldData::EntData &col_data, const MatrixDouble &mat,
283  InsertMode iora) {
284  return MatSetValues<BlockStructure>(M, row_data, col_data, mat, iora);
285 }
286 
287 /***
288  * @brief Specialisation of VecSetValues for AssemblyTypeSelector<BLOCK_MAT>
289  */
290 template <>
291 inline MoFEMErrorCode VecSetValues<AssemblyTypeSelector<BLOCK_MAT>>(
292  Vec V, const EntitiesFieldData::EntData &data, const VectorDouble &nf,
293  InsertMode iora) {
294  return VecSetValues<EssentialBcStorage>(V, data, nf, iora);
295 }
296 
297 /***
298  * @brief Specialization of MatSetValues for SchurElemMatsBlock
299  */
300 template <>
303  const EntitiesFieldData::EntData &row_data,
304  const EntitiesFieldData::EntData &col_data,
305  const MatrixDouble &mat, InsertMode iora);
306 
307 /***
308  * @brief Specialization of VecSetValues for SchurElemMatsBlock
309  */
310 template <>
311 inline MoFEMErrorCode
313  const VectorDouble &nf, InsertMode iora) {
314  return VecSetValues<EssentialBcStorage>(V, data, nf, iora);
315 }
316 
317 /***
318  * @brief Specialisation of MatSetValues for AssemblyTypeSelector<BLOCK_SCHUR>
319  */
320 template <>
321 inline MoFEMErrorCode MatSetValues<AssemblyTypeSelector<BLOCK_SCHUR>>(
322  Mat M, const EntitiesFieldData::EntData &row_data,
323  const EntitiesFieldData::EntData &col_data, const MatrixDouble &mat,
324  InsertMode iora) {
325  return MatSetValues<SchurElemMatsBlock>(M, row_data, col_data, mat, iora);
326 }
327 
328 /***
329  * @brief Specialisation of VecSetValues for AssemblyTypeSelector<BLOCK_SCHUR>
330  */
331 template <>
332 inline MoFEMErrorCode VecSetValues<AssemblyTypeSelector<BLOCK_SCHUR>>(
333  Vec V, const EntitiesFieldData::EntData &data, const VectorDouble &nf,
334  InsertMode iora) {
335  return VecSetValues<EssentialBcStorage>(V, data, nf, iora);
336 }
337 
338 /***
339  * @brief Specialization of MatSetValues for SchurElemMatsPreconditionedBlock
340  */
341 template <>
343  Mat M, const EntitiesFieldData::EntData &row_data,
344  const EntitiesFieldData::EntData &col_data, const MatrixDouble &mat,
345  InsertMode iora);
346 
347 /***
348  * @brief Specialisation of MatSetValues for
349  * AssemblyTypeSelector<BLOCK_PRECONDITIONER_SCHUR>
350  */
351 template <>
352 inline MoFEMErrorCode
353 MatSetValues<AssemblyTypeSelector<BLOCK_PRECONDITIONER_SCHUR>>(
354  Mat M, const EntitiesFieldData::EntData &row_data,
355  const EntitiesFieldData::EntData &col_data, const MatrixDouble &mat,
356  InsertMode iora) {
357  return MatSetValues<SchurElemMatsPreconditionedBlock>(M, row_data, col_data,
358  mat, iora);
359 }
360 
361 /***
362  * @brief Specialisation of VecSetValues for AssemblyTypeSelector<BLOCK_SCHUR>
363  */
364 template <>
365 inline MoFEMErrorCode
366 VecSetValues<AssemblyTypeSelector<BLOCK_PRECONDITIONER_SCHUR>>(
367  Vec V, const EntitiesFieldData::EntData &data, const VectorDouble &nf,
368  InsertMode iora) {
369  return ::VecSetValues(V, data.getIndices().size(),
370  &*data.getIndices().begin(), &*nf.begin(), iora);
371 }
372 
373 /**
374  * @deprecated do not use
375  */
376 DEPRECATED OpSchurAssembleBase *createOpSchurAssembleEnd(
377  std::vector<std::string> fields_name,
378  std::vector<boost::shared_ptr<Range>> field_ents,
379  std::vector<SmartPetscObj<AO>> sequence_of_aos,
380  std::vector<SmartPetscObj<Mat>> sequence_of_mats,
381  std::vector<bool> sym_schur, bool symm_op,
382  boost::shared_ptr<BlockStructure> diag_blocks = nullptr);
383 
384 /**
385  * @deprecated do not use
386  */
387 DEPRECATED OpSchurAssembleBase *createOpSchurAssembleEnd(
388  std::vector<std::string> fields_name,
389  std::vector<boost::shared_ptr<Range>> field_ents,
390  std::vector<SmartPetscObj<AO>> sequence_of_aos,
391  std::vector<SmartPetscObj<Mat>> sequence_of_mats,
392  std::vector<bool> sym_schur, std::vector<double> diag_eps, bool symm_op,
393  boost::shared_ptr<BlockStructure> diag_blocks = nullptr);
394 
395 /** @deprecated do not use, use createSchurNestedMatrixStruture instead */
396 DEPRECATED inline boost::shared_ptr<NestSchurData>
398  boost::shared_ptr<BlockStructure> block_mat_data,
399 
400  std::vector<std::string> fields_name, //< a00 fields
401  std::vector<boost::shared_ptr<Range>> field_ents, //< a00 ents
402  bool add_preconditioner_block = false
403 
404 ) {
405  return createSchurNestedMatrixStruture(dms, block_mat_data, fields_name,
406  field_ents, add_preconditioner_block);
407 }
408 
409 } // namespace MoFEM
410 
411 #endif //__SCHUR_HPP__
UBlasMatrix< double >
MoFEM::EntitiesFieldData::EntData
Data on single entity (This is passed as argument to DataOperator::doWork)
Definition: EntitiesFieldData.hpp:128
DEPRECATED
#define DEPRECATED
Definition: definitions.h:17
MoFEM::createOpSchurZeroRowsAndCols
OpSchurAssembleBase * createOpSchurZeroRowsAndCols(boost::shared_ptr< std::vector< unsigned char >> marker_ptr, double diag_val)
Create a Op Schur Zero Rows And Cols object.
Definition: Schur.cpp:2597
MoFEM::MatSetValues< BlockStructure >
MoFEMErrorCode MatSetValues< BlockStructure >(Mat M, const EntitiesFieldData::EntData &row_data, const EntitiesFieldData::EntData &col_data, const MatrixDouble &mat, InsertMode iora)
Definition: Schur.cpp:2697
MoFEM::MoFEM_BLOCK_MAT
constexpr const char MoFEM_BLOCK_MAT[]
Definition: Schur.hpp:21
MoFEM::SchurFieldPair
std::pair< std::string, std::string > SchurFieldPair
Definition: Schur.hpp:77
MoFEM::OpSchurAssembleBase::OpSchurAssembleBase
OpSchurAssembleBase()=delete
MoFEM::Exceptions::MoFEMErrorCode
PetscErrorCode MoFEMErrorCode
MoFEM/PETSc error code.
Definition: Exceptions.hpp:56
MoFEM::Types::MatrixDouble
UBlasMatrix< double > MatrixDouble
Definition: Types.hpp:77
MoFEM::SchurBackendMatSetValuesPtr::MatSetValuesPtr
boost::function< MoFEMErrorCode(Mat M, const EntitiesFieldData::EntData &row_data, const EntitiesFieldData::EntData &col_data, const MatrixDouble &mat, InsertMode iora)> MatSetValuesPtr
Definition: Schur.hpp:232
MoFEM::SchurEvents::SchurEvents
SchurEvents()
Definition: Schur.cpp:325
MoFEM::SchurEvents::MOFEM_EVENT_BlockStructureMult
static PetscLogEvent MOFEM_EVENT_BlockStructureMult
Definition: Schur.hpp:30
MoFEM::SchurEvents::MOFEM_EVENT_schurMatSetValues
static PetscLogEvent MOFEM_EVENT_schurMatSetValues
Definition: Schur.hpp:27
MoFEM::VecSetValues
MoFEMErrorCode VecSetValues(Vec V, const EntitiesFieldData::EntData &data, const double *ptr, InsertMode iora)
Assemble PETSc vector.
Definition: EntitiesFieldData.hpp:1589
MoFEM::SchurEvents::MOFEM_EVENT_AssembleSchurMat
static PetscLogEvent MOFEM_EVENT_AssembleSchurMat
Definition: Schur.hpp:32
MoFEM::DeprecatedCoreInterface
Deprecated interface functions.
Definition: DeprecatedCoreInterface.hpp:16
MoFEM::getBlockMatStorageMat
boost::shared_ptr< std::vector< double > > getBlockMatStorageMat(Mat B)
Get the Block Storage object.
Definition: Schur.cpp:2132
PlasticOps::M
FTensor::Index< 'M', 3 > M
Definition: PlasticOps.hpp:117
MoFEM::createOpSchurAssembleEnd
OpSchurAssembleBase * createOpSchurAssembleEnd(std::vector< std::string > fields_name, std::vector< boost::shared_ptr< Range >> field_ents, SmartPetscObj< AO > ao, SmartPetscObj< Mat > schur, bool sym_schur, bool symm_op)
Construct a new Op Schur Assemble End object.
Definition: Schur.cpp:2585
MoFEM::VecSetValues< SchurElemMatsBlock >
MoFEMErrorCode VecSetValues< SchurElemMatsBlock >(Vec V, const EntitiesFieldData::EntData &data, const VectorDouble &nf, InsertMode iora)
Definition: Schur.hpp:312
MoFEM::createBlockMat
SchurShellMatData createBlockMat(DM dm, boost::shared_ptr< BlockStructure > data)
Create a Schur Mat object.
Definition: Schur.cpp:1452
MoFEM
implementation of Data Operators for Forces and Sources
Definition: Common.hpp:10
MoFEM::SchurEvents::MOFEM_EVENT_BlockStructureSolve
static PetscLogEvent MOFEM_EVENT_BlockStructureSolve
Definition: Schur.hpp:31
MoFEM::schurSwitchPreconditioner
MoFEMErrorCode schurSwitchPreconditioner(boost::shared_ptr< BlockStructure > block_mat_data)
Switch preconditioner.
Definition: Schur.cpp:2769
MoFEM::ForcesAndSourcesCore::UserDataOperator
Definition: ForcesAndSourcesCore.hpp:549
MoFEM::getNestSchurData
DEPRECATED boost::shared_ptr< NestSchurData > getNestSchurData(std::pair< SmartPetscObj< DM >, SmartPetscObj< DM >> dms, boost::shared_ptr< BlockStructure > block_mat_data, std::vector< std::string > fields_name, std::vector< boost::shared_ptr< Range >> field_ents, bool add_preconditioner_block=false)
Definition: Schur.hpp:397
MoFEM::SchurBackendMatSetValuesPtr::SchurBackendMatSetValuesPtr
SchurBackendMatSetValuesPtr()=delete
MoFEM::createOpSchurAssembleBegin
OpSchurAssembleBase * createOpSchurAssembleBegin()
Definition: Schur.cpp:2580
MoFEM::SchurEvents::MOFEM_EVENT_opSchurAssembleEnd
static PetscLogEvent MOFEM_EVENT_opSchurAssembleEnd
Definition: Schur.hpp:28
MoFEM::SchurElemMatsBlock
Definition: Schur.cpp:2703
MoFEM::createSchurNestedMatrix
std::pair< SmartPetscObj< Mat >, boost::shared_ptr< NestSchurData > > createSchurNestedMatrix(boost::shared_ptr< NestSchurData > schur_net_data_ptr)
Create a Mat Diag Blocks object.
Definition: Schur.cpp:2552
MoFEM::MatSetValues< SchurElemMatsPreconditionedBlock >
MoFEMErrorCode MatSetValues< SchurElemMatsPreconditionedBlock >(Mat M, const EntitiesFieldData::EntData &row_data, const EntitiesFieldData::EntData &col_data, const MatrixDouble &mat, InsertMode iora)
Definition: Schur.cpp:2760
MoFEM::SchurBackendMatSetValuesPtr::matSetValuesPtr
static MatSetValuesPtr matSetValuesPtr
backend assembly function
Definition: Schur.hpp:233
MoFEM::SchurElemMatsPreconditionedBlock
Definition: Schur.cpp:2736
MoFEM::SchurBackendMatSetValuesPtr
Definition: Schur.hpp:227
MoFEM::assembleBlockMatSchur
MoFEMErrorCode assembleBlockMatSchur(MoFEM::Interface &m_field, Mat B, Mat S, std::vector< std::string > fields_name, std::vector< boost::shared_ptr< Range >> field_ents, SmartPetscObj< AO > ao)
Assemble Schur matrix.
Definition: Schur.cpp:1817
EntData
EntitiesFieldData::EntData EntData
Definition: child_and_parent.cpp:37
MoFEM::OpSchurAssembleBase
Definition: Schur.hpp:41
MoFEM::setSchurMatSolvePC
MoFEMErrorCode setSchurMatSolvePC(SmartPetscObj< PC > pc)
Definition: Schur.cpp:2645
MoFEM::SchurElemMats
Schur complement data storage.
Definition: Schur.cpp:161
MoFEM::setSchurA00MatSolvePC
MoFEMErrorCode setSchurA00MatSolvePC(SmartPetscObj< PC > pc)
Set PC for A00 block.
Definition: Schur.cpp:2627
MoFEM::SchurBackendMatSetValuesPtr::matSetValuesPreconditionedBlockPtr
static MatSetValuesPtr matSetValuesPreconditionedBlockPtr
Definition: Schur.hpp:237
MoFEM::getBlockMatPrconditionerStorageMat
boost::shared_ptr< std::vector< double > > getBlockMatPrconditionerStorageMat(Mat B)
Get the Block Storage object.
Definition: Schur.cpp:2139
MoFEM::MatSetValues< SchurElemMats >
MoFEMErrorCode MatSetValues< SchurElemMats >(Mat M, const EntitiesFieldData::EntData &row_data, const EntitiesFieldData::EntData &col_data, const MatrixDouble &mat, InsertMode iora)
Definition: Schur.cpp:2653
MoFEM::createSchurNestedMatrixStruture
boost::shared_ptr< NestSchurData > createSchurNestedMatrixStruture(std::pair< SmartPetscObj< DM >, SmartPetscObj< DM >> dms, boost::shared_ptr< BlockStructure > block_mat_data_ptr, std::vector< std::string > fields_names, std::vector< boost::shared_ptr< Range >> field_ents, bool add_preconditioner_block)
Get the Schur Nest Mat Array object.
Definition: Schur.cpp:2343
EigenMatrix::Vec
const FTensor::Tensor2< T, Dim, Dim > Vec
Definition: MatrixFunction.hpp:64
MoFEM::SchurEvents
Structure to register events for Schur block assembly and solver.
Definition: Schur.hpp:26
MoFEM::SchurShellMatData
std::pair< SmartPetscObj< Mat >, boost::shared_ptr< BlockStructure > > SchurShellMatData
Definition: Schur.hpp:98
MoFEM::Types::VectorDouble
UBlasVector< double > VectorDouble
Definition: Types.hpp:68
MoFEM::DMMoFEMSetNestSchurData
MoFEMErrorCode DMMoFEMSetNestSchurData(DM dm, boost::shared_ptr< NestSchurData >)
Definition: DMMoFEM.cpp:1562
MoFEM::VecSetValues< SchurElemMats >
MoFEMErrorCode VecSetValues< SchurElemMats >(Vec V, const EntitiesFieldData::EntData &data, const VectorDouble &nf, InsertMode iora)
Definition: Schur.hpp:249
MoFEM::createBlockMatStructure
boost::shared_ptr< BlockStructure > createBlockMatStructure(DM dm, SchurFEOpsFEandFields schur_fe_op_vec)
Create a Mat Diag Blocks object.
Definition: Schur.cpp:1082
MoFEM::SchurBackendMatSetValuesPtr::matSetValuesBlockPtr
static MatSetValuesPtr matSetValuesBlockPtr
backend assembly block mat function
Definition: Schur.hpp:235
MoFEM::SmartPetscObj< AO >
MoFEM::MatSetValues< SchurElemMatsBlock >
MoFEMErrorCode MatSetValues< SchurElemMatsBlock >(Mat M, const EntitiesFieldData::EntData &row_data, const EntitiesFieldData::EntData &col_data, const MatrixDouble &mat, InsertMode iora)
Definition: Schur.cpp:2729
MoFEM::NestSchurData
std::tuple< std::array< SmartPetscObj< Mat >, 4 >, std::array< boost::shared_ptr< BlockStructure >, 4 >, boost::shared_ptr< BlockStructure >, std::pair< SmartPetscObj< IS >, SmartPetscObj< IS > > > NestSchurData
Definition: Schur.hpp:116
MoFEM::SchurEvents::MOFEM_EVENT_zeroRowsAndCols
static PetscLogEvent MOFEM_EVENT_zeroRowsAndCols
Definition: Schur.hpp:33
MoFEM::schurSaveBlockMesh
MoFEMErrorCode schurSaveBlockMesh(boost::shared_ptr< BlockStructure > block_mat_data, std::string filename)
Save block matrix as a mesh.
Definition: Schur.cpp:2784
MoFEM::SchurEvents::MOFEM_EVENT_BlockStructureSetValues
static PetscLogEvent MOFEM_EVENT_BlockStructureSetValues
Definition: Schur.hpp:29
MoFEM::SchurFEOpsFEandFields
std::vector< std::pair< std::string, std::vector< SchurFieldPair > > > SchurFEOpsFEandFields
Definition: Schur.hpp:83
MoFEM::VecSetValues< EssentialBcStorage >
MoFEMErrorCode VecSetValues< EssentialBcStorage >(Vec V, const EntitiesFieldData::EntData &data, const double *ptr, InsertMode iora)
Set values to vector in operator.
Definition: FormsIntegrators.cpp:76
MoFEM::ForcesAndSourcesCore::UserDataOperator::UserDataOperator
UserDataOperator(const FieldSpace space, const char type=OPSPACE, const bool symm=true)
Definition: ForcesAndSourcesCore.cpp:1995