https://mooseframework.inl.gov
Loading...
Searching...
No Matches
AdvectionIPHDGAssemblyHelper.h
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
10#pragma once
11
13
20{
21public:
23
24 AdvectionIPHDGAssemblyHelper(const MooseObject * const moose_obj,
26 const TransientInterface * const ti,
27 SystemBase & sys,
28 const Assembly & assembly,
29 const THREAD_ID tid,
30 const std::set<SubdomainID> & block_ids,
31 const std::set<BoundaryID> & boundary_ids);
32
33protected:
34 virtual ADRealVectorValue faceVelocity(unsigned int qp) const override;
35
38};
unsigned int THREAD_ID
Definition MooseTypes.h:237
Shared assembly for element-and-trace scalar hybridized DG discretizations of the advection equation.
Implements all the methods for assembling a hybridized interior penalty discontinuous Galerkin (IPDG-...
virtual ADRealVectorValue faceVelocity(unsigned int qp) const override
const ADMaterialProperty< RealVectorValue > & _face_velocity
Face evaluation of the H(div)-conforming cell velocity.
Keeps track of stuff related to assembling.
Definition Assembly.h:110
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
Every object that can be built by the factory should be derived from this class.
Definition MooseObject.h:31
Base class for a system (of equations)
Definition SystemBase.h:87
Interface for objects that needs transient capabilities.