OpenFOAM-4.x/etc/templates/axisymmetricJet/system/graph
Henry Weller 758dfc2c1f Standardized the naming of functions which control the writing of fields etc.
to have the prefix 'write' rather than 'output'

So outputTime() -> writeTime()

but 'outputTime()' is still supported for backward-compatibility.

Also removed the redundant secondary-writing functionality from Time
which has been superseded by the 'writeRegisteredObject' functionObject.
2016-05-12 17:38:01 +01:00

42 lines
1.2 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object ;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
graph
{
type sets;
functionObjectLibs ("libsampling.so");
writeControl writeTime;
interpolationScheme cellPointFace;
setFormat raw;
sets
(
centreline
{
type uniform;
axis x;
start ( 0 1e-6 0);
end (25 1e-6 0);
nPoints 250;
}
);
fields ( U );
}
// ************************************************************************* //