1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
7 -------------------------------------------------------------------------------
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
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/>.
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())
37 FatalErrorIn("cellModeller::cellModeller(const fileName&)")
38 << "attempt to re-construct cellModeller when it already exists"
45 if (models_[i].index() > maxIndex) maxIndex = models_[i].index();
48 modelPtrs_.setSize(maxIndex + 1);
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).
57 if (modelPtrs_[models_[i].index()])
59 FatalErrorIn("cellModeller::cellModeller(const fileName&)")
60 << "more than one model share the index "
65 modelPtrs_[models_[i].index()] = &models_[i];
67 if (modelDictionary_.found(models_[i].name()))
69 FatalErrorIn("cellModeller::cellModeller(const fileName&)")
70 << "more than one model share the name "
75 modelDictionary_.insert(models_[i].name(), &models_[i]);
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())
105 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 // ************************************************************************* //