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

makeBasicMixture.H File Reference


Detailed Description

InClass Foam::basicMixture

Definition in file makeBasicMixture.H.

#include "src/thermophysicalModels/basic/mixtures/basicMixture/basicMixture.H"
Include dependency graph for makeBasicMixture.H:

Go to the source code of this file.

Defines

#define  makeBasicMixture(Mixture, Transport, Thermo, EqnOfState)
#define  makeBasicPolyMixture(Mixture, Order)

Define Documentation

#define makeBasicMixture (   Mixture,
  Transport,
  Thermo,
  EqnOfState  
)
Value:
\
typedef Mixture<Transport<specieThermo<Thermo<EqnOfState> > > >               \
    Mixture##Transport##Thermo##EqnOfState;                                   \
                                                                              \
defineTemplateTypeNameAndDebugWithName                                        \
    (Mixture##Transport##Thermo##EqnOfState,                                  \
    #Mixture"<"#Transport"<specieThermo<"#Thermo"<"#EqnOfState">>>>", 0)

Definition at line 36 of file makeBasicMixture.H.

#define makeBasicPolyMixture (   Mixture,
  Order  
)
Value:
\
typedef polynomialTransport                                                   \
<                                                                             \
    specieThermo                                                              \
    <                                                                         \
        hPolynomialThermo                                                     \
        <                                                                     \
            icoPolynomial<Order>,                                             \
            Order                                                             \
            >                                                                 \
    >,                                                                        \
    Order                                                                     \
> icoPoly##Order##ThermoPhysics;                                              \
                                                                              \
typedef Mixture<icoPoly##Order##ThermoPhysics>                                \
    Mixture##icoPoly##Order##ThermoPhysics;                                   \
                                                                              \
defineTemplateTypeNameAndDebugWithName                                        \
    (Mixture##icoPoly##Order##ThermoPhysics,                                  \
    #Mixture"<icoPoly"#Order"ThermoPhysics>", 0)

Definition at line 46 of file makeBasicMixture.H.