20 lines
862 B
C++
Executable File
20 lines
862 B
C++
Executable File
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: 10
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Description
|
|
For specified fields, writes out the initial residuals for the first
|
|
solution of each time step; for non-scalar fields (e.g. vectors), writes
|
|
the largest of the residuals for each component (e.g. x, y, z).
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#includeEtc "residuals.cfg"
|
|
|
|
fields (<fieldNames>);
|
|
writeResidualFields yes;
|
|
// ************************************************************************* //
|