ENH: blockMesh: avoid 'empty' for initial mesh. Fixes #2125.

This commit is contained in:
mattijs
2021-06-17 10:16:07 +01:00
parent ee4f7feb30
commit 1f84dcbac6

View File

@ -34,8 +34,15 @@ blocks
edges
();
patches
();
// Synthesise 'defaultFaces' as type patch instead of 'empty' to avoid
// warnings from decomposePar with hierarchical
boundary
(
defaultFaces
{
type patch;
faces ();
}
);
// ************************************************************************* //