Disabled writing zero-sized faceZones since upset tecio library

This commit is contained in:
mattijs
2010-01-13 19:10:54 +00:00
parent 0496e18123
commit 21048d9600

View File

@ -1077,6 +1077,8 @@ int main(int argc, char *argv[])
{
const faceZone& pp = zones[zoneI];
if (pp.size() > 0)
{
const indirectPrimitivePatch ipp
(
IndirectList<face>(mesh.faces(), pp),
@ -1155,6 +1157,13 @@ int main(int argc, char *argv[])
writer.writeConnectivity(ipp);
}
else
{
Info<< " Skipping zero sized faceZone " << zoneI
<< "\t" << pp.name()
<< nl << endl;
}
}
}