providing the shear-stress term in the momentum equation for incompressible and compressible Newtonian, non-Newtonian and visco-elastic laminar flow as well as Reynolds averaged and large-eddy simulation of turbulent flow. The general deviatoric shear-stress term provided by the MomentumTransportModels library is named divDevTau for compressible flow and divDevSigma (sigma = tau/rho) for incompressible flow, the spherical part of the shear-stress is assumed to be either included in the pressure or handled separately. The corresponding stress function sigma is also provided which in the case of Reynolds stress closure returns the effective Reynolds stress (including the laminar contribution) or for other Reynolds averaged or large-eddy turbulence closures returns the modelled Reynolds stress or sub-grid stress respectively. For visco-elastic flow the sigma function returns the effective total stress including the visco-elastic and Newtonian contributions. For thermal flow the heat-flux generated by thermal diffusion is now handled by the separate ThermophysicalTransportModels library allowing independent run-time selection of the heat-flux model. During the development of the MomentumTransportModels library significant effort has been put into rationalising the components and supporting libraries, removing redundant code, updating names to provide a more logical, consistent and extensible interface and aid further development and maintenance. All solvers and tutorials have been updated correspondingly and backward compatibility of the input dictionaries provided. Henry G. Weller CFD Direct Ltd.
105 lines
4.0 KiB
C++
105 lines
4.0 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2014-2020 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 "CompressibleMomentumTransportModel.H"
|
|
#include "incompressibleTwoPhaseInteractingMixture.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
#include "makeMomentumTransportModel.H"
|
|
|
|
#include "laminarModel.H"
|
|
#include "RASModel.H"
|
|
#include "LESModel.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
makeMomentumTransportModelTypes
|
|
(
|
|
geometricOneField,
|
|
volScalarField,
|
|
compressibleMomentumTransportModel,
|
|
CompressibleMomentumTransportModel,
|
|
incompressibleTwoPhaseInteractingMixture
|
|
);
|
|
|
|
makeBaseMomentumTransportModel
|
|
(
|
|
geometricOneField,
|
|
volScalarField,
|
|
compressibleMomentumTransportModel,
|
|
CompressibleMomentumTransportModel,
|
|
incompressibleTwoPhaseInteractingMixture
|
|
);
|
|
|
|
#define makeLaminarModel(Type) \
|
|
makeTemplatedMomentumTransportModel \
|
|
( \
|
|
incompressibleTwoPhaseInteractingMixture \
|
|
##CompressibleMomentumTransportModel, \
|
|
laminar, \
|
|
Type \
|
|
)
|
|
|
|
#define makeRASModel(Type) \
|
|
makeTemplatedMomentumTransportModel \
|
|
( \
|
|
incompressibleTwoPhaseInteractingMixture \
|
|
##CompressibleMomentumTransportModel, \
|
|
RAS, \
|
|
Type \
|
|
)
|
|
|
|
#define makeLESModel(Type) \
|
|
makeTemplatedMomentumTransportModel \
|
|
( \
|
|
incompressibleTwoPhaseInteractingMixture \
|
|
##CompressibleMomentumTransportModel, \
|
|
LES, \
|
|
Type \
|
|
)
|
|
|
|
#include "Stokes.H"
|
|
makeLaminarModel(Stokes);
|
|
|
|
#include "kEpsilon.H"
|
|
makeRASModel(kEpsilon);
|
|
|
|
#include "buoyantKEpsilon.H"
|
|
makeRASModel(buoyantKEpsilon);
|
|
|
|
#include "Smagorinsky.H"
|
|
makeLESModel(Smagorinsky);
|
|
|
|
#include "kEqn.H"
|
|
makeLESModel(kEqn);
|
|
|
|
#include "LRR.H"
|
|
makeRASModel(LRR);
|
|
|
|
#include "SSG.H"
|
|
makeRASModel(SSG);
|
|
|
|
|
|
// ************************************************************************* //
|