FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

PatchInteractionModel.H File Reference


Detailed Description

Definition in file PatchInteractionModel.H.

#include "src/OpenFOAM/db/IOobjects/IOdictionary/IOdictionary.H"
#include "src/OpenFOAM/memory/autoPtr/autoPtr.H"
#include "src/OpenFOAM/db/runTimeSelection/runTimeSelectionTables.H"
#include "src/OpenFOAM/meshes/polyMesh/polyPatches/polyPatch/polyPatch.H"
Include dependency graph for PatchInteractionModel.H:

Go to the source code of this file.

Classes

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

Namespaces

namespace  Foam
 

Namespace for OpenFOAM.


Defines

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

Define 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.