10#ifdef MOOSE_MFEM_ENABLED
22 "Adds the domain integrator to an MFEM problem for the mixed bilinear form "
23 "$(k\\vec\\nabla u, \\vec v)_\\Omega$ "
24 "arising from the weak form of the gradient operator "
25 "$k\\vec \\nabla u$.");
26 params.
addParam<MFEMScalarCoefficientName>(
"coefficient",
"1.",
"Name of property k to use.");
37mfem::BilinearFormIntegrator *
40 return new mfem::MixedVectorGradientIntegrator(
_coef);
registerMooseObject("MooseApp", MFEMMixedVectorGradientKernel)
mfem::Coefficient & _coef
static InputParameters validParams()
virtual mfem::BilinearFormIntegrator * createMBFIntegrator() override
Create MFEM mixed bilinear form integrator. Ownership managed by the caller.
MFEMMixedVectorGradientKernel(const InputParameters ¶meters)