initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / turbulenceModels / incompressible / LES / oneEqEddy / oneEqEddy.C
blob28a0a1ed5a00ddac94a2b0818ee2343c279f9faf
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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 \*---------------------------------------------------------------------------*/
27 #include "oneEqEddy.H"
28 #include "addToRunTimeSelectionTable.H"
30 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
32 namespace Foam
34 namespace incompressible
36 namespace LESModels
39 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
41 defineTypeNameAndDebug(oneEqEddy, 0);
42 addToRunTimeSelectionTable(LESModel, oneEqEddy, dictionary);
45 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
47 void oneEqEddy::updateSubGridScaleFields()
49     nuSgs_ = ck_*sqrt(k_)*delta();
50     nuSgs_.correctBoundaryConditions();
54 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
56 oneEqEddy::oneEqEddy
58     const volVectorField& U,
59     const surfaceScalarField& phi,
60     transportModel& transport
63     LESModel(typeName, U, phi, transport),
64     GenEddyVisc(U, phi, transport),
66     k_
67     (
68         IOobject
69         (
70             "k",
71             runTime_.timeName(),
72             mesh_,
73             IOobject::MUST_READ,
74             IOobject::AUTO_WRITE
75         ),
76         mesh_
77     ),
79     ck_
80     (
81         dimensioned<scalar>::lookupOrAddToDict
82         (
83             "ck",
84             coeffDict_,
85             0.094
86         )
87     )
89     updateSubGridScaleFields();
91     printCoeffs();
95 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
97 void oneEqEddy::correct(const tmp<volTensorField>& gradU)
99     GenEddyVisc::correct(gradU);
101     volScalarField G = 2.0*nuSgs_*magSqr(symm(gradU));
103     fvScalarMatrix kEqn
104     (
105        fvm::ddt(k_)
106      + fvm::div(phi(), k_)
107      - fvm::laplacian(DkEff(), k_)
108     ==
109        G
110      - fvm::Sp(ce_*sqrt(k_)/delta(), k_)
111     );
113     kEqn.relax();
114     kEqn.solve();
116     bound(k_, k0());
118     updateSubGridScaleFields();
122 bool oneEqEddy::read()
124     if (GenEddyVisc::read())
125     {
126         ck_.readIfPresent(coeffDict());
128         return true;
129     }
130     else
131     {
132         return false;
133     }
137 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
139 } // End namespace LESModels
140 } // End namespace incompressible
141 } // End namespace Foam
143 // ************************************************************************* //