FreeFOAM The Cross-Platform CFD Toolkit
PatchInteractionModel.H File Reference

Detailed Description

Definition in file PatchInteractionModel.H.

+ Include dependency graph for PatchInteractionModel.H:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  PatchInteractionModel< CloudType >
 Templated patch interaction model class. More...

Namespaces

namespace  Foam
 Namespace for OpenFOAM.

Macros

#define makePatchInteractionModel(CloudType)
#define makePatchInteractionModelType(SS, CloudType, ParcelType)
#define makePatchInteractionModelThermoType(SS, CloudType, ParcelType, ThermoType)

Macro Definition Documentation

#define makePatchInteractionModel (   CloudType)
Value:
\
defineNamedTemplateTypeNameAndDebug(PatchInteractionModel<CloudType>, 0); \
\
defineTemplateRunTimeSelectionTable \
( \
PatchInteractionModel<CloudType>, \
dictionary \
);

Definition at line 170 of file PatchInteractionModel.H.

#define makePatchInteractionModelType (   SS,
  CloudType,
  ParcelType 
)
Value:
\
defineNamedTemplateTypeNameAndDebug(SS<CloudType<ParcelType> >, 0); \
\
PatchInteractionModel<CloudType<ParcelType> >:: \
adddictionaryConstructorToTable<SS<CloudType<ParcelType> > > \
add##SS##CloudType##ParcelType##ConstructorToTable_;

Definition at line 181 of file PatchInteractionModel.H.

#define makePatchInteractionModelThermoType (   SS,
  CloudType,
  ParcelType,
  ThermoType 
)
Value:
\
defineNamedTemplateTypeNameAndDebug \
( \
SS<CloudType<ParcelType<ThermoType> > >, \
0 \
); \
\
PatchInteractionModel<CloudType<ParcelType<ThermoType> > >:: \
adddictionaryConstructorToTable \
<SS<CloudType<ParcelType<ThermoType> > > > \
add##SS##CloudType##ParcelType##ThermoType##ConstructorToTable_;

Definition at line 190 of file PatchInteractionModel.H.