mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: volPointInterpolation: have cached version
This commit is contained in:
@ -218,6 +218,16 @@ public:
|
||||
const wordList& patchFieldTypes
|
||||
) const;
|
||||
|
||||
//- Interpolate volField using inverse distance weighting
|
||||
// returning pointField with name. Optionally caches
|
||||
template<class Type>
|
||||
tmp<GeometricField<Type, pointPatchField, pointMesh> > interpolate
|
||||
(
|
||||
const GeometricField<Type, fvPatchField, volMesh>&,
|
||||
const word& name,
|
||||
const bool cache
|
||||
) const;
|
||||
|
||||
//- Interpolate volField using inverse distance weighting
|
||||
// returning pointField
|
||||
template<class Type>
|
||||
@ -233,6 +243,7 @@ public:
|
||||
(
|
||||
const tmp<GeometricField<Type, fvPatchField, volMesh> >&
|
||||
) const;
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user