Skip to content
Snippets Groups Projects
Commit a65b1897 authored by sergio's avatar sergio
Browse files

ENH: Adding thermo using polynomial transport, JANAF and ideal gas.

This thermo is used with multiComponentMixture in rhoThermo type
parent 40e7d389
Branches
Tags
No related merge requests found
......@@ -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;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
......
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