Loading...
Searching...
No Matches
PureUpwindFitScheme.H File Reference
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)

Detailed Description

Original source file PureUpwindFitScheme.H

Definition in file PureUpwindFitScheme.H.

Macro Definition Documentation

◆ makePureUpwindFitSurfaceInterpolationTypeScheme

#define makePureUpwindFitSurfaceInterpolationTypeScheme ( SS,
POLYNOMIAL,
STENCIL,
TYPE )
Value:
\
typedef PureUpwindFitScheme<TYPE, POLYNOMIAL, STENCIL> \
PureUpwindFitScheme##TYPE##POLYNOMIAL##STENCIL##_; \
(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_;
#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 175 of file PureUpwindFitScheme.H.

◆ makePureUpwindFitSurfaceInterpolationScheme

#define makePureUpwindFitSurfaceInterpolationScheme ( SS,
POLYNOMIAL,
STENCIL )
Value:
\
makePureUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,scalar) \
makePureUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,vector) \
( \
SS, \
POLYNOMIAL, \
STENCIL, \
sphericalTensor \
) \
( \
SS, \
POLYNOMIAL, \
STENCIL, \
symmTensor \
) \
makePureUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,tensor)
#define makePureUpwindFitSurfaceInterpolationTypeScheme( 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 196 of file PureUpwindFitScheme.H.