https://mooseframework.inl.gov
MFEMOperatorJacobiSmoother.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 
10 #ifdef MOOSE_MFEM_ENABLED
11 
13 #include "MFEMProblem.h"
14 
16 
19 {
21  params.addClassDescription("MFEM solver for performing Jacobi smoothing of the equation system.");
22 
23  return params;
24 }
25 
27  : MFEMSolverBase(parameters)
28 {
30 }
31 
32 void
34 {
35  _solver = std::make_unique<mfem::OperatorJacobiSmoother>();
36 }
37 
38 void
39 MFEMOperatorJacobiSmoother::updateSolver(mfem::ParBilinearForm & a, mfem::Array<int> & tdofs)
40 {
41  if (_lor)
42  {
44  mooseError("Low-Order-Refined solver requires the FESpace closed_basis to be GaussLobatto "
45  "and the open-basis to be IntegratedGLL for ND and RT elements.");
46 
47  _solver.reset(new mfem::LORSolver<mfem::OperatorJacobiSmoother>(a, tdofs));
48  }
49 }
50 
51 #endif
const InputParameters & parameters() const
Get the parameters of the object.
Definition: MooseBase.h:127
Wrapper for mfem::OperatorJacobiSmoother solver.
void updateSolver(mfem::ParBilinearForm &a, mfem::Array< int > &tdofs) override
Updates the solver with the bilinear form in case LOR solve is required.
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
static InputParameters validParams()
void constructSolver(const InputParameters &parameters) override
Override in derived classes to construct and set the solver options.
static InputParameters validParams()
virtual bool checkSpectralEquivalence(mfem::ParBilinearForm &blf) const
Checks for the correct configuration of quadrature bases for LOR spectral equivalence.
registerMooseObject("MooseApp", MFEMOperatorJacobiSmoother)
bool _lor
Variable defining whether to use LOR solver.
Base class for wrapping mfem::Solver-derived classes.
MFEMOperatorJacobiSmoother(const InputParameters &parameters)
void mooseError(Args &&... args) const
Emits an error prefixed with object name and type and optionally a file path to the top-level block p...
Definition: MooseBase.h:267
void addClassDescription(const std::string &doc_string)
This method adds a description of the class that will be displayed in the input file syntax dump...
std::unique_ptr< mfem::Solver > _solver
Solver to be used for the problem.