https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Protected Attributes | List of all members
ComputeLinearFVGreenGaussGradientFaceThread Class Reference

The gradient in a volume using Green Gauss theorem and a cell-centered finite-volume approximation can be computed as follows: More...

#include <ComputeLinearFVGreenGaussGradientFaceThread.h>

Public Types

using FaceInfoRange = StoredRange< MooseMesh::const_face_info_iterator, const FaceInfo * >
 

Public Member Functions

 ComputeLinearFVGreenGaussGradientFaceThread (FEProblemBase &fe_problem, SystemBase &system, std::vector< std::unique_ptr< NumericVector< Number > > > &temporary_gradient, const std::unordered_set< unsigned int > &gradient_variables)
 Class constructor.
 
 ComputeLinearFVGreenGaussGradientFaceThread (ComputeLinearFVGreenGaussGradientFaceThread &x, Threads::split split)
 Splitting constructor.
 
void operator() (const FaceInfoRange &range)
 Operator which is used to execute the thread over a certain iterator range.
 
void join (const ComputeLinearFVGreenGaussGradientFaceThread &y)
 Join threads at the end of the execution.
 

Protected Attributes

FEProblemBase_fe_problem
 Reference to the problem.
 
const unsigned int _dim
 The dimension of the domain.
 
SystemBase_system
 The system wrapper this thread operates on.
 
const libMesh::System_libmesh_system
 Reference to the libMesh system backing the wrapper system.
 
const unsigned int _system_number
 Global system number (the number of this system in the libmesh equation system)
 
THREAD_ID _tid
 Thread ID.
 
MooseLinearVariableFV< Real > * _current_var
 Pointer to the current variable.
 
std::vector< std::unique_ptr< NumericVector< Number > > > & _temporary_gradient
 Cache for the temporary gradient being built.
 
const std::unordered_set< unsigned int > & _gradient_variables
 Indices of the variables this producer should compute gradients for.
 

Detailed Description

The gradient in a volume using Green Gauss theorem and a cell-centered finite-volume approximation can be computed as follows:

\nabla u \approx \frac{1}{V_C} \sum_f u_f\vec{S}_f,

where V_C denotes the volume of the cell, f is a face iterator, while u_f and \vec{S}_f are the face value of the variable and surface area vector (the product of the surface area and normals), respectively. This object carries out the summation part over the faces (\sum_f u_f\vec{S}_f).

Definition at line 37 of file ComputeLinearFVGreenGaussGradientFaceThread.h.

Member Typedef Documentation

◆ FaceInfoRange

Constructor & Destructor Documentation

◆ ComputeLinearFVGreenGaussGradientFaceThread() [1/2]

ComputeLinearFVGreenGaussGradientFaceThread::ComputeLinearFVGreenGaussGradientFaceThread ( FEProblemBase fe_problem,
SystemBase system,
std::vector< std::unique_ptr< NumericVector< Number > > > &  temporary_gradient,
const std::unordered_set< unsigned int > &  gradient_variables 
)

Class constructor.

Parameters
fe_problemReference to the problem
systemThe system which contains variables that need gradients.
temporary_gradientScratch storage for gradients being assembled.

Definition at line 16 of file ComputeLinearFVGreenGaussGradientFaceThread.C.

21 : _fe_problem(fe_problem),
23 _system(system),
24 _libmesh_system(system.system()),
26 _temporary_gradient(temporary_gradient),
27 _gradient_variables(gradient_variables)
28{
29}
const unsigned int _system_number
Global system number (the number of this system in the libmesh equation system)
const std::unordered_set< unsigned int > & _gradient_variables
Indices of the variables this producer should compute gradients for.
std::vector< std::unique_ptr< NumericVector< Number > > > & _temporary_gradient
Cache for the temporary gradient being built.
SystemBase & _system
The system wrapper this thread operates on.
const libMesh::System & _libmesh_system
Reference to the libMesh system backing the wrapper system.
virtual MooseMesh & mesh() override
virtual unsigned int dimension() const
Returns MeshBase::mesh_dimension(), (not MeshBase::spatial_dimension()!) of the underlying libMesh me...
Definition MooseMesh.C:2994
virtual libMesh::System & system()=0
Get the reference to the libMesh system.
unsigned int number() const

◆ ComputeLinearFVGreenGaussGradientFaceThread() [2/2]

ComputeLinearFVGreenGaussGradientFaceThread::ComputeLinearFVGreenGaussGradientFaceThread ( ComputeLinearFVGreenGaussGradientFaceThread x,
Threads::split  split 
)

Splitting constructor.

Parameters
xReference to the other bodies
splitThe thread split

Definition at line 31 of file ComputeLinearFVGreenGaussGradientFaceThread.C.

34 _dim(x._dim),
38 // This will be the vector we work on since the old gradient might still be needed
39 // to compute extrapolated boundary conditions for example.
42{
43}

Member Function Documentation

◆ join()

void ComputeLinearFVGreenGaussGradientFaceThread::join ( const ComputeLinearFVGreenGaussGradientFaceThread y)

Join threads at the end of the execution.

Parameters
yReference to the other bodies

Definition at line 160 of file ComputeLinearFVGreenGaussGradientFaceThread.C.

162{
163}

◆ operator()()

void ComputeLinearFVGreenGaussGradientFaceThread::operator() ( const FaceInfoRange range)

Operator which is used to execute the thread over a certain iterator range.

Parameters
rangeThe range of FaceInfos which should be computed.

Definition at line 46 of file ComputeLinearFVGreenGaussGradientFaceThread.C.

47{
49 _tid = puid.id;
50
51 unsigned int size = 0;
52
53 for (const auto & variable : _system.getVariables(_tid))
54 {
55 _current_var = dynamic_cast<MooseLinearVariableFV<Real> *>(variable);
56 if (!_current_var)
57 continue;
58
60 {
61 if (!size)
62 size = range.size();
63
64 std::vector<std::vector<Real>> temporary_values_elem(_temporary_gradient.size(),
65 std::vector<Real>(size, 0.0));
66 std::vector<std::vector<Real>> temporary_values_neighbor(_temporary_gradient.size(),
67 std::vector<Real>(size, 0.0));
68 std::vector<dof_id_type> dof_indices_elem(size, 0);
69 std::vector<dof_id_type> dof_indices_neighbor(size, 0);
70
71 {
73
74 // Iterate over all the face infos in the range
75 auto face_iterator = range.begin();
76 for (const auto & face_i : make_range(size))
77 {
78 const auto & face_info = *face_iterator;
79
80 const auto current_face_type =
81 face_info->faceType(std::make_pair(_current_var->number(), _system_number));
82
83 // First we check if this face is internal to the variable, if yes, contribute to both
84 // sides
85 if (current_face_type == FaceInfo::VarFaceNeighbors::BOTH)
86 {
87 dof_indices_elem[face_i] =
88 face_info->elemInfo()->dofIndices()[_system_number][_current_var->number()];
89 dof_indices_neighbor[face_i] =
90 face_info->neighborInfo()->dofIndices()[_system_number][_current_var->number()];
91
92 const auto face_value =
93 Moose::FV::linearInterpolation(solution_reader(dof_indices_elem[face_i]),
94 solution_reader(dof_indices_neighbor[face_i]),
95 *face_info,
96 true);
97
98 const auto contribution =
99 face_info->normal() * face_info->faceArea() * face_info->faceCoord() * face_value;
100
101 for (const auto i : make_range(_dim))
102 {
103 temporary_values_elem[i][face_i] = contribution(i);
104 temporary_values_neighbor[i][face_i] = -contribution(i);
105 }
106 }
107 // If this face is on the boundary of the block where the variable is defined, we
108 // check for boundary conditions. If we don't find any we use an automatic one-term
109 // expansion to compute the face value.
110 else if (current_face_type == FaceInfo::VarFaceNeighbors::ELEM ||
111 current_face_type == FaceInfo::VarFaceNeighbors::NEIGHBOR)
112 {
113 auto * bc_pointer =
114 _current_var->getBoundaryCondition(*face_info->boundaryIDs().begin());
115
116 if (bc_pointer)
117 bc_pointer->setupFaceData(face_info, current_face_type);
118
119 const auto * const elem_info = current_face_type == FaceInfo::VarFaceNeighbors::ELEM
120 ? face_info->elemInfo()
121 : face_info->neighborInfo();
122
123 // We have to account for cases when this face is an internal boundary and the normal
124 // points in the wrong direction
125 const auto multiplier =
126 current_face_type == FaceInfo::VarFaceNeighbors::ELEM ? 1.0 : -1.0;
127 auto & dof_id_container = current_face_type == FaceInfo::VarFaceNeighbors::ELEM
128 ? dof_indices_elem
129 : dof_indices_neighbor;
130 auto & contribution_container = current_face_type == FaceInfo::VarFaceNeighbors::ELEM
131 ? temporary_values_elem
132 : temporary_values_neighbor;
133
134 dof_id_container[face_i] =
135 elem_info->dofIndices()[_system_number][_current_var->number()];
136
137 // If we don't have a boundary condition, then it's a natural condition. We'll use a
138 // one-term expansion approximation in that case
139 const auto contribution = multiplier * face_info->normal() * face_info->faceArea() *
140 face_info->faceCoord() *
141 (bc_pointer ? bc_pointer->computeBoundaryValue()
142 : solution_reader(dof_id_container[face_i]));
143 for (const auto i : make_range(_dim))
144 contribution_container[i][face_i] = contribution(i);
145 }
146 face_iterator++;
147 }
148 }
149 for (const auto i : make_range(_dim))
150 {
151 _temporary_gradient[i]->add_vector(temporary_values_elem[i].data(), dof_indices_elem);
152 _temporary_gradient[i]->add_vector(temporary_values_neighbor[i].data(),
153 dof_indices_neighbor);
154 }
155 }
156 }
157}
MooseLinearVariableFV< Real > * _current_var
Pointer to the current variable.
void setupFaceData(const FaceInfo *face_info, const FaceInfo::VarFaceNeighbors face_type)
Set current face info.
This class provides variable solution interface for linear finite volume problems.
LinearFVBoundaryCondition * getBoundaryCondition(const BoundaryID bd_id) const
Get the boundary condition object which corresponds to the given boundary ID.
unsigned int number() const
Get variable number coming from libMesh.
A class which helps with repeated reading from a petsc vector.
std::unique_ptr< NumericVector< Number > > current_local_solution
libMesh::CompareTypes< T, T2 >::supertype linearInterpolation(const T &value1, const T2 &value2, const FaceInfo &fi, const bool one_is_elem, const InterpMethod interp_method=InterpMethod::Average)
A simple linear interpolation of values between cell centers to a cell face.
IntRange< T > make_range(T beg, T end)

Member Data Documentation

◆ _current_var

MooseLinearVariableFV<Real>* ComputeLinearFVGreenGaussGradientFaceThread::_current_var
protected

Pointer to the current variable.

Definition at line 89 of file ComputeLinearFVGreenGaussGradientFaceThread.h.

Referenced by operator()().

◆ _dim

const unsigned int ComputeLinearFVGreenGaussGradientFaceThread::_dim
protected

The dimension of the domain.

Definition at line 74 of file ComputeLinearFVGreenGaussGradientFaceThread.h.

Referenced by operator()().

◆ _fe_problem

FEProblemBase& ComputeLinearFVGreenGaussGradientFaceThread::_fe_problem
protected

Reference to the problem.

Definition at line 71 of file ComputeLinearFVGreenGaussGradientFaceThread.h.

◆ _gradient_variables

const std::unordered_set<unsigned int>& ComputeLinearFVGreenGaussGradientFaceThread::_gradient_variables
protected

Indices of the variables this producer should compute gradients for.

Definition at line 96 of file ComputeLinearFVGreenGaussGradientFaceThread.h.

Referenced by operator()().

◆ _libmesh_system

const libMesh::System& ComputeLinearFVGreenGaussGradientFaceThread::_libmesh_system
protected

Reference to the libMesh system backing the wrapper system.

Definition at line 80 of file ComputeLinearFVGreenGaussGradientFaceThread.h.

Referenced by operator()().

◆ _system

SystemBase& ComputeLinearFVGreenGaussGradientFaceThread::_system
protected

The system wrapper this thread operates on.

Definition at line 77 of file ComputeLinearFVGreenGaussGradientFaceThread.h.

Referenced by operator()().

◆ _system_number

const unsigned int ComputeLinearFVGreenGaussGradientFaceThread::_system_number
protected

Global system number (the number of this system in the libmesh equation system)

Definition at line 83 of file ComputeLinearFVGreenGaussGradientFaceThread.h.

Referenced by operator()().

◆ _temporary_gradient

std::vector<std::unique_ptr<NumericVector<Number> > >& ComputeLinearFVGreenGaussGradientFaceThread::_temporary_gradient
protected

Cache for the temporary gradient being built.

It is needed because in certain scenarios the old gradient is used while assembling the replacement gradient.

Definition at line 93 of file ComputeLinearFVGreenGaussGradientFaceThread.h.

Referenced by operator()().

◆ _tid

THREAD_ID ComputeLinearFVGreenGaussGradientFaceThread::_tid
protected

Thread ID.

Definition at line 86 of file ComputeLinearFVGreenGaussGradientFaceThread.h.

Referenced by operator()().


The documentation for this class was generated from the following files: