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 "MFEMVectorBoundaryIntegratedBC.h" 13 : 14 : registerMooseObject("MooseApp", MFEMVectorBoundaryIntegratedBC); 15 : 16 : InputParameters 17 8650 : MFEMVectorBoundaryIntegratedBC::validParams() 18 : { 19 8650 : InputParameters params = MFEMIntegratedBC::validParams(); 20 8650 : params.addClassDescription("Adds the boundary integrator to an MFEM problem for the linear form " 21 : "$(\\vec f, \\vec v)_{\\partial\\Omega}$"); 22 8650 : params.addParam<MFEMVectorCoefficientName>( 23 : "vector_coefficient", "1. 1. 1.", "Vector coefficient used in the boundary integrator"); 24 8650 : return params; 25 0 : } 26 : 27 10 : MFEMVectorBoundaryIntegratedBC::MFEMVectorBoundaryIntegratedBC(const InputParameters & parameters) 28 10 : : MFEMIntegratedBC(parameters), _vec_coef(getVectorCoefficient("vector_coefficient")) 29 : { 30 10 : } 31 : 32 : // Create a new MFEM integrator to apply to the RHS of the weak form. Ownership managed by the 33 : // caller. 34 : mfem::LinearFormIntegrator * 35 10 : MFEMVectorBoundaryIntegratedBC::createLFIntegrator() 36 : { 37 10 : return new mfem::VectorBoundaryLFIntegrator(_vec_coef); 38 : } 39 : 40 : // Create a new MFEM integrator to apply to LHS of the weak form. Ownership managed by the caller. 41 : mfem::BilinearFormIntegrator * 42 10 : MFEMVectorBoundaryIntegratedBC::createBFIntegrator() 43 : { 44 10 : return nullptr; 45 : } 46 : 47 : #endif