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-------------------------------------------------------------------------------
12License
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
34namespace Foam
35{
38}
39
40
41// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
42
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_
79 ) << exit(FatalError);
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
105
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
124
125// ************************************************************************* //
SIMPLE control class to supply convergence information/checks for the SIMPLE loop.
Definition: SIMPLEControl.H:56
virtual void readIters()
void checkMeanSolution() const
virtual bool read()
Read controls from fvSolution dictionary.
Definition: SIMPLEControl.C:86
static autoPtr< Time > New()
Construct (dummy) Time - no functionObjects or libraries.
Definition: Time.C:717
Pointer management similar to std::unique_ptr, with some additional methods and type checking.
Definition: autoPtr.H:66
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:126
T get(const word &keyword, enum keyType::option matchOpt=keyType::REGEX) const
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:91
SIMPLE control class to supply convergence information/checks for the SIMPLE loop.
Definition: simpleControl.H:55
bool read()
Read controls from fvSolution dictionary.
Definition: simpleControl.C:42
Base class for solver control classes.
Definition: solverControl.H:52
virtual bool read()
Read controls from optimisationDict.
Definition: solverControl.C:41
Base class for solution control classes.
Definition: solver.H:54
A class for handling words, derived from Foam::string.
Definition: word.H:68
#define defineTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information.
Definition: className.H:121
dynamicFvMesh & mesh
#define FatalErrorInLookup(lookupTag, lookupName, lookupTable)
Report an error message using Foam::FatalError.
Definition: error.H:457
#define WarningInFunction
Report a warning using Foam::Warning.
Namespace for OpenFOAM.
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:372
error FatalError
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:130
constexpr char nl
The newline '\n' character (0x0a)
Definition: Ostream.H:53
constexpr char tab
The tab '\t' character(0x09)
Definition: Ostream.H:52
#define defineRunTimeSelectionTable(baseType, argNames)
Define run-time selection table.
dictionary dict