10 #ifdef MOOSE_MFEM_ENABLED 21 params.
addClassDescription(
"Hypre solver for the iterative solution of MFEM equation systems " 22 "using the flexible generalized minimal residual method.");
23 params.
addParam<mfem::real_t>(
"l_tol", 1e-5,
"Set the relative tolerance.");
24 params.
addParam<
int>(
"l_max_its", 10000,
"Set the maximum number of iterations.");
25 params.
addParam<
int>(
"kdim", 10,
"Set the k-dimension.");
26 params.
addParam<
int>(
"print_level", 2,
"Set the solver verbosity.");
27 params.
addParam<MFEMSolverName>(
"preconditioner",
"Optional choice of preconditioner to use.");
33 :
Moose::MFEM::LORLinearSolverBase<
mfem::HypreFGMRES>(parameters)
50 solver.iterative_mode = getParam<bool>(
"use_initial_guess");
51 solver.SetTol(getParam<mfem::real_t>(
"l_tol"));
52 solver.SetMaxIter(getParam<int>(
"l_max_its"));
53 solver.SetKDim(getParam<int>(
"kdim"));
54 solver.SetPrintLevel(getParam<int>(
"print_level"));
void ConstructSolver() override
Override in derived classes to construct and set the solver options.
MFEMProblem & getMFEMProblem()
Return the owning MFEM problem.
MFEMHypreFGMRES(const InputParameters ¶meters)
std::unique_ptr< mfem::Solver > _solver
Solver to be used for the problem.
static InputParameters validParams()
virtual void SetSolverParameters(mfem::HypreFGMRES &solver) override
Update the wrapped MFEM solver parameters.
registerMooseObject("MooseApp", MFEMHypreFGMRES)
static InputParameters validParams()
MPI_Comm getComm()
Return the MPI communicator associated with this FE problem's mesh.
void SetPreconditioner(T &solver)
Retrieves the preconditioner userobject if present, sets the member pointer to said object if still u...
Wrapper for mfem::HypreFGMRES solver.
MOOSE now contains C++17 code, so give a reasonable error message stating what the user can do to add...