https://mooseframework.inl.gov
MassContinuityIPHDGKernel.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 
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 a conservation of "
22  "mass term for incompressible Navier-Stokes.");
23  return params;
24 }
25 
27  : IPHDGKernel(params),
28  _iphdg_helper(std::make_unique<MassContinuityAssemblyHelper>(
29  this, this, this, _mesh, _sys, _assembly, _tid, blockIDs(), std::set<BoundaryID>{}))
30 {
31 }
32 
35 {
36  return *_iphdg_helper;
37 }
Implements an advection term for a interior penalty hybridized discretization.
std::unique_ptr< MassContinuityAssemblyHelper > _iphdg_helper
The assembly helper providing the required IP-HDG method implementations.
Implements all the methods for assembling a hybridized interior penalty discontinuous Galerkin (IPDG-...
static InputParameters validParams()
registerMooseObject("NavierStokesApp", MassContinuityIPHDGKernel)
boundary_id_type BoundaryID
virtual IPHDGAssemblyHelper & iphdgHelper() override
MassContinuityIPHDGKernel(const InputParameters &params)
static InputParameters validParams()