mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
72 lines
1.9 KiB
INI
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;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|