https://mooseframework.inl.gov
MFEMKernel.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 
12 #include "MFEMKernel.h"
13 #include "MFEMProblem.h"
14 #include "libmesh/ignore_warnings.h"
15 #include "mfem/miniapps/common/mesh_extras.hpp"
16 #include "libmesh/restore_warnings.h"
17 
20 {
23  params.registerBase("Kernel");
24  params.registerSystemAttributeName("Kernel");
25  params.addParam<VariableName>("variable",
26  "Variable labelling the weak form this kernel is added to");
27  return params;
28 }
29 
31  : MFEMObject(parameters),
32  MFEMBlockRestrictable(parameters,
33  getMFEMProblem().getMFEMVariableMesh(getParam<VariableName>("variable"))),
34  _test_var_name(getParam<VariableName>("variable"))
35 {
36 }
37 
38 #endif
Thin base for MFEM objects backed directly by MooseObject instead of UserObject.
Definition: MFEMObject.h:25
void registerSystemAttributeName(const std::string &value)
This method is used to define the MOOSE system name that is used by the TheWarehouse object for stori...
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
void registerBase(const std::string &value)
This method must be called from every base "Moose System" to create linkage with the Action System...
MFEMKernel(const InputParameters &parameters)
Definition: MFEMKernel.C:30
static InputParameters validParams()
Declare the common parameters required by MFEM MooseObject-backed classes.
Definition: MFEMObject.C:17
static InputParameters validParams()
void addParam(const std::string &name, const S &value, const std::string &doc_string)
These methods add an optional parameter and a documentation string to the InputParameters object...
Base class for construction of an object that is restricted to a subset of subdomains of the problem ...
static InputParameters validParams()
Definition: MFEMKernel.C:19