Classes | Namespaces | Macros | Functions
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...
 
class  calculatedFaePatchField< Type >
 Author Zeljko Tukovic, FMENA Hrvoje Jasak, Wikki Ltd. More...
 
class  faePatchFieldBase
 Template invariant parts for faePatchField. More...
 
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

 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 542 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 546 of file faePatchField.H.

◆ makeFaePatchTypeField

#define makeFaePatchTypeField (   PatchTypeField,
  typePatchTypeField 
)
Value:
\
defineNamedTemplateTypeNameAndDebug(typePatchTypeField, 0); \
\
addToRunTimeSelectionTable \
( \
PatchTypeField, typePatchTypeField, patch \
); \
\
addToRunTimeSelectionTable \
( \
PatchTypeField, \
typePatchTypeField, \
patchMapper \
); \
\
addToRunTimeSelectionTable \
( \
PatchTypeField, typePatchTypeField, dictionary \
);
const std::string patch
OpenFOAM patch number as a std::string.

Definition at line 555 of file faePatchField.H.

◆ makeFaePatchFields

#define makeFaePatchFields (   type)
Value:
\
makeFaePatchTypeField(faePatchScalarField, type##FaePatchScalarField); \
makeFaePatchTypeField(faePatchVectorField, type##FaePatchVectorField); \
makeFaePatchTypeField \
( \
faePatchSphericalTensorField, \
type##FaePatchSphericalTensorField \
); \
makeFaePatchTypeField(faePatchSymmTensorField, type##FaePatchSymmTensorField); \
makeFaePatchTypeField(faePatchTensorField, type##FaePatchTensorField);
type
Types of root.
Definition: Roots.H:52
faePatchField< scalar > faePatchScalarField
faePatchField< vector > faePatchVectorField
faePatchField< tensor > faePatchTensorField
faePatchField< symmTensor > faePatchSymmTensorField

Definition at line 577 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;
type
Types of root.
Definition: Roots.H:52

Definition at line 590 of file faePatchField.H.