https://mooseframework.inl.gov
AdvectionIPHDGKernel.C
Go to the documentation of this file.
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 
11 #include "AdvectionIPHDGKernel.h"
12 
14 
17 {
18  auto params = IPHDGKernel::validParams();
20  params.addClassDescription("Adds element and interior face integrals for a hybridized interior "
21  "penalty discontinuous Galerkin discretization of an advection term.");
22  return params;
23 }
24 
26  : IPHDGKernel(params),
27  _iphdg_helper(std::make_unique<AdvectionIPHDGAssemblyHelper>(
28  this, this, this, _sys, _assembly, _tid, blockIDs(), std::set<BoundaryID>{}))
29 {
30 }
Implements an advection term for a interior penalty hybridized discretization.
Base kernel for implementing an interior penalty hybridized discretization.
Definition: IPHDGKernel.h:19
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
static InputParameters validParams()
Definition: IPHDGKernel.C:16
registerMooseObject("MooseApp", AdvectionIPHDGKernel)
Implements all the methods for assembling a hybridized interior penalty discontinuous Galerkin (IPDG-...
boundary_id_type BoundaryID
static InputParameters validParams()
AdvectionIPHDGKernel(const InputParameters &params)