132 lines
3.6 KiB
C
132 lines
3.6 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2013-2015 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 "compressibleTransportModel.H"
|
|
#include "fluidThermo.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
#include "makeTurbulenceModel.H"
|
|
|
|
#include "CompressibleTurbulenceModel.H"
|
|
#include "ThermalDiffusivity.H"
|
|
#include "EddyDiffusivity.H"
|
|
|
|
#include "laminar.H"
|
|
#include "RASModel.H"
|
|
#include "LESModel.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
makeBaseTurbulenceModel
|
|
(
|
|
geometricOneField,
|
|
volScalarField,
|
|
compressibleTurbulenceModel,
|
|
ThermalDiffusivity,
|
|
fluidThermo
|
|
);
|
|
|
|
#define makeRASModel(Type) \
|
|
makeTemplatedTurbulenceModel \
|
|
(fluidThermoThermalDiffusivity, RAS, Type)
|
|
|
|
#define makeLESModel(Type) \
|
|
makeTemplatedTurbulenceModel \
|
|
(fluidThermoThermalDiffusivity, LES, Type)
|
|
|
|
|
|
// -------------------------------------------------------------------------- //
|
|
// RAS models
|
|
// -------------------------------------------------------------------------- //
|
|
|
|
#include "SpalartAllmaras.H"
|
|
makeRASModel(SpalartAllmaras);
|
|
|
|
#include "kEpsilon.H"
|
|
makeRASModel(kEpsilon);
|
|
|
|
#include "RNGkEpsilon.H"
|
|
makeRASModel(RNGkEpsilon);
|
|
|
|
#include "realizableKE.H"
|
|
makeRASModel(realizableKE);
|
|
|
|
#include "buoyantKEpsilon.H"
|
|
makeRASModel(buoyantKEpsilon);
|
|
|
|
#include "LaunderSharmaKE.H"
|
|
makeRASModel(LaunderSharmaKE);
|
|
|
|
#include "kOmega.H"
|
|
makeRASModel(kOmega);
|
|
|
|
#include "kOmegaSST.H"
|
|
makeRASModel(kOmegaSST);
|
|
|
|
#include "kOmegaSSTSAS.H"
|
|
makeRASModel(kOmegaSSTSAS);
|
|
|
|
#include "v2f.H"
|
|
makeRASModel(v2f);
|
|
|
|
#include "LRR.H"
|
|
makeRASModel(LRR);
|
|
|
|
#include "SSG.H"
|
|
makeRASModel(SSG);
|
|
|
|
|
|
// -------------------------------------------------------------------------- //
|
|
// LES models
|
|
// -------------------------------------------------------------------------- //
|
|
|
|
#include "Smagorinsky.H"
|
|
makeLESModel(Smagorinsky);
|
|
|
|
#include "WALE.H"
|
|
makeLESModel(WALE);
|
|
|
|
#include "dynamicLagrangian.H"
|
|
makeLESModel(dynamicLagrangian);
|
|
|
|
#include "kEqn.H"
|
|
makeLESModel(kEqn);
|
|
|
|
#include "dynamicKEqn.H"
|
|
makeLESModel(dynamicKEqn);
|
|
|
|
#include "SpalartAllmarasDES.H"
|
|
makeLESModel(SpalartAllmarasDES);
|
|
|
|
#include "SpalartAllmarasDDES.H"
|
|
makeLESModel(SpalartAllmarasDDES);
|
|
|
|
#include "SpalartAllmarasIDDES.H"
|
|
makeLESModel(SpalartAllmarasIDDES);
|
|
|
|
#include "DeardorffDiffStress.H"
|
|
makeLESModel(DeardorffDiffStress);
|
|
|
|
|
|
// ************************************************************************* //
|