combustionModelTemplates.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 | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2011-2017 OpenFOAM Foundation
9  Copyright (C) 2019-2021 OpenCFD Ltd.
10 -------------------------------------------------------------------------------
11 License
12  This file is part of OpenFOAM.
13 
14  OpenFOAM is free software: you can redistribute it and/or modify it
15  under the terms of the GNU General Public License as published by
16  the Free Software Foundation, either version 3 of the License, or
17  (at your option) any later version.
18 
19  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22  for more details.
23 
24  You should have received a copy of the GNU General Public License
25  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26 
27 \*---------------------------------------------------------------------------*/
28 
29 // * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * * //
30 
31 template<class CombustionModel>
33 (
36  const word& combustionProperties
37 )
38 {
39  IOobject combIO
40  (
41  thermo.phasePropertyName(combustionProperties),
42  thermo.db().time().constant(),
43  thermo.db(),
44  IOobject::MUST_READ,
45  IOobject::NO_WRITE,
46  false
47  );
48 
49  word combModelName("none");
50  if (combIO.typeHeaderOk<IOdictionary>(false))
51  {
52  IOdictionary(combIO).readEntry("combustionModel", combModelName);
53  }
54  else
55  {
56  Info<< "Combustion model not active: "
57  << thermo.phasePropertyName(combustionProperties)
58  << " not found" << endl;
59  }
60 
61  Info<< "Selecting combustion model " << combModelName << endl;
62 
63  const wordList cmpts2(basicThermo::splitThermoName(combModelName, 2));
64  const wordList cmpts3(basicThermo::splitThermoName(combModelName, 3));
65  if (cmpts2.size() == 2 || cmpts3.size() == 3)
66  {
67  combModelName = cmpts2.size() ? cmpts2[0] : cmpts3[0];
68 
70  << "Template parameters are no longer required when selecting a "
71  << combustionModel::typeName << ". This information is now "
72  << "obtained directly from the thermodynamics. Actually selecting "
73  << "combustion model " << combModelName << "." << endl;
74  }
75 
76 
77  const word compCombModelName
78  (
79  combModelName + '<' + CombustionModel::reactionThermo::typeName + '>'
80  );
81 
82  const word thermoCombModelName
83  (
84  combModelName + '<' + CombustionModel::reactionThermo::typeName + ','
85  + thermo.thermoName() + '>'
86  );
87 
88 
89  const auto& cnstrTable = *(CombustionModel::dictionaryConstructorTablePtr_);
90 
91  auto ctorIter = cnstrTable.cfind(thermoCombModelName);
92 
93  if (!ctorIter.found())
94  {
95  ctorIter = cnstrTable.cfind(compCombModelName);
96  }
97 
98  if (!ctorIter.found())
99  {
100  const wordList names(cnstrTable.sortedToc());
101 
110 
111  DynamicList<wordList> validCmpts2;
112  validCmpts2.append
113  (
114  // Header
115  wordList
116  ({
117  word::null,
118  combustionModel::typeName,
119  "reactionThermo"
120  })
121  );
122 
123  DynamicList<wordList> validCmpts7;
124  validCmpts7.append
125  (
126  // Header
127  wordList
128  ({
129  word::null,
130  combustionModel::typeName,
131  "reactionThermo",
132  "transport",
133  "thermo",
134  "equationOfState",
135  "specie",
136  "energy"
137  })
138  );
139 
140  for (const word& validName : names)
141  {
142  wordList cmpts(basicThermo::splitThermoName(validName, 0));
143 
144  if (cmpts.size() == 2)
145  {
146  validCmpts2.append(std::move(cmpts));
147  }
148  else if (cmpts.size() == 7)
149  {
154  validCmpts7.append(std::move(cmpts));
155  }
156  }
157 
159  (
160  combustionModel::typeName,
161  combModelName,
162  cnstrTable
163  );
164 
165  if (validCmpts2.size() > 1)
166  {
167  FatalError
168  << "All " << validCmpts2[0][0] << '/' << validCmpts2[0][1]
169  << " combinations are:" << nl << nl;
170 
171  printTable(validCmpts2, FatalError) << nl;
172  }
173 
174  if (validCmpts7.size() > 1)
175  {
176  FatalError
177  << "All " << validCmpts7[0][0] << '/' << validCmpts7[0][1]
178  << "/thermoPhysics combinations are:" << nl << nl;
179 
180  printTable(validCmpts7, FatalError) << nl;
181  }
182 
183  FatalError
184  << exit(FatalError);
185  }
186 
188  (
189  ctorIter.val()(combModelName, thermo, turb, combustionProperties)
190  );
191 }
192 
193 
194 // ************************************************************************* //
Foam::IOdictionary
IOdictionary is derived from dictionary and IOobject to give the dictionary automatic IO functionalit...
Definition: IOdictionary.H:54
Foam::IOobject
Defines the attributes of an object for which implicit objectRegistry management is supported,...
Definition: IOobject.H:169
Foam::word
A class for handling words, derived from Foam::string.
Definition: word.H:65
Foam::CombustionModel::reactionThermo
ReactionThermo reactionThermo
Thermo type.
Definition: CombustionModel.H:71
Foam::DynamicList
A 1D vector of objects of type <T> that resizes itself as necessary to accept the new objects.
Definition: DynamicList.H:55
thermo
psiReactionThermo & thermo
Definition: createFields.H:28
thermo
Basic thermodynamics type based on the use of fitting functions for cp, h, s obtained from the templa...
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:369
Foam::Info
messageStream Info
Information stream (stdout output on master, null elsewhere)
Foam::DynamicList::append
DynamicList< T, SizeMin > & append(const T &val)
Append an element to the end of this list.
Definition: DynamicListI.H:511
Foam::printTable
Ostream & printTable(const UList< wordList > &tbl, List< std::string::size_type > &columnWidths, Ostream &os, bool headerSeparator=true)
Print a List of wordList as a table.
Definition: wordIOList.C:47
Foam::dictionary::readEntry
bool readEntry(const word &keyword, T &val, enum keyType::option matchOpt=keyType::REGEX, bool mandatory=true) const
Definition: dictionaryTemplates.C:302
Foam::FatalError
error FatalError
FatalErrorInLookup
#define FatalErrorInLookup(lookupTag, lookupName, lookupTable)
Report an error message using Foam::FatalError.
Definition: error.H:457
Foam::exit
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:130
Foam::autoPtr
Pointer management similar to std::unique_ptr, with some additional methods and type checking.
Definition: HashPtrTable.H:53
Foam::nl
constexpr char nl
Definition: Ostream.H:404
Foam::combustionModel::New
static autoPtr< CombustionModel > New(typename CombustionModel::reactionThermo &thermo, const compressibleTurbulenceModel &turb, const word &combustionProperties)
Generic New for each of the related chemistry model.
Foam::List< word >
turb
compressible::turbulenceModel & turb
Definition: setRegionFluidFields.H:10
Foam::PtrListOps::names
List< word > names(const UPtrList< T > &list, const UnaryMatchPredicate &matcher)
WarningInFunction
#define WarningInFunction
Report a warning using Foam::Warning.
Definition: messageStream.H:328
Foam::compressibleTurbulenceModel
Abstract base class for turbulence models (RAS, LES and laminar).
Definition: compressibleTurbulenceModel.H:54