old "positions" file form The change to barycentric-based tracking changed the contents of the cloud "positions" file to a new format comprising the barycentric co-ordinates and other cell position-based info. This broke backwards compatibility, providing no option to restart old cases (v1706 and earlier), and caused difficulties for dependent code, e.g. for post-processing utilities that could only infer the contents only after reading. The barycentric position info is now written to a file called "coordinates" with provision to restart old cases for which only the "positions" file is available. Related utilities, e.g. for parallel running and data conversion have been updated to be able to support both file types. To write the "positions" file by default, use set the following option in the InfoSwitches section of the controlDict: writeLagrangianPositions 1;
80 lines
2.1 KiB
C
80 lines
2.1 KiB
C
// check all time directories for the following:
|
|
|
|
// The fields for each cloud:
|
|
HashTable<HashTable<word>> cloudFields;
|
|
|
|
// Identify if lagrangian data exist at any time step.
|
|
if (timeDirs.size() && !noLagrangian)
|
|
{
|
|
const fileName& baseDir = mesh.time().path();
|
|
const fileName& cloudPrefix = regionPrefix/cloud::prefix;
|
|
|
|
Info<< "Searching for lagrangian ... " << flush;
|
|
|
|
forAll(timeDirs, timeI)
|
|
{
|
|
const word& timeName = timeDirs[timeI].name();
|
|
|
|
// DO NOT USE -->> runTime.setTime(timeDirs[timeI], timeI); <<--
|
|
// It incurs a large overhead when done so frequently.
|
|
|
|
fileNameList cloudDirs = readDir
|
|
(
|
|
baseDir/timeName/cloudPrefix,
|
|
fileName::DIRECTORY
|
|
);
|
|
|
|
forAll(cloudDirs, cloudI)
|
|
{
|
|
const word& cloudName = cloudDirs[cloudI];
|
|
|
|
IOobjectList cloudObjs
|
|
(
|
|
mesh,
|
|
timeName,
|
|
cloudPrefix/cloudName
|
|
);
|
|
|
|
// Clouds always have "positions" (v1706 and lower) or "coordinates"
|
|
if (cloudObjs.found("positions") || cloudObjs.found("coordinates"))
|
|
{
|
|
// Save the cloud fields on a per cloud basis
|
|
auto fieldsPerCloud = cloudFields(cloudName);
|
|
|
|
forAllConstIters(cloudObjs, fieldIter)
|
|
{
|
|
const IOobject* obj = fieldIter();
|
|
|
|
// Field name/type
|
|
fieldsPerCloud.insert(obj->name(), obj->headerClassName());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Prune out geometry again since it gets treated specially
|
|
forAllIters(cloudFields, cloudIter)
|
|
{
|
|
cloudIter().erase("coordinates");
|
|
cloudIter().erase("positions");
|
|
}
|
|
|
|
if (cloudFields.empty())
|
|
{
|
|
Info<< "none detected." << endl;
|
|
}
|
|
}
|
|
|
|
|
|
// Sorted list of cloud names
|
|
const wordList cloudNames(cloudFields.sortedToc());
|
|
|
|
if (cloudNames.size())
|
|
{
|
|
// Complete the echo information - as flatOutput
|
|
cloudNames.writeList(Info) << endl;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|