https://mooseframework.inl.gov
Loading...
Searching...
No Matches
CellCenteredMapFunctor.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 "MooseFunctor.h"
13#include "GreenGaussGradient.h"
14#include "MathFVUtils.h"
15#include "libmesh/utility.h"
16#include "libmesh/type_tensor.h"
17#include "libmesh/compare_types.h"
18#include "libmesh/threads.h"
19
25template <typename T, typename Map>
26class CellCenteredMapFunctor : public Moose::FunctorBase<T>, public Map
27{
28public:
31 using typename Moose::FunctorBase<T>::DotType;
39
44 const std::string & name,
45 const bool extrapolated_boundary);
46
52 const std::set<SubdomainID> & sub_ids,
53 const std::string & name,
54 const bool extrapolated_boundary);
55
57 const Elem * elem,
58 const StateArg & state) const override;
59 bool hasBlocks(SubdomainID sub_id) const override;
60
64 bool hasBlocks(const Elem * elem) const;
65
66 bool supportsFaceArg() const override final { return true; }
67 bool supportsElemSideQpArg() const override final { return false; }
68
69private:
72
75 const std::set<SubdomainID> _sub_ids;
76
78
79 ValueType evaluate(const ElemArg & elem_arg, const StateArg &) const override;
80 ValueType evaluate(const ElemPointArg & elem_point, const StateArg & state) const override;
81 ValueType evaluate(const FaceArg & face, const StateArg &) const override;
82 ValueType evaluate(const ElemQpArg &, const StateArg &) const override;
83 ValueType evaluate(const ElemSideQpArg &, const StateArg &) const override;
84 ValueType evaluate(const NodeArg & elem_arg, const StateArg &) const override;
85
87 GradientType evaluateGradient(const ElemArg & elem_arg, const StateArg & state) const override;
88 GradientType evaluateGradient(const FaceArg & face, const StateArg & state) const override;
89};
90
91template <typename T, typename Map>
93 const std::string & name,
94 const bool extrapolated_boundary)
95 : Moose::FunctorBase<T>(name), _mesh(mesh), _extrapolated_boundary(extrapolated_boundary)
96{
97}
98
99template <typename T, typename Map>
101 const std::set<SubdomainID> & sub_ids,
102 const std::string & name,
103 const bool extrapolated_boundary)
104 : Moose::FunctorBase<T>(name),
105 _mesh(mesh),
106 _sub_ids(sub_ids == mesh.meshSubdomains() ? std::set<SubdomainID>() : sub_ids),
107 _extrapolated_boundary(extrapolated_boundary)
108{
109}
110
111template <typename T, typename Map>
112bool
114 const Elem *,
115 const StateArg &) const
116{
117 const bool defined_on_elem = hasBlocks(&fi.elem());
118 const bool defined_on_neighbor = hasBlocks(fi.neighborPtr());
119 const bool extrapolated = (defined_on_elem + defined_on_neighbor) == 1;
120
121 mooseAssert(defined_on_elem || defined_on_neighbor,
122 "This shouldn't be called if we aren't defined on either side.");
123 return extrapolated;
124}
125
126template <typename T, typename Map>
127bool
128CellCenteredMapFunctor<T, Map>::hasBlocks(const Elem * const elem) const
129{
130 if (!elem)
131 return false;
132
133 return hasBlocks(elem->subdomain_id());
134}
135
136template <typename T, typename Map>
137bool
139{
140 return _sub_ids.empty() || _sub_ids.count(sub_id);
141}
142
143template <typename T, typename Map>
146{
147 const Elem * const elem = elem_arg.elem;
148
149 auto it = this->find(elem->id());
150 if (it == this->end())
151 {
152 if (!_sub_ids.empty() && !_sub_ids.count(elem->subdomain_id()))
153 mooseError("Attempted to evaluate CellCenteredMapFunctor '",
154 this->functorName(),
155 "' with an element subdomain id of '",
156 elem->subdomain_id(),
157 "' but that subdomain id is not one of the subdomain ids the functor is "
158 "restricted to.");
159 else
160 mooseError("Attempted access into CellCenteredMapFunctor '",
161 this->functorName(),
162 "' with a key that does not yet exist in the map. Make sure to fill your "
163 "CellCenteredMapFunctor for all elements you will attempt to access later.");
164 }
165
166 return it->second;
167}
168
169template <typename T, typename Map>
172 const StateArg & state) const
173{
174 return (*this)(elem_point.makeElem(), state) +
175 (elem_point.point - elem_point.elem->vertex_average()) *
176 this->gradient(elem_point.makeElem(), state);
177}
178
179template <typename T, typename Map>
182{
183 const auto & fi = *face.fi;
184 mooseAssert(face.limiter_type == Moose::FV::LimiterType::CentralDifference,
185 "this implementation currently only supports linear interpolations");
186
187 const bool defined_on_elem = hasBlocks(&fi.elem());
188 const bool defined_on_neighbor = hasBlocks(fi.neighborPtr());
189 if (defined_on_elem && defined_on_neighbor)
190 return Moose::FV::linearInterpolation(*this, face, state);
191
192 if (defined_on_elem)
193 {
194 const auto elem_arg = face.makeElem();
195 const auto elem_value = (*this)(elem_arg, state);
196 if (!_extrapolated_boundary)
197 return elem_value;
198 // Two term expansion
199 return elem_value + this->gradient(elem_arg, state) * (fi.faceCentroid() - fi.elemCentroid());
200 }
201 else
202 {
203 mooseAssert(defined_on_neighbor, "We should be defined on one of the sides");
204 const auto neighbor_arg = face.makeNeighbor();
205 const auto neighbor_value = (*this)(neighbor_arg, state);
206 if (!_extrapolated_boundary)
207 return neighbor_value;
208
209 // Two term expansion
210 return neighbor_value +
211 this->gradient(neighbor_arg, state) * (fi.faceCentroid() - fi.neighborCentroid());
212 }
213}
214
215template <typename T, typename Map>
218{
219 mooseError("not implemented");
220}
221
222template <typename T, typename Map>
225{
226 mooseError("not implemented");
227}
228
229template <typename T, typename Map>
232{
233 mooseError("not implemented");
234}
235
236template <typename T, typename Map>
239 const StateArg & state) const
240{
241 return Moose::FV::greenGaussGradient(elem_arg, state, *this, _extrapolated_boundary, _mesh);
242}
243
244template <typename T, typename Map>
247{
248 return Moose::FV::greenGaussGradient(face, state, *this, _extrapolated_boundary, _mesh);
249}
const double T
void mooseError(Args &&... args)
const std::string name
Definition Setup.h:21
A functor whose evaluation relies on querying a map where the keys are element ids and the values cor...
bool supportsElemSideQpArg() const override final
CellCenteredMapFunctor(const MooseMesh &mesh, const std::set< SubdomainID > &sub_ids, const std::string &name, const bool extrapolated_boundary)
Use this constructor if you want to potentially restrict this object to a specified set of subdomains...
bool supportsFaceArg() const override final
ValueType evaluate(const ElemArg &elem_arg, const StateArg &) const override
const MooseMesh & _mesh
The mesh that this functor lives on.
bool hasBlocks(SubdomainID sub_id) const override
ValueType evaluate(const ElemSideQpArg &, const StateArg &) const override
ValueType evaluate(const ElemQpArg &, const StateArg &) const override
const std::set< SubdomainID > _sub_ids
The subdomain IDs that this functor lives on.
bool hasBlocks(const Elem *elem) const
Checks whether we are defined on the provided element.
ValueType evaluate(const NodeArg &elem_arg, const StateArg &) const override
bool isExtrapolatedBoundaryFace(const FaceInfo &fi, const Elem *elem, const StateArg &state) const override
GradientType evaluateGradient(const ElemArg &elem_arg, const StateArg &state) const override
CellCenteredMapFunctor(const MooseMesh &mesh, const std::string &name, const bool extrapolated_boundary)
Use this constructor when you want the object to live everywhere on the mesh.
GradientType evaluateGradient(const FaceArg &face, const StateArg &state) const override
ValueType evaluate(const ElemPointArg &elem_point, const StateArg &state) const override
ValueType evaluate(const FaceArg &face, const StateArg &) const override
const Elem & elem() const
const Elem * neighborPtr() const
typename FunctorReturnType< T, FunctorEvaluationKind::Gradient >::type GradientType
Point vertex_average() const
MeshBase & mesh
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)
libMesh::VectorValue< T > greenGaussGradient(const ElemArg &elem_arg, const StateArg &state_arg, const FunctorBase< T > &functor, const bool two_term_boundary_expansion, const MooseMesh &mesh, const bool force_green_gauss=false)
const libMesh::Elem * elem
ElemArg makeElem() const
libMesh::Point point
const libMesh::Elem * elem
ElemArg makeNeighbor() const
ElemArg makeElem() const
Moose::FV::LimiterType limiter_type
const FaceInfo * fi