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 MOOSE_MFEM_ENABLED 11 : 12 : #include "MFEMComplexKernel.h" 13 : #include "MFEMProblem.h" 14 : #include "ScaleIntegrator.h" 15 : 16 : registerMooseObject("MooseApp", MFEMComplexKernel); 17 : 18 : InputParameters 19 2220 : MFEMComplexKernel::validParams() 20 : { 21 2220 : InputParameters params = MFEMKernel::validParams(); 22 2220 : params.addClassDescription( 23 : "Holds MFEMKernel objects for the real and imaginary parts of a complex kernel."); 24 : 25 2220 : return params; 26 0 : } 27 : 28 61 : MFEMComplexKernel::MFEMComplexKernel(const InputParameters & parameters) : MFEMKernel(parameters) {} 29 : 30 : #endif