- Similar to ensight converters (issue #240), improve speed for detection of lagrangian clouds. - provide a -noLagrangian option for symmetry
72 lines
1.7 KiB
C
72 lines
1.7 KiB
C
// check all time directories for the following:
|
|
|
|
// Any cloud names:
|
|
HashSet<fileName> allCloudDirs;
|
|
|
|
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 require "positions"
|
|
if (cloudObjs.found("positions"))
|
|
{
|
|
if (allCloudDirs.insert(cloudName))
|
|
{
|
|
Info<< "At time: " << timeName
|
|
<< " detected cloud directory : " << cloudName
|
|
<< endl;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (allCloudDirs.empty())
|
|
{
|
|
Info<< "none detected." << endl;
|
|
}
|
|
}
|
|
|
|
// sorted list of cloud names
|
|
const fileNameList cloudNames(allCloudDirs.sortedToc());
|
|
|
|
if (cloudNames.size())
|
|
{
|
|
// complete the echo information
|
|
Info<< "(";
|
|
forAll(cloudNames, cloudNo)
|
|
{
|
|
Info<< ' ' << cloudNames[cloudNo];
|
|
}
|
|
Info<< " ) " << endl;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|