ENH: RASModelBaseName: new type name for RANS models

This commit is contained in:
Kutalmis Bercin
2022-10-20 14:43:15 +01:00
parent 90b61429f6
commit 13606d4e09

View File

@ -6,7 +6,7 @@
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
Copyright (C) 2013-2017 OpenFOAM Foundation Copyright (C) 2013-2017 OpenFOAM Foundation
Copyright (C) 2021 OpenCFD Ltd. Copyright (C) 2021-2022 OpenCFD Ltd.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
This file is part of OpenFOAM. This file is part of OpenFOAM.
@ -45,6 +45,8 @@ SourceFiles
namespace Foam namespace Foam
{ {
TemplateName(RASModelBase);
/*---------------------------------------------------------------------------*\ /*---------------------------------------------------------------------------*\
Class RASModel Declaration Class RASModel Declaration
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
@ -52,6 +54,7 @@ namespace Foam
template<class BasicTurbulenceModel> template<class BasicTurbulenceModel>
class RASModel class RASModel
: :
public RASModelBaseName,
public BasicTurbulenceModel public BasicTurbulenceModel
{ {