Files
OpenFOAM-12/applications/modules/multicomponentFluid/multicomponentFluid.C
Will Bainbridge 3c542d664b thermophysicalModels: Primitive mixture classes
Mixture classes (e.g., pureMixtrure, coefficientMulticomponentMixture),
now have no fvMesh or volScalarField dependence. They operate on
primitive values only. All the fvMesh-dependent functionality has been
moved into the base thermodynamic classes. The 'composition()' access
function has been removed from multi-component thermo models. Functions
that were once provided by composition base classes such as
basicSpecieMixture and basicCombustionMixture are now implemented
directly in the relevant multi-component thermo base class.
2023-07-27 08:39:58 +01:00

111 lines
2.9 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2022-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
\*---------------------------------------------------------------------------*/
#include "multicomponentFluid.H"
#include "localEulerDdtScheme.H"
#include "addToRunTimeSelectionTable.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace Foam
{
namespace solvers
{
defineTypeNameAndDebug(multicomponentFluid, 0);
addToRunTimeSelectionTable(solver, multicomponentFluid, fvMesh);
}
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::solvers::multicomponentFluid::multicomponentFluid(fvMesh& mesh)
:
isothermalFluid
(
mesh,
autoPtr<fluidThermo>(fluidMulticomponentThermo::New(mesh).ptr())
),
thermo_(refCast<fluidMulticomponentThermo>(isothermalFluid::thermo_)),
Y_(thermo_.Y()),
reaction(combustionModel::New(thermo_, momentumTransport())),
thermophysicalTransport
(
fluidMulticomponentThermophysicalTransportModel::New
(
momentumTransport(),
thermo_
)
),
thermo(thermo_),
Y(Y_)
{
thermo.validate(type(), "h", "e");
forAll(Y, i)
{
fields.add(Y[i]);
}
fields.add(thermo.he());
}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
Foam::solvers::multicomponentFluid::~multicomponentFluid()
{}
// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
void Foam::solvers::multicomponentFluid::prePredictor()
{
isothermalFluid::prePredictor();
if (pimple.predictTransport())
{
thermophysicalTransport->predict();
}
}
void Foam::solvers::multicomponentFluid::postCorrector()
{
isothermalFluid::postCorrector();
if (pimple.correctTransport())
{
thermophysicalTransport->correct();
}
}
// ************************************************************************* //