directionInterpolate.H
Go to the documentation of this file.
1 namespace Foam
2 {
3 
4 //- Interpolate field vf according to direction dir
5 template<class Type>
6 tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> interpolate
7 (
8  const GeometricField<Type, fvPatchField, volMesh>& vf,
9  const surfaceScalarField& dir,
10  const word& reconFieldName = word::null
11 )
12 {
14  (
16  (
17  vf,
18  dir,
19  "reconstruct("
20  + (reconFieldName.empty() ? vf.name() : reconFieldName)
21  + ')'
22  )
23  );
24 
26 
27  sf.rename(vf.name() + '_' + dir.name());
28 
29  return tsf;
30 }
31 
32 }
const word & name() const noexcept
Return the object name.
Definition: IOobjectI.H:195
bool interpolate(const vector &p1, const vector &p2, const vector &o, vector &n, scalar l)
Definition: curveTools.C:75
A class for handling words, derived from Foam::string.
Definition: word.H:63
static const word null
An empty word.
Definition: word.H:84
static tmp< GeometricField< Type, fvsPatchField, surfaceMesh > > interpolate(const GeometricField< Type, fvPatchField, volMesh > &tvf, const surfaceScalarField &faceFlux, Istream &schemeData)
Interpolate field onto faces using scheme given by Istream.
Internal & ref(const bool updateAccessTime=true)
Same as internalFieldRef()
A class for managing temporary objects.
Definition: HashPtrTable.H:50
Namespace for OpenFOAM.