19 lines
435 B
C
19 lines
435 B
C
IOdictionary propsDict
|
|
(
|
|
IOobject
|
|
(
|
|
"particleTrackProperties",
|
|
runTime.constant(),
|
|
mesh,
|
|
IOobject::MUST_READ_IF_MODIFIED
|
|
)
|
|
);
|
|
|
|
const word cloudName(propsDict.get<word>("cloud"));
|
|
|
|
const label sampleFrequency(propsDict.get<label>("sampleFrequency"));
|
|
|
|
const label maxPositions(propsDict.get<label>("maxPositions"));
|
|
|
|
const word setFormat(propsDict.lookupOrDefault<word>("setFormat", "vtk"));
|