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

makeChemistryModel.H File Reference

Macros for instantiating chemistry models based on compressibility and transport types. More...


Detailed Description

Macros for instantiating chemistry models based on compressibility and transport types.

InClass Foam::psiChemistryModel

Definition in file makeChemistryModel.H.

#include "src/OpenFOAM/db/runTimeSelection/addToRunTimeSelectionTable.H"
Include dependency graph for makeChemistryModel.H:

Go to the source code of this file.

Namespaces

namespace  Foam
 

Namespace for OpenFOAM.


Defines

#define  makeChemistryModel(SS, Comp, Thermo)

Define Documentation

#define makeChemistryModel (   SS,
  Comp,
  Thermo  
)
Value:
\
typedef SS<Comp, Thermo> SS##Comp##Thermo;                                    \
                                                                              \
defineTemplateTypeNameAndDebugWithName                                        \
(                                                                             \
    SS##Comp##Thermo,                                                         \
    #SS"<"#Comp","#Thermo">",                                                 \
    0                                                                         \
);                                                                            \
                                                                              \
addToRunTimeSelectionTable                                                    \
(                                                                             \
    Comp,                                                                     \
    SS##Comp##Thermo,                                                         \
    fvMesh                                                                    \
);

Definition at line 45 of file makeChemistryModel.H.