10#ifdef MOOSE_MFEM_ENABLED
21 "Adds the domain integrator to an MFEM problem for the mixed bilinear form "
22 "$(-k\\vec u, \\vec \\nabla v)_\\Omega$.");
23 params.
addParam<MFEMScalarCoefficientName>(
"coefficient",
"1.",
"Name of property k to use.");
35mfem::BilinearFormIntegrator *
38 return new mfem::MixedVectorWeakDivergenceIntegrator(
_coef);
registerMooseObject("MooseApp", MFEMMixedVectorWeakDivergenceKernel)
static InputParameters validParams()
virtual mfem::BilinearFormIntegrator * createMBFIntegrator() override
Create MFEM mixed bilinear form integrator. Ownership managed by the caller.
mfem::Coefficient & _coef
MFEMMixedVectorWeakDivergenceKernel(const InputParameters ¶meters)