https://mooseframework.inl.gov
Loading...
Searching...
No Matches
NonlinearEigenSystem.C
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
11
12// MOOSE includes
13#include "DirichletBC.h"
14#include "EigenDirichletBC.h"
15#include "ArrayDirichletBC.h"
17#include "EigenProblem.h"
18#include "IntegratedBC.h"
19#include "KernelBase.h"
20#include "NodalBC.h"
21#include "TimeIntegrator.h"
22#include "SlepcSupport.h"
23#include "DGKernelBase.h"
24#include "ScalarKernelBase.h"
25#include "MooseVariableScalar.h"
26#include "ResidualObject.h"
27
28#include "libmesh/libmesh_config.h"
29#include "libmesh/petsc_matrix.h"
30#include "libmesh/sparse_matrix.h"
31#include "libmesh/diagonal_matrix.h"
32#include "libmesh/petsc_shell_matrix.h"
33#include "libmesh/petsc_solver_exception.h"
34#include "libmesh/slepc_eigen_solver.h"
35
36#ifdef LIBMESH_HAVE_SLEPC
37
38namespace Moose
39{
40
41void
42assemble_matrix(EquationSystems & es, const std::string & system_name)
43{
44 EigenProblem * p = es.parameters.get<EigenProblem *>("_eigen_problem");
45 auto & eigen_system = es.get_system<libMesh::CondensedEigenSystem>(system_name);
46 NonlinearEigenSystem & eigen_nl =
47 p->getNonlinearEigenSystem(/*nl_sys_num=*/eigen_system.number());
48
49 // If this is a nonlinear eigenvalue problem,
50 // we do not need to assemble anything
51 if (p->isNonlinearEigenvalueSolver(eigen_nl.number()))
52 {
53 // If you want an efficient eigensolver,
54 // please use PETSc 3.13 or newer.
55 // We need to do an unnecessary assembly,
56 // if you use PETSc that is older than 3.13.
57#if PETSC_RELEASE_LESS_THAN(3, 13, 0)
58 if (eigen_system.has_matrix_B())
59 p->computeJacobianTag(*eigen_system.current_local_solution,
60 eigen_system.get_matrix_B(),
61 eigen_nl.eigenMatrixTag());
62#endif
63 return;
64 }
65
66#if !PETSC_RELEASE_LESS_THAN(3, 13, 0)
67 // If we use shell matrices and do not use a shell preconditioning matrix,
68 // we only need to form a preconditioning matrix
69 if (eigen_system.use_shell_matrices() && !eigen_system.use_shell_precond_matrix())
70 {
71 p->computeJacobianTag(*eigen_system.current_local_solution,
72 eigen_system.get_precond_matrix(),
73 eigen_nl.precondMatrixTag());
74 return;
75 }
76#endif
77 // If it is a linear generalized eigenvalue problem,
78 // we assemble A and B together
79 if (eigen_system.generalized())
80 {
81 p->computeJacobianAB(*eigen_system.current_local_solution,
82 eigen_system.get_matrix_A(),
83 eigen_system.get_matrix_B(),
84 eigen_nl.nonEigenMatrixTag(),
85 eigen_nl.eigenMatrixTag());
86#if LIBMESH_HAVE_SLEPC
88 LibmeshPetscCallA(
89 p->comm().get(),
90 MatScale(cast_ref<PetscMatrix<Number> &>(eigen_system.get_matrix_B()).mat(), -1.0));
91#endif
92 return;
93 }
94
95 // If it is a linear eigenvalue problem, we assemble matrix A
96 {
97 p->computeJacobianTag(*eigen_system.current_local_solution,
98 eigen_system.get_matrix_A(),
99 eigen_nl.nonEigenMatrixTag());
100
101 return;
102 }
103}
104}
105
106NonlinearEigenSystem::NonlinearEigenSystem(EigenProblem & eigen_problem, const std::string & name)
108 eigen_problem, eigen_problem.es().add_system<libMesh::CondensedEigenSystem>(name), name),
109 _eigen_sys(eigen_problem.es().get_system<libMesh::CondensedEigenSystem>(name)),
110 _eigen_problem(eigen_problem),
111 _solver_configuration(nullptr),
112 _n_eigen_pairs_required(eigen_problem.getNEigenPairsRequired()),
113 _work_rhs_vector_AX(addVector("work_rhs_vector_Ax", false, PARALLEL)),
114 _work_rhs_vector_BX(addVector("work_rhs_vector_Bx", false, PARALLEL)),
115 _precond_matrix_includes_eigen(false),
116 _preconditioner(nullptr),
117 _num_constrained_dofs(0)
118{
120 cast_ptr<libMesh::SlepcEigenSolver<Number> *>(_eigen_sys.eigen_solver.get());
121
122 if (!solver)
123 mooseError("A slepc eigen solver is required");
124
125 // setup of our class @SlepcSolverConfiguration
127 std::make_unique<SlepcEigenSolverConfiguration>(eigen_problem, *solver, *this);
128
130
131 _Ax_tag = eigen_problem.addVectorTag("Ax_tag");
132
133 _Bx_tag = eigen_problem.addVectorTag("Eigen");
134
135 _A_tag = eigen_problem.addMatrixTag("A_tag");
136
137 _B_tag = eigen_problem.addMatrixTag("Eigen");
138
139 // By default, _precond_tag and _A_tag will share the same
140 // objects. If we want to include eigen contributions to
141 // the preconditioning matrix, and then _precond_tag will
142 // point to part of "B" objects
143 _precond_tag = eigen_problem.addMatrixTag("Eigen_precond");
144
145 // We do not rely on creating submatrices in the solve routine
147}
148
149void
151{
152 // If it is an eigen dirichlet boundary condition, we should skip it because their
153 // contributions should be zero. If we do not skip it, preconditioning matrix will
154 // be singular because boundary elements are zero.
155 if (_precond_matrix_includes_eigen && !dynamic_cast<EigenDirichletBC *>(&object) &&
156 !dynamic_cast<EigenArrayDirichletBC *>(&object))
157 object.useMatrixTag(_precond_tag, {});
158
159 auto & vtags = object.getVectorTags({});
160 auto & mtags = object.getMatrixTags({});
161
162 const bool eigen = (vtags.find(_Bx_tag) != vtags.end()) || (mtags.find(_B_tag) != mtags.end());
163
164 if (eigen && !_eigen_sys.generalized())
165 object.mooseError("This object has been marked as contributing to B or Bx but the eigen "
166 "problem type is not a generalized one");
167
168 // If it is an eigen kernel, mark its variable as eigen
169 if (eigen)
170 {
171 // Note: the object may be on the displaced system
172 auto sys = object.parameters().get<SystemBase *>("_sys");
173 auto vname = object.variable().name();
174 if (hasScalarVariable(vname))
175 sys->getScalarVariable(0, vname).eigen(true);
176 else
177 sys->getVariable(0, vname).eigen(true);
178
179 // Associate the eigen matrix tag and the vector tag
180 // if this is a eigen kernel
181 object.useMatrixTag(_B_tag, {});
182 object.useVectorTag(_Bx_tag, {});
183 }
184 else
185 {
186 // Noneigen Vector tag
187 object.useVectorTag(_Ax_tag, {});
188 // Noneigen Matrix tag
189 object.useMatrixTag(_A_tag, {});
190 // Noneigen Kernels
191 object.useMatrixTag(_precond_tag, {});
192 }
193}
194
195void
197{
198 if (!(_num_constrained_dofs = dofMap().n_constrained_dofs()))
199 return;
200
202 const auto m = cast_int<numeric_index_type>(_eigen_sys.local_non_condensed_dofs_vector.size());
203 auto M = m;
206 {
208 // A bit ludicrously MatCopy requires the matrix being copied to to be assembled
210 }
212 {
215 }
217 {
220 }
221}
222
223void
229
230void
236
237void
239{
240 const bool presolve_succeeded = preSolve();
241 if (!presolve_succeeded)
242 return;
243
244 std::unique_ptr<NumericVector<Number>> subvec;
245
246 // We apply initial guess for only nonlinear solver
248 {
250 {
253 }
254 else
256 }
257
258 const bool time_integrator_solve = std::any_of(_time_integrators.begin(),
259 _time_integrators.end(),
260 [](auto & ti) { return ti->overridesSolve(); });
261 if (time_integrator_solve)
262 mooseAssert(_time_integrators.size() == 1,
263 "If solve is overridden, then there must be only one time integrator");
264
265 if (time_integrator_solve)
266 _time_integrators.front()->solve();
267 else
268 system().solve();
269
270 for (auto & ti : _time_integrators)
271 {
272 if (!ti->overridesSolve())
273 ti->setNumIterationsLastSolve();
274 ti->postSolve();
275 }
276
277 // store solve information
279 {
280 auto snes = getSNES();
281
282 // nonlinear iterations
283 PetscInt nl_its;
284 LibmeshPetscCallA(_eigen_problem.comm().get(), SNESGetIterationNumber(snes, &nl_its));
285 _n_iters = nl_its;
286
287 // linear iterations
288 PetscInt l_its;
289 LibmeshPetscCallA(_eigen_problem.comm().get(), SNESGetLinearSolveIterations(snes, &l_its));
290 _n_linear_iters = l_its;
291
292 // final residual
293 PetscReal norm;
294 LibmeshPetscCall(SNESGetFunctionNorm(snes, &norm));
295 _final_residual = norm;
296 }
297
298 // store eigenvalues
299 unsigned int n_converged_eigenvalues = getNumConvergedEigenvalues();
300
302
303 if (_n_eigen_pairs_required < n_converged_eigenvalues)
304 n_converged_eigenvalues = _n_eigen_pairs_required;
305
306 _eigen_values.resize(n_converged_eigenvalues);
307 for (unsigned int n = 0; n < n_converged_eigenvalues; n++)
309
310 // Update the solution vector to the active eigenvector
311 if (n_converged_eigenvalues)
313
316}
317
318unsigned int
320{
321 if (!_time_integrators.empty())
322 mooseError("Not implemented for time integrators.");
324 mooseError("Only implemented for nonlinear eigenvalue solvers.");
325
326 return _n_iters;
327}
328
329unsigned int
331{
332 if (!_time_integrators.empty())
333 mooseError("Not implemented for time integrators.");
335 mooseError("Only implemented for nonlinear eigenvalue solvers.");
336
337 return _n_linear_iters;
338}
339
340Real
342{
344 mooseError("Only implemented for nonlinear eigenvalue solvers.");
345
346 return _final_residual;
347}
348
349void
351{
352 // Tell libmesh not to close matrices before solve
353 _eigen_sys.get_eigen_solver().set_close_matrix_before_solve(false);
354
356 {
357 // Condensed Matrix A
359 {
360 Mat mat = cast_ref<PetscMatrix<Number> &>(_eigen_sys.get_condensed_matrix_A()).mat();
361
363 }
364
365 // Condensed Matrix B
367 {
368 Mat mat = cast_ref<PetscMatrix<Number> &>(_eigen_sys.get_condensed_matrix_B()).mat();
369
371 }
372
373 // Condensed Preconditioning matrix
375 {
376 Mat mat = cast_ref<PetscMatrix<Number> &>(_eigen_sys.get_condensed_precond_matrix()).mat();
377
379 }
380 }
381 else
382 {
383 // Matrix A
385 {
386 Mat mat = cast_ref<PetscMatrix<Number> &>(_eigen_sys.get_matrix_A()).mat();
387
389 }
390
391 // Matrix B
393 {
394 Mat mat = cast_ref<PetscMatrix<Number> &>(_eigen_sys.get_matrix_B()).mat();
395
397 }
398
399 // Preconditioning matrix
401 {
402 Mat mat = cast_ref<PetscMatrix<Number> &>(_eigen_sys.get_precond_matrix()).mat();
403
405 }
406 }
407
408 // Shell matrix A
410 {
411 Mat mat = cast_ref<libMesh::PetscShellMatrix<Number> &>(_eigen_sys.get_shell_matrix_A()).mat();
412
413 // Attach callbacks for nonlinear eigenvalue solver
415
416 // Set MatMult operations for shell
418 }
419
420 // Shell matrix B
422 {
423 Mat mat = cast_ref<libMesh::PetscShellMatrix<Number> &>(_eigen_sys.get_shell_matrix_B()).mat();
424
426
427 // Set MatMult operations for shell
429 }
430
431 // Shell preconditioning matrix
433 {
434 Mat mat =
435 cast_ref<libMesh::PetscShellMatrix<Number> &>(_eigen_sys.get_shell_precond_matrix()).mat();
436
438 }
439}
440
441void
442NonlinearEigenSystem::stopSolve(const ExecFlagType &, const std::set<TagID> &)
443{
444 mooseError("did not implement yet \n");
445}
446
447void
452
453bool
458
459unsigned int
461{
462 mooseError("did not implement yet \n");
463 return 0;
464}
465
466NumericVector<Number> &
471
472NumericVector<Number> &
477
478NumericVector<Number> &
483
486{
487 mooseError("did not implement yet \n");
488 return NULL;
489}
490
491SNES
493{
494 EPS eps = getEPS();
495
497 {
498 SNES snes = nullptr;
499 LibmeshPetscCall(Moose::SlepcSupport::mooseSlepcEPSGetSNES(eps, &snes));
500 return snes;
501 }
502 else
503 mooseError("There is no SNES in linear eigen solver");
504}
505
506EPS
508{
510 cast_ptr<libMesh::SlepcEigenSolver<Number> *>(&(*_eigen_sys.eigen_solver));
511
512 if (!solver)
513 mooseError("Unable to retrieve eigen solver");
514
515 return solver->eps();
516}
517
518void
520{
522 {
523 const auto & nodal_bcs = _nodal_bcs.getActiveObjects();
524 for (const auto & nodal_bc : nodal_bcs)
525 {
526 // If this is a dirichlet boundary condition
527 auto nbc = std::dynamic_pointer_cast<DirichletBC>(nodal_bc);
528 // If this is a eigen Dirichlet boundary condition
529 auto eigen_nbc = std::dynamic_pointer_cast<EigenDirichletBC>(nodal_bc);
530 // ArrayDirichletBC
531 auto anbc = std::dynamic_pointer_cast<ArrayDirichletBC>(nodal_bc);
532 // EigenArrayDirichletBC
533 auto aeigen_nbc = std::dynamic_pointer_cast<EigenArrayDirichletBC>(nodal_bc);
534 // If it is a Dirichlet boundary condition, then value has to be zero
535 if (nbc && nbc->variable().eigen() && nbc->getParam<Real>("value"))
537 "Can't set an inhomogeneous Dirichlet boundary condition for eigenvalue problems.");
538 // If it is an array Dirichlet boundary condition, all values should be zero
539 else if (anbc)
540 {
541 auto & values = anbc->getParam<RealEigenVector>("values");
542 for (MooseIndex(values) i = 0; i < values.size(); i++)
543 {
544 if (values(i))
545 mooseError("Can't set an inhomogeneous array Dirichlet boundary condition for "
546 "eigenvalue problems.");
547 }
548 }
549 else if (!nbc && !eigen_nbc && !anbc && !aeigen_nbc)
551 "Invalid NodalBC for eigenvalue problems, please use homogeneous (array) Dirichlet.");
552 }
553 }
554}
555
556std::pair<Real, Real>
558{
559 unsigned int n_converged_eigenvalues = getNumConvergedEigenvalues();
560 if (n >= n_converged_eigenvalues)
561 mooseError(n, " not in [0, ", n_converged_eigenvalues, ")");
562 return _eigen_sys.get_eigenvalue(n);
563}
564
565std::pair<Real, Real>
567{
568 unsigned int n_converged_eigenvalues = getNumConvergedEigenvalues();
569
570 if (n >= n_converged_eigenvalues)
571 mooseError(n, " not in [0, ", n_converged_eigenvalues, ")");
572
573 return _eigen_sys.get_eigenpair(n);
574}
575
576void
577NonlinearEigenSystem::attachPreconditioner(Preconditioner<Number> * preconditioner)
578{
580
581 // If we have a customized preconditioner,
582 // We need to let PETSc know that
583 if (_preconditioner)
584 {
585 LibmeshPetscCall(Moose::SlepcSupport::registerPCToPETSc());
586 // Mark this, and then we can setup correct petsc options
589 }
590}
591
592void
594{
595 // Let us do nothing at the current moment
596}
597
598void
600{
602 "NonlinearEigenSystem::residualAndJacobianTogether is not implemented. It might even be "
603 "nonsensical. If it is sensical and you want this capability, please contact a MOOSE "
604 "developer.");
605}
606
607void
612
613void
618
619std::set<TagID>
621{
623 tags.insert(eigenVectorTag());
624 tags.insert(nonEigenVectorTag());
625 return tags;
626}
627
628std::set<TagID>
630{
632 tags.insert(eigenMatrixTag());
633 tags.insert(nonEigenMatrixTag());
634 return tags;
635}
636
637#else
638
640 const std::string & /*name*/)
641 : libMesh::ParallelObject(eigen_problem)
642{
643 mooseError("Need to install SLEPc to solve eigenvalue problems, please reconfigure libMesh\n");
644}
645
646#endif /* LIBMESH_HAVE_SLEPC */
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application.
Definition MooseError.h:311
std::array< Real, 2 > values
Definition MortarUtils.C:52
Boundary condition of a Dirichlet type for the eigen side.
Set Dirichlet boundary condition for eigenvalue problems.
Problem for solving eigenvalue problems.
bool negativeSignEigenKernel() const
A flag indicates if a negative sign is used in eigen kernels.
NonlinearEigenSystem & getNonlinearEigenSystem(const unsigned int nl_sys_num)
unsigned int activeEigenvalueIndex() const
Which eigenvalue is active.
virtual void computeJacobianTag(const NumericVector< Number > &soln, SparseMatrix< Number > &jacobian, TagID tag) override
Form a Jacobian matrix for all kernels and BCs with a given tag.
unsigned int getNEigenPairsRequired() const
bool isNonlinearEigenvalueSolver(unsigned int eigen_sys_num) const
void computeJacobianAB(const NumericVector< Number > &soln, SparseMatrix< Number > &jacobianA, SparseMatrix< Number > &jacobianB, TagID tagA, TagID tagB)
Form two Jacobian matrices, where each is associated with one tag, through one element-loop.
virtual void computeResidualTag(const NumericVector< Number > &soln, NumericVector< Number > &residual, TagID tag) override
Form a vector for all kernels and BCs with a given tag.
SolverParams & solverParams(unsigned int solver_sys_num=0)
Get the solver parameters.
std::vector< std::pair< R1, R2 > > get(const std::string &param1, const std::string &param2) const
Combine two vector parameters into a single vector of pairs.
const InputParameters & parameters() const
Get the parameters of the object.
Definition MooseBase.h:131
Class for containing MooseEnum item information.
bool hasActiveObjects(THREAD_ID tid=0) const
const std::vector< std::shared_ptr< T > > & getActiveObjects(THREAD_ID tid=0) const
Retrieve complete vector to the active all/block/boundary restricted objects for a given thread.
Nonlinear eigenvalue system to be solved.
TagID eigenVectorTag() const
Vector tag ID of right hand side.
virtual bool converged() override
Returns the convergence state.
virtual void postAddResidualObject(ResidualObject &object) override
Called after any ResidualObject-derived objects are added to the system.
NumericVector< Number > & residualVectorAX()
dof_id_type _num_constrained_dofs
The number of degrees of freedom constrained at the libMesh level, e.g.
TagID nonEigenVectorTag() const
Vector tag ID of left hand side.
virtual unsigned int getCurrentNonlinearIterationNumber() override
Returns the current nonlinear iteration number.
void computeScalingJacobian() override
Compute a "Jacobian" for automatic scaling purposes.
void computeScalingResidual() override
Compute a "residual" for automatic scaling purposes.
std::set< TagID > defaultMatrixTags() const override
Get the default matrix tags associted with this system.
virtual libMesh::NonlinearSolver< Number > * nonlinearSolver() override
virtual unsigned int nLinearIterations() const override
Return the number of linear iterations.
libMesh::CondensedEigenSystem & _eigen_sys
NonlinearEigenSystem(EigenProblem &problem, const std::string &name)
virtual SNES getSNES() override
Retrieve snes from slepc eigen solver.
void checkIntegrity()
For eigenvalue problems (including standard and generalized), inhomogeneous (Dirichlet or Neumann) bo...
virtual void postInit() override
virtual Real finalNonlinearResidual() const override
Return the final nonlinear residual.
virtual void turnOffJacobian() override
Turn off the Jacobian (must be called before equation system initialization)
virtual void attachPreconditioner(libMesh::Preconditioner< Number > *preconditioner) override
Attach a customized preconditioner that requires physics knowledge.
virtual NumericVector< Number > & RHS() override
NumericVector< Number > & residualVectorBX()
std::set< TagID > defaultVectorTags() const override
Get the default vector tags associated with this system.
libMesh::Preconditioner< Number > * preconditioner() const
void residualAndJacobianTogether() override
Call this method if you want the residual and Jacobian to be computed simultaneously.
virtual void solve() override
Solve the system (using libMesh magic)
std::pair< Real, Real > getConvergedEigenpair(dof_id_type n) const
Return the Nth converged eigenvalue and copies the respective eigen vector to the solution vector.
virtual void stopSolve(const ExecFlagType &exec_flag, const std::set< TagID > &vector_tags_to_close) override
Quit the current solve as soon as possible.
libMesh::Preconditioner< Number > * _preconditioner
TagID nonEigenMatrixTag() const
Matrix tag ID of left hand side.
TagID eigenMatrixTag() const
Matrix tag ID of right hand side.
NumericVector< Number > & _work_rhs_vector_BX
std::pair< Real, Real > getConvergedEigenvalue(dof_id_type n) const
Return the Nth converged eigenvalue.
unsigned int getNumConvergedEigenvalues() const
Get the number of converged eigenvalues.
virtual unsigned int nNonlinearIterations() const override
Return the number of non-linear iterations.
virtual void setupFiniteDifferencedPreconditioner() override
void initializeCondensedMatrices()
Initialize the condensed matrices.
std::unique_ptr< SlepcEigenSolverConfiguration > _solver_configuration
libMesh::CondensedEigenSystem & sys()
virtual void reinit() override
Reinitialize the system when the degrees of freedom in this system have changed.
virtual EPS getEPS()
Retrieve EPS (SLEPc eigen solver)
NumericVector< Number > & _work_rhs_vector_AX
std::vector< std::pair< Real, Real > > _eigen_values
Nonlinear system to be solved.
bool preSolve()
Perform some steps to get ready for the solver.
MooseObjectTagWarehouse< NodalBCBase > _nodal_bcs
std::unique_ptr< libMesh::DiagonalMatrix< Number > > _scaling_matrix
A diagonal matrix used for computing scaling.
virtual libMesh::System & system() override
Get the reference to the libMesh system.
This is the common base class for objects that give residual contributions.
Moose::SolveType _type
bool _customized_pc_for_eigen
const NumericVector< Number > * _current_solution
solution vector from solver
virtual TagID addVectorTag(const TagName &tag_name, const Moose::VectorTagType type=Moose::VECTOR_TAG_RESIDUAL)
Create a Tag.
Definition SubProblem.C:91
virtual TagID addMatrixTag(TagName tag_name)
Create a Tag.
Definition SubProblem.C:310
Base class for a system (of equations)
Definition SystemBase.h:87
virtual void postInit()
Definition SystemBase.h:163
virtual std::set< TagID > defaultMatrixTags() const
Get the default matrix tags associted with this system.
Definition SystemBase.h:338
std::vector< std::shared_ptr< TimeIntegrator > > _time_integrators
Time integrator.
unsigned int number() const
Gets the number of this system.
virtual bool hasScalarVariable(const std::string &var_name) const
Definition SystemBase.C:875
virtual const std::string & name() const
virtual libMesh::DofMap & dofMap()
Gets writeable reference to the dof map.
NumericVector< Number > & solution()
Definition SystemBase.h:203
virtual std::set< TagID > defaultVectorTags() const
Get the default vector tags associated with this system.
Definition SystemBase.h:331
virtual void reinit()
Reinitialize the system when the degrees of freedom in this system have changed.
Definition SystemBase.h:169
std::vector< dof_id_type > local_non_condensed_dofs_vector
void initialize_condensed_dofs(const std::set< dof_id_type > &global_condensed_dofs_set=std::set< dof_id_type >())
SparseMatrix< Number > & get_condensed_matrix_B()
virtual std::pair< Real, Real > get_eigenpair(dof_id_type i) override
SparseMatrix< Number > & get_condensed_precond_matrix()
bool has_condensed_precond_matrix() const
SparseMatrix< Number > & get_condensed_matrix_A()
void set_solver_configuration(SolverConfiguration &solver_configuration)
void set_initial_space(NumericVector< Number > &initial_space_in)
virtual std::pair< Real, Real > get_eigenvalue(dof_id_type i)
const SparseMatrix< Number > & get_matrix_B() const
const SparseMatrix< Number > & get_precond_matrix() const
const ShellMatrix< Number > & get_shell_matrix_A() const
unsigned int get_n_converged() const
const ShellMatrix< Number > & get_shell_precond_matrix() const
bool has_shell_precond_matrix() const
const ShellMatrix< Number > & get_shell_matrix_B() const
const SparseMatrix< Number > & get_matrix_A() const
std::unique_ptr< EigenSolver< Number > > eigen_solver
const EigenSolver< Number > & get_eigen_solver() const
virtual std::unique_ptr< NumericVector< T > > get_subvector(const std::vector< numeric_index_type > &)
virtual void restore_subvector(std::unique_ptr< NumericVector< T > >, const std::vector< numeric_index_type > &)
const Parallel::Communicator & _communicator
const Parallel::Communicator & comm() const
const T & get(std::string_view) const
virtual void init(const numeric_index_type m, const numeric_index_type n, const numeric_index_type m_l, const numeric_index_type n_l, const numeric_index_type nnz=30, const numeric_index_type noz=10, const numeric_index_type blocksize=1)=0
virtual void close()=0
virtual void solve()
PETSC_EXTERN PetscErrorCode registerPCToPETSc()
Let PETSc know there is a preconditioner.
PetscErrorCode mooseSlepcEPSGetSNES(EPS eps, SNES *snes)
Retrieve SNES from EPS.
void setOperationsForShellMat(EigenProblem &eigen_problem, Mat mat, bool eigen)
Set operations to shell mat.
void attachCallbacksToMat(EigenProblem &eigen_problem, Mat mat, bool eigen)
Attach call backs to mat.
MOOSE now contains C++17 code, so give a reasonable error message stating what the user can do to add...
@ ST_JFNK
Jacobian-Free Newton Krylov.
Definition MooseTypes.h:899
void assemble_matrix(EquationSystems &es, const std::string &system_name)
The following methods are specializations for using the libMesh::Parallel::packed_range_* routines fo...