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 : #include "DiffusionIPHDGAssemblyHelper.h" 11 : #include "DiffusionIPHDGKernel.h" 12 : 13 : registerMooseObject("MooseApp", DiffusionIPHDGKernel); 14 : 15 : InputParameters 16 14894 : DiffusionIPHDGKernel::validParams() 17 : { 18 14894 : auto params = IPHDGKernel::validParams(); 19 14894 : params += DiffusionIPHDGAssemblyHelper::validParams(); 20 14894 : params.addClassDescription( 21 : "Adds the element and interior face weak forms for a hybridized interior penalty " 22 : "discontinuous Galerkin discretization of a diffusion term."); 23 14894 : return params; 24 0 : } 25 : 26 316 : DiffusionIPHDGKernel::DiffusionIPHDGKernel(const InputParameters & params) 27 : : IPHDGKernel(params), 28 316 : _iphdg_helper(std::make_unique<DiffusionIPHDGAssemblyHelper>( 29 632 : this, this, this, _sys, _assembly, _tid, blockIDs(), std::set<BoundaryID>{})) 30 : { 31 316 : }