Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / src / turbulenceModels / incompressible / LES / oneEqEddy / oneEqEddy.C
blob759fe76eaaf0efd21824c1069767247224468a33
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  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
62     LESModel(typeName, U, phi, transport),
63     GenEddyVisc(U, phi, transport),
65     k_
66     (
67         IOobject
68         (
69             "k",
70             runTime_.timeName(),
71             U_.db(),
72             IOobject::MUST_READ,
73             IOobject::AUTO_WRITE
74         ),
75         mesh_
76     ),
78     ck_
79     (
80         dimensionedScalar::lookupOrAddToDict
81         (
82             "ck",
83             coeffDict_,
84             0.094
85         )
86     )
88     updateSubGridScaleFields();
90     printCoeffs();
94 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
96 void oneEqEddy::correct(const tmp<volTensorField>& gradU)
98     GenEddyVisc::correct(gradU);
100     volScalarField G = 2.0*nuSgs_*magSqr(symm(gradU));
102     fvScalarMatrix kEqn
103     (
104        fvm::ddt(k_)
105      + fvm::div(phi(), k_)
106      - fvm::laplacian(DkEff(), k_)
107     ==
108        G
109      - fvm::Sp(ce_*sqrt(k_)/delta(), k_)
110     );
112     kEqn.relax();
113     kEqn.solve();
115     bound(k_, k0());
117     updateSubGridScaleFields();
121 bool oneEqEddy::read()
123     if (GenEddyVisc::read())
124     {
125         ck_.readIfPresent(coeffDict());
127         return true;
128     }
129     else
130     {
131         return false;
132     }
136 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
138 } // End namespace LESModels
139 } // End namespace incompressible
140 } // End namespace Foam
142 // ************************************************************************* //