initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / turbulenceModels / LES / incompressible / LESModel / newLESModel.C
blob5cda1e5f562a031c46ffc8fc87dac5f8d3544879
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 incompressible
36 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
38 autoPtr<LESModel> LESModel::New
40     const volVectorField& U,
41     const surfaceScalarField& phi,
42     transportModel& transport
45     word LESModelTypeName;
47     // Enclose the creation of the turbulencePropertiesDict to ensure it is
48     // deleted before the turbulenceModel is created otherwise the dictionary
49     // is entered in the database twice
50     {
51         IOdictionary turbulencePropertiesDict
52         (
53             IOobject
54             (
55                 "LESProperties",
56                 U.time().constant(),
57                 U.db(),
58                 IOobject::MUST_READ,
59                 IOobject::NO_WRITE
60             )
61         );
63         turbulencePropertiesDict.lookup("LESModel") >> LESModelTypeName;
64     }
66     Info<< "Selecting LES turbulence model " << LESModelTypeName << endl;
68     dictionaryConstructorTable::iterator cstrIter =
69         dictionaryConstructorTablePtr_->find(LESModelTypeName);
71     if (cstrIter == dictionaryConstructorTablePtr_->end())
72     {
73         FatalErrorIn
74         (
75             "LESModel::select(const volVectorField&, const "
76             "surfaceScalarField&, transportModel&)"
77         )   << "Unknown LESModel type " << LESModelTypeName
78             << endl << endl
79             << "Valid LESModel types are :" << endl
80             << dictionaryConstructorTablePtr_->toc()
81             << exit(FatalError);
82     }
84     return autoPtr<LESModel>(cstrIter()(U, phi, transport));
88 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
90 } // End namespace incompressible
91 } // End namespace Foam
93 // ************************************************************************* //