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.
10 lines
311 B
C++
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"));
|