initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / turbulenceModels / incompressible / LES / SpalartAllmarasIDDES / SpalartAllmarasIDDES.H
blob21dd250d491d884cf1db1b519b0cb342268ceddc
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2008-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
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.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::LESmodels::SpalartAllmarasIDDES
28 Description
29     SpalartAllmarasIDDES LES turbulence model for incompressible flows
31 SourceFiles
32     SpalartAllmarasIDDES.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef SpalartAllmarasIDDES_H
37 #define SpalartAllmarasIDDES_H
39 #include "SpalartAllmaras.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
45 namespace incompressible
47 namespace LESModels
50 /*---------------------------------------------------------------------------*\
51                         Class SpalartAllmarasIDDES Declaration
52 \*---------------------------------------------------------------------------*/
54 class SpalartAllmarasIDDES
56     public SpalartAllmaras
58     // Private data
60         // Model constants
62             dimensionedScalar fwStar_;
63             dimensionedScalar cl_;
64             dimensionedScalar ct_;
67     // Private member functions
69         tmp<volScalarField> alpha() const;
70         tmp<volScalarField> ft(const volScalarField& S) const;
71         tmp<volScalarField> fl(const volScalarField& S) const;
73         tmp<volScalarField> rd
74         (
75             const volScalarField& visc,
76             const volScalarField& S
77         ) const;
79         //- Delay function
80         tmp<volScalarField> fd(const volScalarField& S) const;
82         // Disallow default bitwise copy construct and assignment
83         SpalartAllmarasIDDES(const SpalartAllmarasIDDES&);
84         SpalartAllmarasIDDES& operator=(const SpalartAllmarasIDDES&);
87 protected:
89     // Protected member functions
91         //- Length scale
92         virtual tmp<volScalarField> dTilda(const volScalarField& S) const;
95 public:
97     //- Runtime type information
98     TypeName("SpalartAllmarasIDDES");
101     // Constructors
103         //- Construct from components
104         SpalartAllmarasIDDES
105         (
106             const volVectorField& U,
107             const surfaceScalarField& phi,
108             transportModel& transport
109         );
112     //- Destructor
113     virtual ~SpalartAllmarasIDDES()
114     {}
117     // Member Functions
119         //- Read LESProperties dictionary
120         virtual bool read();
124 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
126 } // End namespace LESModels
127 } // End namespace incompressible
128 } // End namespace Foam
130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132 #endif
134 // ************************************************************************* //