psiCombustionModelNew.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) 2011-2015 OpenFOAM Foundation
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 "psiCombustionModel.H"
27 
28 // * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * * //
29 
32 (
33  const fvMesh& mesh,
34  const word& phaseName
35 )
36 {
37  const word combModelName
38  (
40  (
41  IOobject
42  (
43  IOobject::groupName("combustionProperties", phaseName),
44  mesh.time().constant(),
45  mesh,
46  IOobject::MUST_READ,
47  IOobject::NO_WRITE,
48  false
49  )
50  ).lookup("combustionModel")
51  );
52 
53  Info<< "Selecting combustion model " << combModelName << endl;
54 
55  dictionaryConstructorTable::iterator cstrIter =
56  dictionaryConstructorTablePtr_->find(combModelName);
57 
58  if (cstrIter == dictionaryConstructorTablePtr_->end())
59  {
61  (
62  "psiCombustionModel::New"
63  ) << "Unknown psiCombustionModel type "
64  << combModelName << endl << endl
65  << "Valid combustionModels are : " << endl
66  << dictionaryConstructorTablePtr_->toc()
67  << exit(FatalError);
68  }
69 
70  const label tempOpen = combModelName.find('<');
71 
72  const word className = combModelName(0, tempOpen);
73 
74  return autoPtr<psiCombustionModel>(cstrIter()(className, mesh, phaseName));
75 }
76 
77 
78 // ************************************************************************* //
static autoPtr< psiCombustionModel > New(const fvMesh &mesh, const word &phaseName=word::null)
Selector.
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
A class for handling words, derived from string.
Definition: word.H:59
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:124
messageStream Info
dynamicFvMesh & mesh
const word & constant() const
Return constant name.
Definition: TimePaths.H:124
const Time & time() const
Return the top-level database.
Definition: fvMesh.H:243
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:91
IOdictionary is derived from dictionary and IOobject to give the dictionary automatic IO functionalit...
Definition: IOdictionary.H:53
#define FatalErrorIn(functionName)
Report an error message using Foam::FatalError.
Definition: error.H:314
ITstream & lookup(const word &, bool recursive=false, bool patternMatch=true) const
Find and return an entry data stream.
Definition: dictionary.C:452
error FatalError
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:117