Files
openfoam/applications/utilities/postProcessing/sampling/sample/FoamX/sample.cfg
2008-04-15 18:56:58 +01:00

72 lines
1.9 KiB
INI

/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.0 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
// sample tool definition
description "Line sampling";
sampleDict
{
type dictionary;
description "sample control dictionary";
dictionaryPath "system";
entries
{
arguments
{
type rootCaseTimeArguments;
}
interpolationScheme
{
type word;
description "Sampling interpolation scheme";
default cellPoint;
valueList
(
cell
cellPoint
cellPointFace
);
}
writeFormat
{
type word;
description "Output format of data";
default raw;
valueList
(
raw
gnuplot
xmgr
jplot
);
}
sampleSets
{
type list;
description "List of sampling sets";
elementType
{
include "sampleSet.cfg";
}
}
fields
{
type list;
description "List of fields to be sampled";
elementType word;
}
}
}
// ************************************************************************* //