Go to the source code of this file.
|
| | Foam |
| | Namespace for OpenFOAM.
|
| |
|
| template<class Type > |
| using | interpolationGradType = typename outerProduct< Type, vector >::type |
| |
| template<class Type > |
| using | interpolationBaseOrGradBase = typename std::conditional<(pTraits< Type >::rank > 1), interpolationBase< Type >, interpolationGradBase< Type > >::type |
| |
| template<class Type , class InterpolationType > |
| using | fieldInterpolationBaseOrGradBase = typename std::conditional<(pTraits< Type >::rank > 1), fieldInterpolationBase< Type, InterpolationType >, fieldInterpolationGradBase< Type, InterpolationType > >::type |
| |
Original source file interpolation.H
Definition in file interpolation.H.
◆ makeInterpolation
| #define makeInterpolation |
( |
|
Type, |
|
|
|
InterpolationType |
|
) |
| |
Value: \
defineNamedTemplateTypeNameAndDebug(InterpolationType<Type>, 0); \
\
addTemplatedToRunTimeSelectionTable \
( \
interpolation, \
InterpolationType, \
Type, \
dictionary \
);
Definition at line 419 of file interpolation.H.