BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / turbulenceModels / incompressible / LES / Smagorinsky / Smagorinsky.C
blobed1e330934326de60b5a2030165cc5c7d5c5df99
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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 "Smagorinsky.H"
27 #include "addToRunTimeSelectionTable.H"
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 namespace Foam
33 namespace incompressible
35 namespace LESModels
38 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
40 defineTypeNameAndDebug(Smagorinsky, 0);
41 addToRunTimeSelectionTable(LESModel, Smagorinsky, dictionary);
43 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
45 void Smagorinsky::updateSubGridScaleFields(const volTensorField& gradU)
47     nuSgs_ = ck_*delta()*sqrt(k(gradU));
48     nuSgs_.correctBoundaryConditions();
52 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
54 Smagorinsky::Smagorinsky
56     const volVectorField& U,
57     const surfaceScalarField& phi,
58     transportModel& transport,
59     const word& turbulenceModelName,
60     const word& modelName
63     LESModel(modelName, U, phi, transport, turbulenceModelName),
64     GenEddyVisc(U, phi, transport),
66     ck_
67     (
68         dimensioned<scalar>::lookupOrAddToDict
69         (
70             "ck",
71             coeffDict_,
72             0.094
73         )
74     )
76     updateSubGridScaleFields(fvc::grad(U));
78     printCoeffs();
82 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
84 void Smagorinsky::correct(const tmp<volTensorField>& gradU)
86     GenEddyVisc::correct(gradU);
87     updateSubGridScaleFields(gradU());
91 bool Smagorinsky::read()
93     if (GenEddyVisc::read())
94     {
95         ck_.readIfPresent(coeffDict());
97         return true;
98     }
99     else
100     {
101         return false;
102     }
106 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 } // End namespace LESModels
109 } // End namespace incompressible
110 } // End namespace Foam
112 // ************************************************************************* //