mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: add sutherlandTransport/hConstThermo combination
This commit is contained in:
@ -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,
|
||||
|
||||
Reference in New Issue
Block a user