SIMPLEControl.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) 2007-2019 PCOpt/NTUA
9  Copyright (C) 2013-2019 FOSS GP
10  Copyright (C) 2019-2021 OpenCFD Ltd.
11 -------------------------------------------------------------------------------
12 License
13  This file is part of OpenFOAM.
14 
15  OpenFOAM is free software: you can redistribute it and/or modify it
16  under the terms of the GNU General Public License as published by
17  the Free Software Foundation, either version 3 of the License, or
18  (at your option) any later version.
19 
20  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
21  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
22  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
23  for more details.
24 
25  You should have received a copy of the GNU General Public License
26  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
27 
28 \*---------------------------------------------------------------------------*/
29 
30 #include "SIMPLEControl.H"
31 
32 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33 
34 namespace Foam
35 {
36  defineTypeNameAndDebug(SIMPLEControl, 0);
38 }
39 
40 
41 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
42 
43 Foam::SIMPLEControl::SIMPLEControl
44 (
45  fvMesh& mesh,
46  const word& managerType,
47  const solver& solver
48 )
49 :
51  simpleControl(mesh, "SIMPLE", false),
52  managerType_(managerType),
53  nIters_(Zero),
54  pRefCell_(Zero),
55  pRefValue_(Zero)
56 {
57  read();
58 }
59 
60 
61 // * * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * //
62 
64 (
65  fvMesh& mesh,
66  const word& managerType,
67  const solver& solver
68 )
69 {
70  auto* ctorPtr = dictionaryConstructorTable(managerType);
71 
72  if (!ctorPtr)
73  {
75  (
76  "control",
77  managerType,
78  *dictionaryConstructorTablePtr_
80  }
81 
82  return autoPtr<SIMPLEControl>(ctorPtr(mesh, managerType, solver));
83 }
84 
85 
87 {
90  readIters();
91 
92  if (average_ && averageStartIter_ > nIters_)
93  {
95  << "Average start iteration is larger than nIter in solver "
96  << solver_.solverName() << nl
97  << tab << "Disabling averaging ..." << nl
98  << endl;
99  average_ = false;
100  }
101 
102  return true;
103 }
104 
107 {
108  nIters_ = dict().get<label>("nIters");
109 }
110 
111 
113 {
114  if (average_ && iter_ < averageStartIter_)
115  {
117  << "Solver " << solver_.solverName()
118  << " converged before averaging started" << nl << tab
119  << "Using instantaneous fields ..." << nl
120  << endl;
121  }
122 }
123 
126 {
128 }
129 
132 {
133  return true;
134 }
135 
136 
138 {
139  // Does nothing in base
140 }
141 
142 
143 // ************************************************************************* //
dictionary dict
virtual bool performIter()
Perform this iteration?
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:125
Base solver class.
Definition: solver.H:45
error FatalError
Error stream (stdout output on all processes), with additional &#39;FOAM FATAL ERROR&#39; header text and sta...
A list of keyword definitions, which are a keyword followed by a number of values (eg...
Definition: dictionary.H:129
constexpr char nl
The newline &#39;\n&#39; character (0x0a)
Definition: Ostream.H:50
virtual bool read()
Read controls from optimisationDict.
Definition: solverControl.C:34
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:531
virtual void incrementIter()
Increment iteration counter.
virtual void readIters()
Definition: SIMPLEControl.C:99
constexpr char tab
The tab &#39;\t&#39; character(0x09)
Definition: Ostream.H:49
virtual bool converged()
Is the solver converged.
T get(const word &keyword, enum keyType::option matchOpt=keyType::REGEX) const
Find and return a T. FatalIOError if not found, or if the number of tokens is incorrect.
#define FatalErrorInLookup(lookupTag, lookupName, lookupTable)
Report an error message using Foam::FatalError.
Definition: error.H:605
dynamicFvMesh & mesh
A class for handling words, derived from Foam::string.
Definition: word.H:63
Base class for solver control classes.
Definition: solverControl.H:45
virtual bool read()
Read controls from fvSolution dictionary.
Definition: SIMPLEControl.C:79
defineRunTimeSelectionTable(reactionRateFlameArea, dictionary)
defineTypeNameAndDebug(combustionModel, 0)
static autoPtr< SIMPLEControl > New(fvMesh &mesh, const word &managerType, const solver &solver)
Return a reference to the selected turbulence model.
Definition: SIMPLEControl.C:57
#define WarningInFunction
Report a warning using Foam::Warning.
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
bool criteriaSatisfied()
Return true if all convergence checks are satisfied.
Definition: simpleControl.C:42
SIMPLE control class to supply convergence information/checks for the SIMPLE loop.
Definition: SIMPLEControl.H:46
SIMPLE control class to supply convergence information/checks for the SIMPLE loop.
Definition: simpleControl.H:48
void checkMeanSolution() const
Namespace for OpenFOAM.
bool read()
Read controls from fvSolution dictionary.
Definition: simpleControl.C:35
static constexpr const zero Zero
Global zero (0)
Definition: zero.H:127