https://mooseframework.inl.gov
LinearFVTurbulentAdvection.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 
13 #include "RhieChowMassFlux.h"
15 
21 {
22 public:
25 
26  virtual void addMatrixContribution() override;
27 
28  virtual void addRightHandSideContribution() override;
29 
30  virtual void initialSetup() override;
31 
32 private:
35  std::pair<Real, Real> _advected_interp_coeffs;
36 
39 
41  const std::vector<BoundaryName> & _wall_boundary_names;
42 
44  std::unordered_set<const Elem *> _wall_bounded;
45 };
virtual void addRightHandSideContribution() override
virtual void addMatrixContribution() override
virtual void initialSetup() override
const std::vector< BoundaryName > & _wall_boundary_names
Wall boundaries.
std::pair< Real, Real > _advected_interp_coeffs
Container for the current advected interpolation coefficients on the face to make sure we don&#39;t compu...
An advection kernel that implements the advection term for the turbulent variables limited for the fi...
Moose::FV::InterpMethod _advected_interp_method
The interpolation method to use for the advected quantity.
static InputParameters validParams()
LinearFVTurbulentAdvection(const InputParameters &params)
An advection kernel that implements the advection term for the passive scalar transport equation...
std::unordered_set< const Elem * > _wall_bounded
List for wall bounded elements.