BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / OpenFOAM / meshes / meshShapes / cellModeller / cellModeller.C
blobb3c1f1eaad46790c87c7a5dd50387c265bc70860
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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 Description
25     Constructor of cellModeller: just sets the cellModeller's params.
27 \*---------------------------------------------------------------------------*/
29 #include "cellModeller.H"
31 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
33 Foam::cellModeller::cellModeller()
35     if (modelPtrs_.size())
36     {
37         FatalErrorIn("cellModeller::cellModeller(const fileName&)")
38             << "attempt to re-construct cellModeller when it already exists"
39             << exit(FatalError);
40     }
42     label maxIndex = 0;
43     forAll(models_, i)
44     {
45         if (models_[i].index() > maxIndex) maxIndex = models_[i].index();
46     }
48     modelPtrs_.setSize(maxIndex + 1);
49     modelPtrs_ = NULL;
51     // For all the words in the wordlist, set the details of the model
52     // to those specified by the word name and the other parameters
53     // given. This should result in an automatic 'read' of the model
54     // from its File (see cellModel class).
55     forAll(models_, i)
56     {
57         if (modelPtrs_[models_[i].index()])
58         {
59             FatalErrorIn("cellModeller::cellModeller(const fileName&)")
60                 << "more than one model share the index "
61                 << models_[i].index()
62                 << exit(FatalError);
63         }
65         modelPtrs_[models_[i].index()] = &models_[i];
67         if (modelDictionary_.found(models_[i].name()))
68         {
69             FatalErrorIn("cellModeller::cellModeller(const fileName&)")
70                 << "more than one model share the name "
71                 << models_[i].name()
72                 << exit(FatalError);
73         }
75         modelDictionary_.insert(models_[i].name(), &models_[i]);
76     }
80 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
82 Foam::cellModeller::~cellModeller()
86 // * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * * //
88 // Returns a pointer to a model which matches the string symbol
89 // supplied. A null pointer is returned if there is no suitable match.
91 const Foam::cellModel* Foam::cellModeller::lookup(const word& name)
93     HashTable<const cellModel*>::iterator iter = modelDictionary_.find(name);
95     if (iter != modelDictionary_.end())
96     {
97         return iter();
98     }
99     else
100     {
101         return NULL;
102     }
105 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 // ************************************************************************* //