mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Adding thermo using polynomial transport, JANAF and ideal gas.
This thermo is used with multiComponentMixture in rhoThermo type
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2012-2017 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
\\/ M anipulation | Copyright (C) 2018 OpenCFD Ltd.
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
This file is part of OpenFOAM.
|
||||
@ -260,6 +260,14 @@ makeReactionMixtureThermo
|
||||
icoPoly8EThermoPhysics
|
||||
);
|
||||
|
||||
makeReactionMixtureThermo
|
||||
(
|
||||
rhoThermo,
|
||||
rhoReactionThermo,
|
||||
heRhoThermo,
|
||||
multiComponentMixture,
|
||||
icoPoly8TranspJanafEThermoPhysics
|
||||
);
|
||||
|
||||
// Multi-component reaction thermo
|
||||
|
||||
@ -365,6 +373,14 @@ makeReactionMixtureThermo
|
||||
icoPoly8HThermoPhysics
|
||||
);
|
||||
|
||||
makeReactionMixtureThermo
|
||||
(
|
||||
rhoThermo,
|
||||
rhoReactionThermo,
|
||||
heRhoThermo,
|
||||
multiComponentMixture,
|
||||
icoPoly8TranspJanafHThermoPhysics
|
||||
);
|
||||
|
||||
// Multi-component reaction thermo
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
\\/ M anipulation | Copyright (C) 2018 OpenCFD Ltd.
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
This file is part of OpenFOAM.
|
||||
@ -120,6 +120,20 @@ namespace Foam
|
||||
8
|
||||
> icoPoly8HThermoPhysics;
|
||||
|
||||
typedef
|
||||
polynomialTransport
|
||||
<
|
||||
species::thermo
|
||||
<
|
||||
janafThermo
|
||||
<
|
||||
perfectGas<specie>
|
||||
>,
|
||||
sensibleEnthalpy
|
||||
>,
|
||||
8
|
||||
> icoPoly8TranspJanafHThermoPhysics;
|
||||
|
||||
|
||||
// thermo physics types based on sensibleInternalEnergy
|
||||
typedef
|
||||
@ -188,6 +202,20 @@ namespace Foam
|
||||
>,
|
||||
8
|
||||
> icoPoly8EThermoPhysics;
|
||||
|
||||
typedef
|
||||
polynomialTransport
|
||||
<
|
||||
species::thermo
|
||||
<
|
||||
janafThermo
|
||||
<
|
||||
perfectGas<specie>
|
||||
>,
|
||||
sensibleInternalEnergy
|
||||
>,
|
||||
8
|
||||
> icoPoly8TranspJanafEThermoPhysics;
|
||||
}
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
Reference in New Issue
Block a user