Now solvers return solver performance information for all components with backward compatibility provided by the "max" function which created the scalar solverPerformance from the maximum component residuals from the SolverPerformance<Type>. The residuals functionObject has been upgraded to support SolverPerformance<Type> so that now the initial residuals for all (valid) components are tabulated, e.g. for the cavity tutorial case the residuals for p, Ux and Uy are listed vs time. Currently the residualControl option of pimpleControl and simpleControl is supported in backward compatibility mode (only the maximum component residual is considered) but in the future this will be upgraded to support convergence control for the components individually. This development started from patches provided by Bruno Santos, See http://www.openfoam.org/mantisbt/view.php?id=1824
125 lines
3.4 KiB
C++
125 lines
3.4 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Class
|
|
Foam::data
|
|
|
|
Description
|
|
Database for solution data, solver performance and other reduced data.
|
|
|
|
fvMesh is derived from data so that all fields have access to the data from
|
|
the mesh reference they hold.
|
|
|
|
SourceFiles
|
|
data.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef data_H
|
|
#define data_H
|
|
|
|
#include "IOdictionary.H"
|
|
#include "solverPerformance.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class data Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class data
|
|
:
|
|
public IOdictionary
|
|
{
|
|
// Private data
|
|
|
|
//- Previously used time-index, used for reset between iterations
|
|
mutable label prevTimeIndex_;
|
|
|
|
|
|
// Private Member Functions
|
|
|
|
//- Disallow default bitwise copy construct
|
|
data(const data&);
|
|
|
|
//- Disallow default bitwise assignment
|
|
void operator=(const data&);
|
|
|
|
|
|
public:
|
|
|
|
//- Debug switch
|
|
static int debug;
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct for objectRegistry
|
|
data(const objectRegistry& obr);
|
|
|
|
|
|
// Member Functions
|
|
|
|
// Access
|
|
|
|
//- Return the dictionary of solver performance data
|
|
// which includes initial and final residuals for convergence
|
|
// checking
|
|
const dictionary& solverPerformanceDict() const;
|
|
|
|
//- Add/set the solverPerformance entry for the named field
|
|
template<class Type>
|
|
void setSolverPerformance
|
|
(
|
|
const word& name,
|
|
const SolverPerformance<Type>&
|
|
) const;
|
|
|
|
//- Add/set the solverPerformance entry, using its fieldName
|
|
template<class Type>
|
|
void setSolverPerformance
|
|
(
|
|
const SolverPerformance<Type>&
|
|
) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#ifdef NoRepository
|
|
# include "dataTemplates.C"
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|