initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / turbulenceModels / LES / compressible / LESModel / newLESModel.C
blobb411074b17072daec1e440814636ea2a967c825e
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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 "LESModel.H"
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 namespace Foam
33 namespace compressible
36 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
38 autoPtr<LESModel> LESModel::New
40     const volScalarField& rho,
41     const volVectorField& U,
42     const surfaceScalarField& phi,
43     const basicThermo& thermoPhysicalModel
46     word LESModelTypeName;
48     // Enclose the creation of the turbulencePropertiesDict to ensure it is
49     // deleted before the turbulenceModel is created otherwise the dictionary
50     // is entered in the database twice
51     {
52         IOdictionary turbulencePropertiesDict
53         (
54             IOobject
55             (
56                 "LESProperties",
57                 U.time().constant(),
58                 U.db(),
59                 IOobject::MUST_READ,
60                 IOobject::NO_WRITE
61             )
62         );
64         turbulencePropertiesDict.lookup("LESModel") >> LESModelTypeName;
65     }
67     Info<< "Selecting LES turbulence model " << LESModelTypeName << endl;
69     dictionaryConstructorTable::iterator cstrIter =
70         dictionaryConstructorTablePtr_->find(LESModelTypeName);
72     if (cstrIter == dictionaryConstructorTablePtr_->end())
73     {
74         FatalErrorIn
75         (
76             "LESModel::New(const volVectorField& U, const "
77             "surfaceScalarField& phi, const basicThermo&)"
78         )   << "Unknown LESModel type " << LESModelTypeName
79             << endl << endl
80             << "Valid LESModel types are :" << endl
81             << dictionaryConstructorTablePtr_->toc()
82             << exit(FatalError);
83     }
85     return autoPtr<LESModel>(cstrIter()(rho, U, phi, thermoPhysicalModel));
89 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
91 } // End namespace compressible
92 } // End namespace Foam
94 // ************************************************************************* //