ENH: add sutherlandTransport/hConstThermo combination

This commit is contained in:
Mark Olesen
2010-06-24 09:25:12 +02:00
parent 51ac7a297b
commit 824e5eeb2b
3 changed files with 46 additions and 5 deletions

View File

@ -57,7 +57,7 @@ makeBasicMixture
( (
pureMixture, pureMixture,
constTransport, constTransport,
hConstThermo, eConstThermo,
perfectGas perfectGas
); );
@ -65,15 +65,16 @@ makeBasicMixture
( (
pureMixture, pureMixture,
sutherlandTransport, sutherlandTransport,
hConstThermo, eConstThermo,
perfectGas perfectGas
); );
makeBasicMixture makeBasicMixture
( (
pureMixture, pureMixture,
constTransport, constTransport,
eConstThermo, hConstThermo,
perfectGas perfectGas
); );
@ -81,7 +82,7 @@ makeBasicMixture
( (
pureMixture, pureMixture,
sutherlandTransport, sutherlandTransport,
eConstThermo, hConstThermo,
perfectGas perfectGas
); );

View File

@ -63,6 +63,7 @@ makeBasicPsiThermo
perfectGas perfectGas
); );
makeBasicPsiThermo makeBasicPsiThermo
( (
ePsiThermo, ePsiThermo,

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd. \\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd.
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -53,6 +53,8 @@ namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// constTransport, hConstThermo
makeCombustionThermo makeCombustionThermo
( (
hCombustionThermo, hCombustionThermo,
@ -83,6 +85,42 @@ makeCombustionThermo
perfectGas perfectGas
); );
// sutherlandTransport, hConstThermo
makeCombustionThermo
(
hCombustionThermo,
hPsiMixtureThermo,
homogeneousMixture,
sutherlandTransport,
hConstThermo,
perfectGas
);
makeCombustionThermo
(
hCombustionThermo,
hPsiMixtureThermo,
inhomogeneousMixture,
sutherlandTransport,
hConstThermo,
perfectGas
);
makeCombustionThermo
(
hCombustionThermo,
hPsiMixtureThermo,
veryInhomogeneousMixture,
sutherlandTransport,
hConstThermo,
perfectGas
);
// sutherlandTransport, janafThermo
makeCombustionThermo makeCombustionThermo
( (
hCombustionThermo, hCombustionThermo,
@ -113,6 +151,7 @@ makeCombustionThermo
perfectGas perfectGas
); );
makeCombustionThermo makeCombustionThermo
( (
hCombustionThermo, hCombustionThermo,