mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
Updated objects
- corrected Peclet number for compressible cases
- propagated log flag and resultName across objects
New function objects
- new fluxSummary:
- calculates positive, negative, absolute and net flux across face
zones
- new runTimeControl
- abort the calculation when a user-defined metric is achieved.
Available options include:
- average value remains unchanged wrt a given threshold
- equation initial residual exceeds a threshold - useful to abort
diverging cases
- equation max iterations exceeds a threshold - useful to abort
diverging cases
- min/max of a function object value
- min time step exceeds a threshold - useful to abort diverging
cases
- new valueAverage:
- average singular values from other function objects, e.g. Cd, Cl and
Cm from the forceCoeffs function object
120 lines
3.1 KiB
C++
120 lines
3.1 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 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::equationInitialResidualCondition
|
|
|
|
Description
|
|
Minimum or maximum initial residual run time condition
|
|
|
|
SourceFiles
|
|
equationInitialResidualCondition.H
|
|
equationInitialResidualCondition.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef equationInitialResidualCondition_H
|
|
#define equationInitialResidualCondition_H
|
|
|
|
#include "runTimeCondition.H"
|
|
#include "NamedEnum.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class equationInitialResidualCondition Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class equationInitialResidualCondition
|
|
:
|
|
public runTimeCondition
|
|
{
|
|
public:
|
|
|
|
enum operatingMode
|
|
{
|
|
omMin,
|
|
omMax
|
|
};
|
|
|
|
static const NamedEnum<operatingMode, 2> operatingModeNames;
|
|
|
|
|
|
protected:
|
|
|
|
// Protected data
|
|
|
|
//- Field name
|
|
const wordList fieldNames_;
|
|
|
|
//- Value to compare
|
|
const scalar value_;
|
|
|
|
//- Start checking from time - always skips first iteration
|
|
scalar timeStart_;
|
|
|
|
//- Operating mode
|
|
operatingMode mode_;
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("equationInitialResidual");
|
|
|
|
//- Constructor
|
|
equationInitialResidualCondition
|
|
(
|
|
const word& name,
|
|
const objectRegistry& obr,
|
|
const dictionary& dict,
|
|
functionObjectState& state
|
|
);
|
|
|
|
//- Destructor
|
|
virtual ~equationInitialResidualCondition();
|
|
|
|
|
|
// Public Member Functions
|
|
|
|
//- Apply the condition
|
|
virtual bool apply();
|
|
|
|
//- Write
|
|
virtual void write();
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|