interpolationCellPointWallModifiedI.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
27 
28 template<class Type>
30 (
32 ) const
33 {
34  const List<scalar>& weights = cpw.weights();
35  const List<label>& faceVertices = cpw.faceVertices();
36 
37  Type t = this->psi_[cpw.cell()]*weights[0];
38  t += this->psip_[faceVertices[0]]*weights[1];
39  t += this->psip_[faceVertices[1]]*weights[2];
40  t += this->psip_[faceVertices[2]]*weights[3];
41 
42  return t;
43 }
44 
45 
46 template<class Type>
48 (
49  const vector& position,
50  const label cellI,
51  const label faceI
52 ) const
53 {
54  return interpolate
55  (
57  (
58  this->pMesh_,
59  position,
60  cellI,
61  faceI
62  )
63  );
64 }
65 
66 
67 template<class Type>
69 (
70  const vector& position,
71  const tetIndices& tetIs,
72  const label faceI
73 ) const
74 {
75  if (faceI >= 0)
76  {
77  if (faceI != tetIs.face())
78  {
80  (
81  "inline Type "
82  "Foam::interpolationCellPointWallModifie<Type>::interpolate"
83  "("
84  "const vector& position, "
85  "const tetIndices& tetIs, "
86  "const label faceI"
87  ") const"
88  )
89  << "specified face " << faceI << " inconsistent with the face "
90  << "stored by tetIndices: " << tetIs.face()
91  << exit(FatalError);
92  }
93 
94  const polyBoundaryMesh& bm = this->pMesh_.boundaryMesh();
95  label patchI = bm.whichPatch(faceI);
96 
97  if (patchI != -1)
98  {
99  if (isA<wallPolyPatch>(bm[patchI]))
100  {
101  Type t = this->psi_[tetIs.cell()];
102 
103  return t;
104  }
105  }
106  }
107 
108  // If the wall face selection did not return, then use the normal
109  // interpolate method
110 
112  (
113  position,
114  tetIs,
115  faceI
116  );
117 }
118 
119 
120 // ************************************************************************* //
label cell() const
Return the cell.
Definition: tetIndicesI.H:30
Type interpolate(const cellPointWeightWallModified &cpw) const
Interpolate field for the given cellPointWeight.
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
Foam::cellPointWeightWallModified.
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:124
tmp< surfaceScalarField > interpolate(const RhoType &rho)
const List< scalar > & weights() const
Interpolation weights.
label cell() const
Cell index.
Foam::polyBoundaryMesh.
label whichPatch(const label faceIndex) const
Return patch index for a given face label.
#define FatalErrorIn(functionName)
Report an error message using Foam::FatalError.
Definition: error.H:314
error FatalError
const List< label > & faceVertices() const
Interpolation addressing for points on face.
Storage and named access for the indices of a tet which is part of the decomposition of a cell...
Definition: tetIndices.H:73
label face() const
Return the face.
Definition: tetIndicesI.H:36