Files
OpenFOAM-12/applications/utilities/postProcessing/lagrangian/particleTracks/createFields.H
Henry Weller 04dd989911 Time: Removed graphFormat
setFormat no longer defaults to the value of graphFormat optionally set in
controlDict and must be set in the functionObject dictionary.

boundaryFoam, financialFoam and pdfPlot still require a graphFormat entry in
controlDict but this is now read directly rather than by Time.
2023-06-16 14:51:30 +01:00

10 lines
311 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.lookup<word>("setFormat"));