convectionScheme.H File Reference
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  fvMatrix< Type >
 A special matrix type and solver, designed for finite volume solutions of scalar equations. Face addressing is used to make all matrix assembly and solution loops vectorise. More...
 
class  convectionScheme< Type >
 Abstract base class for convection schemes. More...
 

Namespaces

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

Macros

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

Detailed Description

Original source file convectionScheme.H

Definition in file convectionScheme.H.

Macro Definition Documentation

◆ makeFvConvectionTypeScheme

#define makeFvConvectionTypeScheme (   SS,
  Type 
)
Value:
defineNamedTemplateTypeNameAndDebug(Foam::fv::SS<Foam::Type>, 0); \
\
namespace Foam \
{ \
namespace fv \
{ \
convectionScheme<Type>::addIstreamConstructorToTable<SS<Type>> \
add##SS##Type##IstreamConstructorToTable_; \
} \
}
labelList fv(nPoints)
#define defineNamedTemplateTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information for templates.
Definition: className.H:134
Namespace for OpenFOAM.

Definition at line 205 of file convectionScheme.H.

◆ makeFvConvectionScheme

#define makeFvConvectionScheme (   SS)
Value:
\
makeFvConvectionTypeScheme(SS, scalar) \
makeFvConvectionTypeScheme(SS, vector) \
makeFvConvectionTypeScheme(SS, sphericalTensor) \
makeFvConvectionTypeScheme(SS, symmTensor) \
makeFvConvectionTypeScheme(SS, tensor)
Vector< scalar > vector
A scalar version of the templated Vector.
Definition: vector.H:49
SymmTensor< scalar > symmTensor
SymmTensor of scalars.
Definition: symmTensor.H:48
SphericalTensor< scalar > sphericalTensor
SphericalTensor of scalars.
Tensor< scalar > tensor
Tensor of scalars.
Definition: tensor.H:51

Definition at line 217 of file convectionScheme.H.

◆ makeMultivariateFvConvectionTypeScheme

#define makeMultivariateFvConvectionTypeScheme (   SS,
  Type 
)
Value:
defineNamedTemplateTypeNameAndDebug(Foam::fv::SS<Foam::Type>, 0); \
\
namespace Foam \
{ \
namespace fv \
{ \
convectionScheme<Type>:: \
addMultivariateConstructorToTable<SS<Type>> \
add##SS##Type##MultivariateConstructorToTable_; \
} \
}
labelList fv(nPoints)
#define defineNamedTemplateTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information for templates.
Definition: className.H:134
Namespace for OpenFOAM.

Definition at line 226 of file convectionScheme.H.

◆ makeMultivariateFvConvectionScheme

#define makeMultivariateFvConvectionScheme (   SS)
Value:
\
makeMultivariateFvConvectionTypeScheme(SS, scalar) \
makeMultivariateFvConvectionTypeScheme(SS, vector) \
makeMultivariateFvConvectionTypeScheme(SS, sphericalTensor) \
makeMultivariateFvConvectionTypeScheme(SS, symmTensor) \
makeMultivariateFvConvectionTypeScheme(SS, tensor)
Vector< scalar > vector
A scalar version of the templated Vector.
Definition: vector.H:49
SymmTensor< scalar > symmTensor
SymmTensor of scalars.
Definition: symmTensor.H:48
SphericalTensor< scalar > sphericalTensor
SphericalTensor of scalars.
Tensor< scalar > tensor
Tensor of scalars.
Definition: tensor.H:51

Definition at line 240 of file convectionScheme.H.