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

InjectionModel.H File Reference


Detailed Description

Definition in file InjectionModel.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/lagrangian/intermediate/submodels/Kinematic/InjectionModel/InjectionModel/InjectionModelI.H"
Include dependency graph for InjectionModel.H:

Go to the source code of this file.

Classes

class  InjectionModel< CloudType >
 Templated injection model class. More...

Namespaces

namespace  Foam
 

Namespace for OpenFOAM.


Defines

#define  makeInjectionModel(CloudType)
#define  makeInjectionModelType(SS, CloudType, ParcelType)
#define  makeInjectionModelThermoType(SS, CloudType, ParcelType, ThermoType)

Define Documentation

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

Definition at line 328 of file InjectionModel.H.

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

Definition at line 335 of file InjectionModel.H.

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

Definition at line 344 of file InjectionModel.H.