ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / turbulenceModels / incompressible / LES / oneEqEddy / oneEqEddy.C
blob40e4f293e63c69b0e20298cca1a20054672a09d1
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 "oneEqEddy.H"
27 #include "addToRunTimeSelectionTable.H"
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 namespace Foam
33 namespace incompressible
35 namespace LESModels
38 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
40 defineTypeNameAndDebug(oneEqEddy, 0);
41 addToRunTimeSelectionTable(LESModel, oneEqEddy, dictionary);
44 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
46 void oneEqEddy::updateSubGridScaleFields()
48     nuSgs_ = ck_*sqrt(k_)*delta();
49     nuSgs_.correctBoundaryConditions();
53 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
55 oneEqEddy::oneEqEddy
57     const volVectorField& U,
58     const surfaceScalarField& phi,
59     transportModel& transport,
60     const word& turbulenceModelName,
61     const word& modelName
64     LESModel(modelName, U, phi, transport, turbulenceModelName),
65     GenEddyVisc(U, phi, transport),
67     k_
68     (
69         IOobject
70         (
71             "k",
72             runTime_.timeName(),
73             mesh_,
74             IOobject::MUST_READ,
75             IOobject::AUTO_WRITE
76         ),
77         mesh_
78     ),
80     ck_
81     (
82         dimensioned<scalar>::lookupOrAddToDict
83         (
84             "ck",
85             coeffDict_,
86             0.094
87         )
88     )
90     bound(k_, kMin_);
92     updateSubGridScaleFields();
94     printCoeffs();
98 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
100 void oneEqEddy::correct(const tmp<volTensorField>& gradU)
102     GenEddyVisc::correct(gradU);
104     tmp<volScalarField> G = 2.0*nuSgs_*magSqr(symm(gradU));
106     tmp<fvScalarMatrix> kEqn
107     (
108        fvm::ddt(k_)
109      + fvm::div(phi(), k_)
110      - fvm::laplacian(DkEff(), k_)
111     ==
112        G
113      - fvm::Sp(ce_*sqrt(k_)/delta(), k_)
114     );
116     kEqn().relax();
117     kEqn().solve();
119     bound(k_, kMin_);
121     updateSubGridScaleFields();
125 bool oneEqEddy::read()
127     if (GenEddyVisc::read())
128     {
129         ck_.readIfPresent(coeffDict());
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 // ************************************************************************* //