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,
|
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
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -63,6 +63,7 @@ makeBasicPsiThermo
|
|||||||
perfectGas
|
perfectGas
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
makeBasicPsiThermo
|
makeBasicPsiThermo
|
||||||
(
|
(
|
||||||
ePsiThermo,
|
ePsiThermo,
|
||||||
|
|||||||
@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user