Go to the documentation of this file.00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 
00019 
00020 
00021 
00022 
00023 
00024 
00025 
00026 
00027 
00028 
00029 #include <OpenFOAM/error.H>
00030 
00031 #include "basicMixture.H"
00032 #include "makeBasicMixture.H"
00033 
00034 #include <specie/perfectGas.H>
00035 #include <specie/incompressible.H>
00036 
00037 #include <specie/eConstThermo.H>
00038 
00039 #include <specie/hConstThermo.H>
00040 #include <specie/janafThermo.H>
00041 #include <specie/specieThermo.H>
00042 
00043 #include <specie/constTransport.H>
00044 #include <specie/sutherlandTransport.H>
00045 
00046 #include <specie/icoPolynomial.H>
00047 #include <specie/hPolynomialThermo.H>
00048 #include <specie/polynomialTransport.H>
00049 
00050 #include <basicThermophysicalModels/pureMixture.H>
00051 
00052 #include <OpenFOAM/addToRunTimeSelectionTable.H>
00053 
00054 
00055 
00056 namespace Foam
00057 {
00058 
00059 
00060 
00061 makeBasicMixture
00062 (
00063     pureMixture,
00064     constTransport,
00065     hConstThermo,
00066     perfectGas
00067 );
00068 
00069 makeBasicMixture
00070 (
00071     pureMixture,
00072     sutherlandTransport,
00073     hConstThermo,
00074     perfectGas
00075 );
00076 
00077 makeBasicMixture
00078 (
00079     pureMixture,
00080     constTransport,
00081     eConstThermo,
00082     perfectGas
00083 );
00084 
00085 makeBasicMixture
00086 (
00087     pureMixture,
00088     sutherlandTransport,
00089     eConstThermo,
00090     perfectGas
00091 );
00092 
00093 makeBasicMixture
00094 (
00095     pureMixture,
00096     sutherlandTransport,
00097     janafThermo,
00098     perfectGas
00099 );
00100 
00101 makeBasicMixture
00102 (
00103     pureMixture,
00104     constTransport,
00105     hConstThermo,
00106     incompressible
00107 );
00108 
00109 makeBasicPolyMixture
00110 (
00111     pureMixture,
00112     3
00113 );
00114 
00115 
00116 
00117 } 
00118 
00119