Loading...
Searching...
No Matches
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

namespace  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##_; \
(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_;
#define defineTemplateTypeNameAndDebugWithName(Type, Name, DebugSwitch)
Define the typeName and debug information, lookup as Name.
Definition className.H:149
dict add("bounds", meshBb)

Definition at line 181 of file UpwindFitScheme.H.

◆ makeUpwindFitSurfaceInterpolationScheme

#define makeUpwindFitSurfaceInterpolationScheme ( SS,
POLYNOMIAL,
STENCIL )
Value:
\
makeUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,scalar) \
makeUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,vector) \
( \
SS, \
POLYNOMIAL, \
STENCIL, \
sphericalTensor \
) \
makeUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,symmTensor) \
makeUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,tensor)
#define makeUpwindFitSurfaceInterpolationTypeScheme( SS, POLYNOMIAL, STENCIL, TYPE)
Tensor of scalars, i.e. Tensor<scalar>.
A Vector of values with scalar precision, where scalar is float/double depending on the compilation f...

Definition at line 202 of file UpwindFitScheme.H.