initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / turbulenceModels / LES / incompressible / LRRDiffStress / LRRDiffStress.H
blobf58b6e224be01a91cedeb5dd6167bee296168ced
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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::incompressible::LESModels::LRRDiffStress
28 Description
29     Differential SGS Stress Equation Model for incompressible flows.
31     The DSEM uses a model version of the full balance equation for the SGS
32     stress tensor to simulate the behaviour of B, hence,
33     @verbatim
34         d/dt(B) + div(U*B) - div(nuSgs*grad(B))
35         =
36         P - c1*e/k*B - 0.667*(1 - c1)*e*I - c2*(P - 0.333*trP*I)
37     where
38         k = 0.5*trB,
39         epsilon = ce*k^3/2/delta
40         epsilon/k = ce*k^1/2/delta
41         P = -(B'L + L'B)
42         nuEff = ck*sqrt(k)*delta + nu
43     @endverbatim
45     This version from Launder, Rece & Rodi 1975
47 SourceFiles
48     LRRDiffStress.C
50 \*---------------------------------------------------------------------------*/
52 #ifndef LRRDiffStress_H
53 #define LRRDiffStress_H
55 #include "GenSGSStress.H"
57 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
59 namespace Foam
61 namespace incompressible
63 namespace LESModels
66 /*---------------------------------------------------------------------------*\
67                            Class LRRDiffStress Declaration
68 \*---------------------------------------------------------------------------*/
70 class LRRDiffStress
72     public GenSGSStress
74     // Private data
76         dimensionedScalar ck_;
77         dimensionedScalar c1_;
78         dimensionedScalar c2_;
81     // Private Member Functions
83         // Disallow default bitwise copy construct and assignment
84         LRRDiffStress(const LRRDiffStress&);
85         LRRDiffStress& operator=(const LRRDiffStress&);
88 public:
90     //- Runtime type information
91     TypeName("LRRDiffStress");
93     // Constructors
95         //- Constructors from components
96         LRRDiffStress
97         (
98             const volVectorField& U,
99             const surfaceScalarField& phi,
100             transportModel& transport
101         );
104     // Destructor
106         ~LRRDiffStress()
107         {}
110     // Member Functions
112         //- Return the effective diffusivity for B
113         tmp<volScalarField> DBEff() const
114         {
115             return tmp<volScalarField>
116             (
117                 new volScalarField("DBEff", nuSgs_ + nu())
118             );
119         }
121         //- Correct Eddy-Viscosity and related properties
122         void correct(const tmp<volTensorField>& gradU);
124         //- Read turbulenceProperties dictionary
125         bool read();
129 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
131 } // End namespace LESModels
132 } // End namespace incompressible
133 } // End namespace Foam
135 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
137 #endif
139 // ************************************************************************* //