Loading...
Searching...
No Matches
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\*---------------------------------------------------------------------------*/
31
32// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33
34namespace Foam
35{
36 defineTypeNameAndDebug(SIMPLEControl, 0);
38}
39
40
41// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
42
43Foam::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)
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
128}
129
132{
133 return true;
134}
135
136
138{
139 // Does nothing in base
140}
141
142
143// ************************************************************************* //
SIMPLE control class to supply convergence information/checks for the SIMPLE loop.
label pRefCell_
Pressure reference cell.
virtual bool converged()
Is the solver converged.
static autoPtr< SIMPLEControl > New(fvMesh &mesh, const word &managerType, const solver &solver)
Return a reference to the selected turbulence model.
virtual void readIters()
virtual void incrementIter()
Increment iteration counter.
label nIters_
Number of SIMPLE iterations.
const word & managerType_
Optimisation type.
scalar pRefValue_
Pressure reference value.
void checkMeanSolution() const
virtual bool performIter()
Perform this iteration?
virtual bool read()
Read controls from optimisationDict.
Pointer management similar to std::unique_ptr, with some additional methods and type checking.
Definition autoPtr.H:65
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition dictionary.H:133
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.
Mesh data needed to do the Finite Volume discretisation.
Definition fvMesh.H:85
SIMPLE control class to supply convergence information/checks for the SIMPLE loop.
bool criteriaSatisfied()
Return true if all convergence checks are satisfied.
bool read()
Read controls from fvSolution dictionary.
Base class for solver control classes.
const solver & solver_
Reference to the underlaying solver.
bool average_
Do averaging.
label averageStartIter_
Averaging start index.
label iter_
Current iteration index.
virtual bool read()
Read controls from optimisationDict.
Base solver class.
Definition solver.H:48
A class for handling words, derived from Foam::string.
Definition word.H:66
#define defineTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information.
Definition className.H:142
dynamicFvMesh & mesh
#define FatalErrorInLookup(lookupTag, lookupName, lookupTable)
Report an error message using Foam::FatalError.
Definition error.H:607
#define WarningInFunction
Report a warning using Foam::Warning.
Namespace for OpenFOAM.
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition Ostream.H:519
static constexpr const zero Zero
Global zero (0).
Definition zero.H:127
error FatalError
Error stream (stdout output on all processes), with additional 'FOAM FATAL ERROR' header text and sta...
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition errorManip.H:125
constexpr char nl
The newline '\n' character (0x0a).
Definition Ostream.H:50
constexpr char tab
The tab '\t' character(0x09).
Definition Ostream.H:49
#define defineRunTimeSelectionTable(baseType, argNames)
Define run-time selection table.
dictionary dict