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

DragModel.H File Reference


Detailed Description

Definition in file DragModel.H.

#include "src/OpenFOAM/db/IOobjects/IOdictionary/IOdictionary.H"
#include "src/OpenFOAM/memory/autoPtr/autoPtr.H"
#include "src/OpenFOAM/db/runTimeSelection/runTimeSelectionTables.H"
Include dependency graph for DragModel.H:

Go to the source code of this file.

Classes

class  DragModel< CloudType >
 Templated drag model class. More...

Namespaces

namespace  Foam
 

Namespace for OpenFOAM.


Defines

#define  makeDragModel(CloudType)
#define  makeDragModelType(SS, CloudType, ParcelType)
#define  makeDragModelThermoType(SS, CloudType, ParcelType, ThermoType)

Define Documentation

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

Definition at line 134 of file DragModel.H.

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

Definition at line 141 of file DragModel.H.

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

Definition at line 150 of file DragModel.H.