ENH: patchCloud: return pTraits<Type>::max for unfound points
[OpenFOAM-1.7.x.git] / src / turbulenceModels / incompressible / LES / LESModel / LESModel.C
blobe1755e83fd772c7d322c9d1481267b86ac322b92
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2010 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
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 "LESModel.H"
27 #include "addToRunTimeSelectionTable.H"
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 namespace Foam
33 namespace incompressible
36 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
38 defineTypeNameAndDebug(LESModel, 0);
39 defineRunTimeSelectionTable(LESModel, dictionary);
40 addToRunTimeSelectionTable(turbulenceModel, LESModel, turbulenceModel);
42 // * * * * * * * * * * * * * Protected Member Functions  * * * * * * * * * * //
44 void LESModel::printCoeffs()
46     if (printCoeffs_)
47     {
48         Info<< type() << "Coeffs" << coeffDict_ << endl;
49     }
53 // * * * * * * * * * * * * * * * Constructor * * * * * * * * * * * * * * * * //
55 LESModel::LESModel
57     const word& type,
58     const volVectorField& U,
59     const surfaceScalarField& phi,
60     transportModel& lamTransportModel
63     turbulenceModel(U, phi, lamTransportModel),
65     IOdictionary
66     (
67         IOobject
68         (
69             "LESProperties",
70             U.time().constant(),
71             U.db(),
72             IOobject::MUST_READ,
73             IOobject::NO_WRITE
74         )
75     ),
77     printCoeffs_(lookupOrDefault<Switch>("printCoeffs", false)),
78     coeffDict_(subOrEmptyDict(type + "Coeffs")),
80     k0_("k0", dimVelocity*dimVelocity, SMALL),
81     delta_(LESdelta::New("delta", U.mesh(), *this))
83     readIfPresent("k0", k0_);
85     // Force the construction of the mesh deltaCoeffs which may be needed
86     // for the construction of the derived models and BCs
87     mesh_.deltaCoeffs();
91 // * * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * //
93 autoPtr<LESModel> LESModel::New
95     const volVectorField& U,
96     const surfaceScalarField& phi,
97     transportModel& transport
100     word modelName;
102     // Enclose the creation of the dictionary to ensure it is deleted
103     // before the turbulenceModel is created otherwise the dictionary is
104     // entered in the database twice
105     {
106         IOdictionary dict
107         (
108             IOobject
109             (
110                 "LESProperties",
111                 U.time().constant(),
112                 U.db(),
113                 IOobject::MUST_READ,
114                 IOobject::NO_WRITE
115             )
116         );
118         dict.lookup("LESModel") >> modelName;
119     }
121     Info<< "Selecting LES turbulence model " << modelName << endl;
123     dictionaryConstructorTable::iterator cstrIter =
124         dictionaryConstructorTablePtr_->find(modelName);
126     if (cstrIter == dictionaryConstructorTablePtr_->end())
127     {
128         FatalErrorIn
129         (
130             "LESModel::New(const volVectorField& U, const "
131             "surfaceScalarField& phi, transportModel&)"
132         )   << "Unknown LESModel type " << modelName
133             << endl << endl
134             << "Valid LESModel types are :" << endl
135             << dictionaryConstructorTablePtr_->sortedToc()
136             << exit(FatalError);
137     }
139     return autoPtr<LESModel>(cstrIter()(U, phi, transport));
143 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
145 void LESModel::correct(const tmp<volTensorField>&)
147     turbulenceModel::correct();
148     delta_().correct();
152 void LESModel::correct()
154     correct(fvc::grad(U_));
158 bool LESModel::read()
160     if (regIOobject::read())
161     {
162         if (const dictionary* dictPtr = subDictPtr(type() + "Coeffs"))
163         {
164             coeffDict_ <<= *dictPtr;
165         }
167         delta_().read(*this);
169         readIfPresent("k0", k0_);
171         return true;
172     }
173     else
174     {
175         return false;
176     }
180 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
182 } // End namespace incompressible
183 } // End namespace Foam
185 // ************************************************************************* //