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-2015 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  << "specified face " << faceI << " inconsistent with the face "
81  << "stored by tetIndices: " << tetIs.face()
82  << exit(FatalError);
83  }
84 
85  const polyBoundaryMesh& bm = this->pMesh_.boundaryMesh();
86  label patchI = bm.whichPatch(faceI);
87 
88  if (patchI != -1)
89  {
90  if (isA<wallPolyPatch>(bm[patchI]))
91  {
92  Type t = this->psi_[tetIs.cell()];
93 
94  return t;
95  }
96  }
97  }
98 
99  // If the wall face selection did not return, then use the normal
100  // interpolate method
101 
103  (
104  position,
105  tetIs,
106  faceI
107  );
108 }
109 
110 
111 // ************************************************************************* //
Foam::polyBoundaryMesh
Foam::polyBoundaryMesh.
Definition: polyBoundaryMesh.H:60
Foam::cellPointWeight::weights
const List< scalar > & weights() const
Interpolation weights.
Definition: cellPointWeight.H:114
Foam::MULES::interpolate
tmp< surfaceScalarField > interpolate(const RhoType &rho)
Definition: IMULESTemplates.C:40
Foam::cellPointWeightWallModified
Foam::cellPointWeightWallModified.
Definition: cellPointWeightWallModified.H:53
Foam::label
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::tetIndices::face
label face() const
Return the face.
Definition: tetIndicesI.H:36
Foam::polyBoundaryMesh::whichPatch
label whichPatch(const label faceIndex) const
Return patch index for a given face label.
Definition: polyBoundaryMesh.C:703
Foam::FatalError
error FatalError
Foam::cellPointWeight::cell
label cell() const
Cell index.
Definition: cellPointWeight.H:108
Foam::tetIndices::cell
label cell() const
Return the cell.
Definition: tetIndicesI.H:30
Foam::exit
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:124
Foam::tetIndices
Storage and named access for the indices of a tet which is part of the decomposition of a cell.
Definition: tetIndices.H:73
FatalErrorInFunction
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:318
Foam::interpolationCellPointWallModified::interpolate
Type interpolate(const cellPointWeightWallModified &cpw) const
Interpolate field for the given cellPointWeight.
Definition: interpolationCellPointWallModifiedI.H:30
Foam::Vector< scalar >
Foam::List< scalar >
Foam::cellPointWeight::faceVertices
const List< label > & faceVertices() const
Interpolation addressing for points on face.
Definition: cellPointWeight.H:120