Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / turbulenceModels / incompressible / LES / GenEddyVisc / GenEddyVisc.C
blobe6c880ea7e04fd509f7889f58da1e9e575a053b7
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "GenEddyVisc.H"
28 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
30 namespace Foam
32 namespace incompressible
34 namespace LESModels
37 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
39 defineTypeNameWithName(GenEddyVisc, "GenEddyVisc");
42 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
44 GenEddyVisc::GenEddyVisc
46     const volVectorField& U,
47     const surfaceScalarField& phi,
48     transportModel& transport,
49     const word& turbulenceModelName,
50     const word& modelName
53     LESModel(modelName, U, phi, transport, turbulenceModelName),
55     ce_
56     (
57         dimensioned<scalar>::lookupOrAddToDict
58         (
59             "ce",
60             coeffDict_,
61             1.048
62         )
63     ),
65     nuSgs_
66     (
67         IOobject
68         (
69             "nuSgs",
70             runTime_.timeName(),
71             mesh_,
72             IOobject::MUST_READ,
73             IOobject::AUTO_WRITE
74         ),
75         mesh_
76     )
78 //    printCoeffs();
82 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
84 tmp<volSymmTensorField> GenEddyVisc::B() const
86     return ((2.0/3.0)*I)*k() - nuSgs_*twoSymm(fvc::grad(U()));
90 tmp<volSymmTensorField> GenEddyVisc::devBeff() const
92     return -nuEff()*dev(twoSymm(fvc::grad(U())));
96 tmp<fvVectorMatrix> GenEddyVisc::divDevBeff(volVectorField& U) const
98     return
99     (
100       - fvm::laplacian(nuEff(), U) - fvc::div(nuEff()*dev(T(fvc::grad(U))))
101     );
105 void GenEddyVisc::correct(const tmp<volTensorField>& gradU)
107     LESModel::correct(gradU);
111 bool GenEddyVisc::read()
113     if (LESModel::read())
114     {
115         ce_.readIfPresent(coeffDict());
117         return true;
118     }
119     else
120     {
121         return false;
122     }
126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
128 } // End namespace LESModels
129 } // End namespace incompressible
130 } // End namespace Foam
132 // ************************************************************************* //