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

Detailed Description

Definition in file PureUpwindFitScheme.H.

+ Include dependency graph for PureUpwindFitScheme.H:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

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

Namespaces

namespace  Foam
 Namespace for OpenFOAM.

Macros

#define makePureUpwindFitSurfaceInterpolationTypeScheme(SS, POLYNOMIAL, STENCIL, TYPE)
#define makePureUpwindFitSurfaceInterpolationScheme(SS, POLYNOMIAL, STENCIL)

Macro Definition Documentation

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

Definition at line 157 of file PureUpwindFitScheme.H.

#define makePureUpwindFitSurfaceInterpolationScheme (   SS,
  POLYNOMIAL,
  STENCIL 
)
Value:
\
makePureUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,scalar) \
makePureUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,vector) \
makePureUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,sphericalTensor) \
makePureUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,symmTensor) \
makePureUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,tensor)

Definition at line 172 of file PureUpwindFitScheme.H.