https://mooseframework.inl.gov
LinearFVTurbulentDiffusion.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 
12 #include "LinearFVDiffusion.h"
13 
20 {
21 public:
23 
29 
30  virtual void initialSetup() override;
31 
32  virtual Real computeElemMatrixContribution() override;
33 
34  virtual Real computeNeighborMatrixContribution() override;
35 
36  virtual Real computeElemRightHandSideContribution() override;
37 
39 
41 
43 
44  virtual void addMatrixContribution() override;
45 
46  virtual void addRightHandSideContribution() override;
47 
48 protected:
51 
53  const std::vector<BoundaryName> & _wall_boundary_names;
54 
56  std::unordered_set<const Elem *> _wall_bounded;
57 };
const std::vector< BoundaryName > & _wall_boundary_names
Wall boundaries.
virtual Real computeBoundaryMatrixContribution(const LinearFVBoundaryCondition &bc) override
LinearFVTurbulentDiffusion(const InputParameters &params)
Class constructor.
virtual Real computeBoundaryRHSContribution(const LinearFVBoundaryCondition &bc) override
virtual Real computeNeighborMatrixContribution() override
std::unordered_set< const Elem * > _wall_bounded
List for wall bounded elements.
const Moose::Functor< Real > & _scaling_coeff
The functor for the scaling coefficient for the diffusion term.
virtual Real computeElemMatrixContribution() override
virtual void addMatrixContribution() override
virtual Real computeElemRightHandSideContribution() override
static InputParameters validParams()
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
Kernel that adds contributions from a diffusion term of the turbulent variables, limited in the near-...
virtual Real computeNeighborRightHandSideContribution() override
virtual void initialSetup() override
virtual void addRightHandSideContribution() override