All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
makeChemistryTabulationMethod.H File Reference
Include dependency graph for makeChemistryTabulationMethod.H:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define defineChemistryTabulationMethod(nullArg, ThermoPhysics)
 
#define makeChemistryTabulationMethod(Method, ThermoPhysics)
 

Detailed Description

Original source file makeChemistryTabulationMethod.H

Definition in file makeChemistryTabulationMethod.H.

Macro Definition Documentation

◆ defineChemistryTabulationMethod

#define defineChemistryTabulationMethod (   nullArg,
  ThermoPhysics 
)
Value:
\
typedef chemistryTabulationMethod<ThermoPhysics> \
chemistryTabulationMethod##ThermoPhysics; \
\
defineTemplateTypeNameAndDebugWithName \
( \
chemistryTabulationMethod##ThermoPhysics, \
( \
word(chemistryTabulationMethod##ThermoPhysics::typeName_()) \
+ "<" + ThermoPhysics::typeName() + ">" \
).c_str(), \
0 \
); \
\
defineTemplateRunTimeSelectionTable \
( \
chemistryTabulationMethod##ThermoPhysics, \
dictionary \
)

Definition at line 33 of file makeChemistryTabulationMethod.H.

◆ makeChemistryTabulationMethod

#define makeChemistryTabulationMethod (   Method,
  ThermoPhysics 
)
Value:
\
typedef chemistryTabulationMethod<ThermoPhysics> \
chemistryTabulationMethod##ThermoPhysics; \
\
typedef chemistryTabulationMethods::Method<ThermoPhysics> \
chemistryTabulationMethod##Method##ThermoPhysics; \
\
defineTemplateTypeNameAndDebugWithName \
( \
chemistryTabulationMethod##Method##ThermoPhysics, \
( \
word(chemistryTabulationMethod##Method##ThermoPhysics::typeName_())\
+ "<" + ThermoPhysics::typeName() + ">" \
).c_str(), \
0 \
); \
\
addToRunTimeSelectionTable \
( \
chemistryTabulationMethod##ThermoPhysics, \
chemistryTabulationMethod##Method##ThermoPhysics, \
dictionary \
)

Definition at line 54 of file makeChemistryTabulationMethod.H.