DESModelBase.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2015 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Class
25  Foam::DESModelBase
26 
27 Description
28  Base class for DES models providing an interfaces to the LESRegion
29  function.
30 
31 SourceFiles
32  DESModelBase.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef DESModelBase_H
37 #define DESModelBase_H
38 
39 #include "className.H"
40 #include "tmp.H"
41 #include "volFieldsFwd.H"
42 
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 
45 namespace Foam
46 {
47 
48 /*---------------------------------------------------------------------------*\
49  class DESModelBase Declaration
50 \*---------------------------------------------------------------------------*/
51 
52 class DESModelBase
53 {
54 public:
55 
56  //- Constructor
57  DESModelBase()
58  {}
59 
60  //- Destructor
61  virtual ~DESModelBase()
62  {}
63 
64  ClassName("DESModelBase");
65 
66 
67  // Public Member Functions
68 
69  //- Return the LES field indicator
70  virtual tmp<volScalarField> LESRegion() const = 0;
71 };
72 
73 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
74 
75 } // End namespace Foam
76 
77 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
78 
79 #endif
80 
81 // ************************************************************************* //
volFieldsFwd.H
Foam::DESModelBase::DESModelBase
DESModelBase()
Constructor.
Definition: DESModelBase.H:56
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:118
Foam::DESModelBase::~DESModelBase
virtual ~DESModelBase()
Destructor.
Definition: DESModelBase.H:60
Foam::DESModelBase::ClassName
ClassName("DESModelBase")
className.H
Macro definitions for declaring ClassName(), NamespaceName(), etc.
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
tmp.H
Foam::DESModelBase::LESRegion
virtual tmp< volScalarField > LESRegion() const =0
Return the LES field indicator.
Foam::DESModelBase
Base class for DES models providing an interfaces to the LESRegion function.
Definition: DESModelBase.H:51