Settings for the particleTracks utility are now specified in system/particleTracksDict. Correspondingly, settings for steadyParticleTracks are now specified in system/steadyParticleTracksDict.
10 lines
327 B
C++
10 lines
327 B
C++
IOdictionary propsDict(systemDict("particleTracksDict", args, runTime));
|
|
|
|
const word cloudName(propsDict.lookup("cloudName"));
|
|
|
|
label sampleFrequency(propsDict.lookup<label>("sampleFrequency"));
|
|
|
|
label maxPositions(propsDict.lookup<label>("maxPositions"));
|
|
|
|
word setFormat(propsDict.lookupOrDefault<word>("setFormat", "vtk"));
|