https://mooseframework.inl.gov
ComputeLinearFVGreenGaussGradientFaceThread.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 
12 #include "MooseTypes.h"
13 #include "MooseMesh.h"
14 #include "MooseLinearVariableFV.h"
15 
16 // libmesh
17 #include "libmesh/elem_range.h"
18 #include "libmesh/threads.h"
19 #include "libmesh/system.h"
20 
21 class FEProblemBase;
22 class SystemBase;
23 
36 {
37 public:
45  FEProblemBase & fe_problem,
46  SystemBase & system,
47  std::vector<std::unique_ptr<NumericVector<Number>>> & temporary_gradient);
48 
56  using FaceInfoRange = StoredRange<MooseMesh::const_face_info_iterator, const FaceInfo *>;
57 
60  void operator()(const FaceInfoRange & range);
61 
65 
66 protected:
69 
71  const unsigned int _dim;
72 
75 
78 
80  const unsigned int _system_number;
81 
84 
87 
90  std::vector<std::unique_ptr<NumericVector<Number>>> & _temporary_gradient;
91 };
The gradient in a volume using Green Gauss theorem and a cell-centered finite-volume approximation ca...
void join(const ComputeLinearFVGreenGaussGradientFaceThread &y)
Join threads at the end of the execution.
const libMesh::System & _libmesh_system
Reference to the libMesh system backing the wrapper system.
MooseLinearVariableFV< Real > * _current_var
Pointer to the current variable.
SystemBase & _system
The system wrapper this thread operates on.
void operator()(const FaceInfoRange &range)
Operator which is used to execute the thread over a certain iterator range.
Base class for a system (of equations)
Definition: SystemBase.h:85
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
StoredRange< MooseMesh::const_face_info_iterator, const FaceInfo * > FaceInfoRange
ComputeLinearFVGreenGaussGradientFaceThread(FEProblemBase &fe_problem, SystemBase &system, std::vector< std::unique_ptr< NumericVector< Number >>> &temporary_gradient)
Class constructor.
const unsigned int _system_number
Global system number (the number of this system in the libmesh equation system)
tbb::split split
std::vector< std::unique_ptr< NumericVector< Number > > > & _temporary_gradient
Cache for the temporary gradient being built.
unsigned int THREAD_ID
Definition: MooseTypes.h:237