mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
19 lines
432 B
C
19 lines
432 B
C
IOdictionary propsDict
|
|
(
|
|
IOobject
|
|
(
|
|
"particleTrackProperties",
|
|
runTime.constant(),
|
|
mesh,
|
|
IOobject::MUST_READ_IF_MODIFIED
|
|
)
|
|
);
|
|
|
|
const word cloudName(propsDict.lookup("cloudName"));
|
|
|
|
label sampleFrequency(readLabel(propsDict.lookup("sampleFrequency")));
|
|
|
|
label maxPositions(readLabel(propsDict.lookup("maxPositions")));
|
|
|
|
word setFormat(propsDict.lookupOrDefault<word>("setFormat", "vtk"));
|