BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / turbulenceModels / incompressible / LES / mixedSmagorinsky / mixedSmagorinsky.C
blob4f2804577fa4020e007e222bdc946badee3e3715
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 "mixedSmagorinsky.H"
27 #include "addToRunTimeSelectionTable.H"
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 namespace Foam
33 namespace incompressible
35 namespace LESModels
38 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
40 defineTypeNameAndDebug(mixedSmagorinsky, 0);
41 addToRunTimeSelectionTable(LESModel, mixedSmagorinsky, dictionary);
43 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
45 mixedSmagorinsky::mixedSmagorinsky
47     const volVectorField& U,
48     const surfaceScalarField& phi,
49     transportModel& transport,
50     const word& turbulenceModelName,
51     const word& modelName
54     LESModel(modelName, U, phi, transport, turbulenceModelName),
55     scaleSimilarity(U, phi, transport),
56     Smagorinsky(U, phi, transport)
58     printCoeffs();
62 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
64 tmp<volScalarField> mixedSmagorinsky::k() const
66     return
67     (
68         scaleSimilarity::k()
69       + Smagorinsky::k()
70     );
74 tmp<volScalarField> mixedSmagorinsky::epsilon() const
76     return
77     (
78         scaleSimilarity::epsilon()
79       + Smagorinsky::epsilon()
80     );
84 tmp<volSymmTensorField> mixedSmagorinsky::B() const
86     return
87     (
88         scaleSimilarity::B()
89       + Smagorinsky::B()
90     );
94 tmp<volSymmTensorField> mixedSmagorinsky::devBeff() const
96     return
97     (
98         scaleSimilarity::devBeff()
99       + Smagorinsky::devBeff()
100     );
104 tmp<fvVectorMatrix> mixedSmagorinsky::divDevBeff
106     volVectorField& U
107 ) const
109     return
110     (
111         scaleSimilarity::divDevBeff(U)
112       + Smagorinsky::divDevBeff(U)
113     );
117 void mixedSmagorinsky::correct(const tmp<volTensorField>& gradU)
119     scaleSimilarity::correct(gradU);
120     Smagorinsky::correct(gradU);
124 bool mixedSmagorinsky::read()
126     if (LESModel::read())
127     {
128         scaleSimilarity::read();
129         Smagorinsky::read();
131         return true;
132     }
133     else
134     {
135         return false;
136     }
140 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
142 } // End namespace LESModels
143 } // End namespace incompressible
144 } // End namespace Foam
146 // ************************************************************************* //