FreeFOAM The Cross-Platform CFD Toolkit
UpwindFitScheme.H File Reference

Detailed Description

Definition in file UpwindFitScheme.H.

+ 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

namespace  Foam
 Namespace for OpenFOAM.

Macros

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

Macro Definition Documentation

#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 161 of file UpwindFitScheme.H.

#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,symmTensor) \
makeUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,tensor)

Definition at line 176 of file UpwindFitScheme.H.