mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: surfaceFeatureExtract: skip non-dictionary entries.
This commit is contained in:
@ -952,8 +952,20 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
forAllConstIter(dictionary, dict, iter)
|
forAllConstIter(dictionary, dict, iter)
|
||||||
{
|
{
|
||||||
|
if (!iter().isDict())
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
const dictionary& surfaceDict = iter().dict();
|
const dictionary& surfaceDict = iter().dict();
|
||||||
|
|
||||||
|
if (surfaceDict.found("extractionMethod"))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const word extractionMethod = surfaceDict.lookup("extractionMethod");
|
||||||
|
|
||||||
const fileName surfFileName = iter().keyword();
|
const fileName surfFileName = iter().keyword();
|
||||||
const fileName sFeatFileName = surfFileName.lessExt().name();
|
const fileName sFeatFileName = surfFileName.lessExt().name();
|
||||||
|
|
||||||
@ -971,8 +983,6 @@ int main(int argc, char *argv[])
|
|||||||
const Switch closeness =
|
const Switch closeness =
|
||||||
surfaceDict.lookupOrDefault<Switch>("closeness", "off");
|
surfaceDict.lookupOrDefault<Switch>("closeness", "off");
|
||||||
|
|
||||||
const word extractionMethod = surfaceDict.lookup("extractionMethod");
|
|
||||||
|
|
||||||
|
|
||||||
Info<< nl << "Feature line extraction is only valid on closed manifold "
|
Info<< nl << "Feature line extraction is only valid on closed manifold "
|
||||||
<< "surfaces." << endl;
|
<< "surfaces." << endl;
|
||||||
|
|||||||
Reference in New Issue
Block a user