FreeFOAM The Cross-Platform CFD Toolkit
createFields.H
Go to the documentation of this file.
1 IOdictionary propsDict
2 (
3  IOobject
4  (
5  "particleTrackProperties",
6  runTime.constant(),
7  mesh,
8  IOobject::MUST_READ
9  )
10 );
11 
12 word cloudName(propsDict.lookup("cloudName"));
13 
14 label sampleFrequency(readLabel(propsDict.lookup("sampleFrequency")));
15 
16 // outputMode: compositeFile, filePerTrack
17 //word outputmode(propsDict.lookup("outputMode"))
18 
19 label maxPositions(readLabel(propsDict.lookup("maxPositions")));
20 
21 // outputFormat: raw, vtk
22 //word outputFormat(propsDict.lookup("outputFormat"));