faePatchField.H File Reference
Include dependency graph for faePatchField.H:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  faePatchField< Type >
 faePatchField<Type> abstract base class. This class gives a fat-interface to all derived classes covering all possible ways in which they might be used. The first level of derivation is to basic patchFields which cover zero-gradient, fixed-gradient, fixed-value and mixed conditions. The next level of derivation covers all the specialised typed with specific evaluation procedures, particularly with respect to specific fields. More...
 

Namespaces

namespace  Foam
 Namespace for OpenFOAM.
 

Macros

#define makeFaePatchTypeFieldTypeName(typePatchTypeField)
 
#define makeFaePatchFieldsTypeName(typePatchField)
 
#define makeFaePatchTypeField(PatchTypeField, typePatchTypeField)
 
#define makeFaePatchFields(type)
 
#define makeFaePatchTypeFieldTypedefs(type)
 

Functions

template<class Type >
Ostream & operator<< (Ostream &, const faePatchField< Type > &)
 

Detailed Description

Original source file faePatchField.H

Definition in file faePatchField.H.

Macro Definition Documentation

◆ makeFaePatchTypeFieldTypeName

#define makeFaePatchTypeFieldTypeName (   typePatchTypeField)
Value:
\
defineNamedTemplateTypeNameAndDebug(typePatchTypeField, 0);

Definition at line 390 of file faePatchField.H.

◆ makeFaePatchFieldsTypeName

#define makeFaePatchFieldsTypeName (   typePatchField)
Value:
\
makeFaePatchTypeFieldTypeName(typePatchField##FaePatchScalarField); \
makeFaePatchTypeFieldTypeName(typePatchField##FaePatchVectorField); \
makeFaePatchTypeFieldTypeName(typePatchField##FaePatchSphericalTensorField); \
makeFaePatchTypeFieldTypeName(typePatchField##FaePatchSymmTensorField); \
makeFaePatchTypeFieldTypeName(typePatchField##FaePatchTensorField);

Definition at line 394 of file faePatchField.H.

◆ makeFaePatchTypeField

#define makeFaePatchTypeField (   PatchTypeField,
  typePatchTypeField 
)
Value:
\
defineNamedTemplateTypeNameAndDebug(typePatchTypeField, 0); \
\
( \
PatchTypeField, typePatchTypeField, patch \
); \
\
( \
PatchTypeField, \
typePatchTypeField, \
patchMapper \
); \
\
( \
PatchTypeField, typePatchTypeField, dictionary \
);
#define addToRunTimeSelectionTable(baseType, thisType, argNames)
Add to construction table with typeName as the key.

Definition at line 403 of file faePatchField.H.

◆ makeFaePatchFields

#define makeFaePatchFields (   type)
Value:
\
makeFaePatchTypeField(faePatchScalarField, type##FaePatchScalarField); \
makeFaePatchTypeField(faePatchVectorField, type##FaePatchVectorField); \
( \
faePatchSphericalTensorField, \
type##FaePatchSphericalTensorField \
); \
makeFaePatchTypeField(faePatchSymmTensorField, type##FaePatchSymmTensorField); \
makeFaePatchTypeField(faePatchTensorField, type##FaePatchTensorField);
#define makeFaePatchTypeField(PatchTypeField, typePatchTypeField)

Definition at line 425 of file faePatchField.H.

◆ makeFaePatchTypeFieldTypedefs

#define makeFaePatchTypeFieldTypedefs (   type)
Value:
\
typedef type##FaePatchField<scalar> type##FaePatchScalarField; \
typedef type##FaePatchField<vector> type##FaePatchVectorField; \
typedef type##FaePatchField<sphericalTensor> \
type##FaePatchSphericalTensorField; \
typedef type##FaePatchField<symmTensor> type##FaePatchSymmTensorField; \
typedef type##FaePatchField<tensor> type##FaePatchTensorField;

Definition at line 438 of file faePatchField.H.