Line data Source code
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 MFEM_ENABLED 11 : 12 : #include "MFEMTimeDerivativeMassKernel.h" 13 : 14 : registerMooseObject("MooseApp", MFEMTimeDerivativeMassKernel); 15 : 16 : InputParameters 17 8670 : MFEMTimeDerivativeMassKernel::validParams() 18 : { 19 8670 : InputParameters params = MFEMMassKernel::validParams(); 20 8670 : params.addClassDescription("Adds the domain integrator to an MFEM problem for the bilinear form " 21 : "$(k \\dot{u}, v)_\\Omega$ " 22 : "arising from the weak form of the operator " 23 : "$k \\dot{u}$."); 24 8670 : return params; 25 0 : } 26 : 27 20 : MFEMTimeDerivativeMassKernel::MFEMTimeDerivativeMassKernel(const InputParameters & parameters) 28 20 : : MFEMMassKernel(parameters), _var_dot_name(Moose::MFEM::GetTimeDerivativeName(_test_var_name)) 29 : { 30 20 : } 31 : 32 : #endif