Skip to content
Snippets Groups Projects
Commit 824e5eeb authored by Mark Olesen's avatar Mark Olesen
Browse files

ENH: add sutherlandTransport/hConstThermo combination

parent 51ac7a29
Branches
Tags
No related merge requests found
......@@ -57,7 +57,7 @@ makeBasicMixture
(
pureMixture,
constTransport,
hConstThermo,
eConstThermo,
perfectGas
);
......@@ -65,15 +65,16 @@ makeBasicMixture
(
pureMixture,
sutherlandTransport,
hConstThermo,
eConstThermo,
perfectGas
);
makeBasicMixture
(
pureMixture,
constTransport,
eConstThermo,
hConstThermo,
perfectGas
);
......@@ -81,7 +82,7 @@ makeBasicMixture
(
pureMixture,
sutherlandTransport,
eConstThermo,
hConstThermo,
perfectGas
);
......
......@@ -63,6 +63,7 @@ makeBasicPsiThermo
perfectGas
);
makeBasicPsiThermo
(
ePsiThermo,
......
......@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
\\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
......@@ -53,6 +53,8 @@ namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// constTransport, hConstThermo
makeCombustionThermo
(
hCombustionThermo,
......@@ -83,6 +85,42 @@ makeCombustionThermo
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
(
hCombustionThermo,
......@@ -113,6 +151,7 @@ makeCombustionThermo
perfectGas
);
makeCombustionThermo
(
hCombustionThermo,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment