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

Go to the source code of this file.

Classes

class  pointPatchField< Type >
 Abstract base class for point-mesh patch fields. More...
 
class  calculatedPointPatchField< Type >
 A calculated boundary condition for pointField. More...
 
class  pointPatchField< Type >
 Abstract base class for point-mesh patch fields. More...
 

Namespaces

 Foam
 Namespace for OpenFOAM.
 

Macros

#define addToPointPatchFieldRunTimeSelection(PatchTypeField, typePatchTypeField)
 
#define makePointPatchTypeField(PatchTypeField, typePatchTypeField)
 
#define makeTemplatePointPatchTypeField(PatchTypeField, typePatchTypeField)
 
#define makePointPatchFields(type)
 
#define makePointPatchFieldsTypeName(type)
 
#define makePointPatchFieldTypedefs(type)
 

Functions

template<class Type >
Ostream & operator<< (Ostream &, const pointPatchField< Type > &)
 
template<class Type >
const pointPatchField< Type > & operator+ (const pointPatchField< Type > &ppf, const Type &)
 

Detailed Description

Original source file pointPatchField.H

Definition in file pointPatchField.H.

Macro Definition Documentation

◆ addToPointPatchFieldRunTimeSelection

#define addToPointPatchFieldRunTimeSelection (   PatchTypeField,
  typePatchTypeField 
)
Value:
( \
PatchTypeField, \
typePatchTypeField, \
pointPatch \
); \
addToRunTimeSelectionTable \
( \
PatchTypeField, \
typePatchTypeField, \
patchMapper \
); \
addToRunTimeSelectionTable \
( \
PatchTypeField, \
typePatchTypeField, \
dictionary \
);
#define addToRunTimeSelectionTable(baseType, thisType, argNames)
Add to hash-table of functions with typename as the key.

Definition at line 503 of file pointPatchField.H.

◆ makePointPatchTypeField

#define makePointPatchTypeField (   PatchTypeField,
  typePatchTypeField 
)
Value:
defineTypeNameAndDebug(typePatchTypeField, 0); \
addToPointPatchFieldRunTimeSelection(PatchTypeField, typePatchTypeField)
#define defineTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information.
Definition: className.H:119

Definition at line 525 of file pointPatchField.H.

◆ makeTemplatePointPatchTypeField

#define makeTemplatePointPatchTypeField (   PatchTypeField,
  typePatchTypeField 
)
Value:
defineNamedTemplateTypeNameAndDebug(typePatchTypeField, 0); \
addToPointPatchFieldRunTimeSelection(PatchTypeField, typePatchTypeField)
#define defineNamedTemplateTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information for templates.
Definition: className.H:134

Definition at line 531 of file pointPatchField.H.

◆ makePointPatchFields

#define makePointPatchFields (   type)
Value:
( \
pointPatchScalarField, \
type##PointPatchScalarField \
); \
makeTemplatePointPatchTypeField \
( \
pointPatchVectorField, \
type##PointPatchVectorField \
); \
makeTemplatePointPatchTypeField \
( \
pointPatchSphericalTensorField, \
type##PointPatchSphericalTensorField \
); \
makeTemplatePointPatchTypeField \
( \
pointPatchSymmTensorField, \
type##PointPatchSymmTensorField \
); \
makeTemplatePointPatchTypeField \
( \
pointPatchTensorField, \
type##PointPatchTensorField \
);
#define makeTemplatePointPatchTypeField(PatchTypeField, typePatchTypeField)

Definition at line 536 of file pointPatchField.H.

◆ makePointPatchFieldsTypeName

#define makePointPatchFieldsTypeName (   type)
Value:
defineNamedTemplateTypeNameAndDebug(type##PointPatchScalarField, 0); \
defineNamedTemplateTypeNameAndDebug(type##PointPatchVectorField, 0); \
defineNamedTemplateTypeNameAndDebug \
( \
type##PointPatchSphericalTensorField, 0 \
); \
defineNamedTemplateTypeNameAndDebug(type##PointPatchSymmTensorField, 0); \
defineNamedTemplateTypeNameAndDebug(type##PointPatchTensorField, 0)
#define defineNamedTemplateTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information for templates.
Definition: className.H:134
fileType type(const fileName &, const bool checkVariants=true, const bool followLink=true)
Return the file type: directory or file.
Definition: POSIX.C:488

Definition at line 564 of file pointPatchField.H.

◆ makePointPatchFieldTypedefs

#define makePointPatchFieldTypedefs (   type)
Value:
typedef type##PointPatchField<scalar> type##PointPatchScalarField; \
typedef type##PointPatchField<vector> type##PointPatchVectorField; \
typedef type##PointPatchField<sphericalTensor> \
type##PointPatchSphericalTensorField; \
typedef type##PointPatchField<symmTensor> type##PointPatchSymmTensorField;\
typedef type##PointPatchField<tensor> type##PointPatchTensorField;
fileType type(const fileName &, const bool checkVariants=true, const bool followLink=true)
Return the file type: directory or file.
Definition: POSIX.C:488

Definition at line 575 of file pointPatchField.H.