Go to the source code of this file.
|
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...
|
|
|
| Foam |
| Namespace for OpenFOAM.
|
|
| Foam::fv |
| Namespace for finite-volume.
|
|
Original source file convectionScheme.H
Definition in file convectionScheme.H.
◆ makeFvConvectionTypeScheme
#define makeFvConvectionTypeScheme |
( |
|
SS, |
|
|
|
Type |
|
) |
| |
Value: \
{ \
{ \
convectionScheme<Type>::addIstreamConstructorToTable<SS<Type>> \
add##SS##Type##IstreamConstructorToTable_; \
} \
}
#define defineNamedTemplateTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information for templates.
Definition at line 205 of file convectionScheme.H.
◆ makeFvConvectionScheme
#define makeFvConvectionScheme |
( |
|
SS | ) |
|
Value:\
makeFvConvectionTypeScheme(SS, scalar) \
makeFvConvectionTypeScheme(SS,
vector) \
makeFvConvectionTypeScheme(SS,
tensor)
Vector< scalar > vector
A scalar version of the templated Vector.
SymmTensor< scalar > symmTensor
SymmTensor of scalars.
SphericalTensor< scalar > sphericalTensor
SphericalTensor of scalars.
Tensor< scalar > tensor
Tensor of scalars.
Definition at line 217 of file convectionScheme.H.
◆ makeMultivariateFvConvectionTypeScheme
#define makeMultivariateFvConvectionTypeScheme |
( |
|
SS, |
|
|
|
Type |
|
) |
| |
Value: \
{ \
{ \
convectionScheme<Type>:: \
addMultivariateConstructorToTable<SS<Type>> \
add##SS##Type##MultivariateConstructorToTable_; \
} \
}
#define defineNamedTemplateTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information for templates.
Definition at line 226 of file convectionScheme.H.
◆ makeMultivariateFvConvectionScheme
#define makeMultivariateFvConvectionScheme |
( |
|
SS | ) |
|
Value:\
makeMultivariateFvConvectionTypeScheme(SS, scalar) \
makeMultivariateFvConvectionTypeScheme(SS,
vector) \
makeMultivariateFvConvectionTypeScheme(SS,
symmTensor) \
makeMultivariateFvConvectionTypeScheme(SS,
tensor)
Vector< scalar > vector
A scalar version of the templated Vector.
SymmTensor< scalar > symmTensor
SymmTensor of scalars.
SphericalTensor< scalar > sphericalTensor
SphericalTensor of scalars.
Tensor< scalar > tensor
Tensor of scalars.
Definition at line 240 of file convectionScheme.H.