FreeFOAM The Cross-Platform CFD Toolkit
newCollisionModel.C
Go to the documentation of this file.
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.
10 
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.
15 
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.
20 
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/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 #include <OpenFOAM/error.H>
27 
28 #include "collisionModel.H"
32 
33 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
34 
35 namespace Foam
36 {
37 
38 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
39 
40 autoPtr<collisionModel> collisionModel::New
41 (
42  const dictionary& dict,
43  spray& sm,
44  Random& rndGen
45 )
46 {
47  word collisionModelType
48  (
49  dict.lookup("collisionModel")
50  );
51 
52  Info<< "Selecting collisionModel "
53  << collisionModelType << endl;
54 
55 
56  dictionaryConstructorTable::iterator cstrIter =
57  dictionaryConstructorTablePtr_->find(collisionModelType);
58 
59  if (cstrIter == dictionaryConstructorTablePtr_->end())
60  {
62  << "collisionModel::New(const dictionary&, const spray&) : "
63  << nl
64  << " unknown collisionModelType type "
65  << collisionModelType
66  << ", constructor not in hash table" << nl << nl
67  << " Valid collisionModel types are :" << nl
68  << dictionaryConstructorTablePtr_->sortedToc()
69  << abort(FatalError);
70  }
71 
72  return autoPtr<collisionModel>(cstrIter()(dict, sm, rndGen));
73 }
74 
75 
76 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
77 
78 } // End namespace Foam
79 
80 // ************************ vim: set sw=4 sts=4 et: ************************ //