Classes | Namespaces | Macros
UpwindFitScheme.H File Reference
Include dependency graph for UpwindFitScheme.H:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  UpwindFitScheme< Type, Polynomial, Stencil >
 Upwind biased fit surface interpolation scheme that applies an explicit correction to linear. More...
 

Namespaces

 Foam
 Namespace for OpenFOAM.
 

Macros

#define makeUpwindFitSurfaceInterpolationTypeScheme( SS, POLYNOMIAL, STENCIL, TYPE)
 
#define makeUpwindFitSurfaceInterpolationScheme(SS, POLYNOMIAL, STENCIL)
 

Detailed Description

Original source file UpwindFitScheme.H

Definition in file UpwindFitScheme.H.

Macro Definition Documentation

◆ makeUpwindFitSurfaceInterpolationTypeScheme

#define makeUpwindFitSurfaceInterpolationTypeScheme (   SS,
  POLYNOMIAL,
  STENCIL,
  TYPE 
)
Value:
\
typedef UpwindFitScheme<TYPE, POLYNOMIAL, STENCIL> \
UpwindFitScheme##TYPE##POLYNOMIAL##STENCIL##_; \
defineTemplateTypeNameAndDebugWithName \
(UpwindFitScheme##TYPE##POLYNOMIAL##STENCIL##_, #SS, 0); \
\
surfaceInterpolationScheme<TYPE>::addMeshConstructorToTable \
<UpwindFitScheme<TYPE, POLYNOMIAL, STENCIL>> \
add##SS##STENCIL##TYPE##MeshConstructorToTable_; \
\
surfaceInterpolationScheme<TYPE>::addMeshFluxConstructorToTable \
<UpwindFitScheme<TYPE, POLYNOMIAL, STENCIL>> \
add##SS##STENCIL##TYPE##MeshFluxConstructorToTable_;

Definition at line 160 of file UpwindFitScheme.H.

◆ makeUpwindFitSurfaceInterpolationScheme

#define makeUpwindFitSurfaceInterpolationScheme (   SS,
  POLYNOMIAL,
  STENCIL 
)
Value:
\
makeUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,scalar) \
makeUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,vector) \
makeUpwindFitSurfaceInterpolationTypeScheme \
( \
SS, \
POLYNOMIAL, \
STENCIL, \
sphericalTensor \
) \
makeUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,tensor)
#define makeUpwindFitSurfaceInterpolationTypeScheme( SS, POLYNOMIAL, STENCIL, TYPE)
Vector< scalar > vector
A scalar version of the templated Vector.
Definition: vector.H:49
SymmTensor< scalar > symmTensor
SymmTensor of scalars.
Definition: symmTensor.H:48
Tensor< scalar > tensor
Tensor of scalars.
Definition: tensor.H:51

Definition at line 181 of file UpwindFitScheme.H.