Skip to content
Snippets Groups Projects
Commit b84618a3 authored by Henry Weller's avatar Henry Weller
Browse files

blockMesh: Added check for curved-edge/block-edge consistency

parent cfe909d7
Branches
Tags
No related merge requests found
......@@ -29,13 +29,32 @@ License
void Foam::blockMesh::check(const polyMesh& bm) const
{
if (verboseOutput)
{
Info<< nl << "Check topology" << endl;
}
Info<< nl << "Check topology" << endl;
bool ok = true;
// Check curved-edge/block-edge correspondence
const edgeList& edges = bm.edges();
forAll(edges_, cei)
{
bool found = false;
forAll(edges, ci)
{
found = edges_[cei].compare(edges[ci][0], edges[ci][1]) != 0;
if (found) break;
}
if (!found)
{
Info<< " Curved edge " << edges_[cei]
<< " does not correspond to a block edge."
<< endl;
ok = false;
}
}
const pointField& points = bm.points();
const faceList& faces = bm.faces();
const cellList& cells = bm.cells();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment