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

Detailed Description

Definition in file convectionScheme.H.

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

Go to the source code of this file.

Classes

class  convectionScheme< Type >
 Abstract base class for convection schemes. More...

Namespaces

namespace  Foam
 Namespace for OpenFOAM.
namespace  Foam::fv
 Namespace for finite-volume.

Macros

#define makeFvConvectionTypeScheme(SS, Type)
#define makeFvConvectionScheme(SS)
#define makeMultivariateFvConvectionTypeScheme(SS, Type)
#define makeMultivariateFvConvectionScheme(SS)

Macro Definition Documentation

#define makeFvConvectionTypeScheme (   SS,
  Type 
)
Value:
\
defineNamedTemplateTypeNameAndDebug(SS<Type>, 0); \
\
convectionScheme<Type>::addIstreamConstructorToTable<SS<Type> > \
add##SS##Type##IstreamConstructorToTable_;

Definition at line 207 of file convectionScheme.H.

#define makeFvConvectionScheme (   SS)
Value:
\
makeFvConvectionTypeScheme(SS, scalar) \
makeFvConvectionTypeScheme(SS, vector) \
makeFvConvectionTypeScheme(SS, sphericalTensor) \
makeFvConvectionTypeScheme(SS, symmTensor) \
makeFvConvectionTypeScheme(SS, tensor)

Definition at line 215 of file convectionScheme.H.

#define makeMultivariateFvConvectionTypeScheme (   SS,
  Type 
)
Value:
\
defineNamedTemplateTypeNameAndDebug(SS<Type>, 0); \
\
convectionScheme<Type>::addMultivariateConstructorToTable<SS<Type> > \
add##SS##Type##MultivariateConstructorToTable_;

Definition at line 224 of file convectionScheme.H.

#define makeMultivariateFvConvectionScheme (   SS)
Value:
\
makeMultivariateFvConvectionTypeScheme(SS, scalar) \
makeMultivariateFvConvectionTypeScheme(SS, vector) \
makeMultivariateFvConvectionTypeScheme(SS, sphericalTensor) \
makeMultivariateFvConvectionTypeScheme(SS, symmTensor) \
makeMultivariateFvConvectionTypeScheme(SS, tensor)

Definition at line 232 of file convectionScheme.H.