ENH: polyPatch: adding constraint patches to group

This commit is contained in:
mattijs
2012-09-05 16:40:59 +01:00
parent 8913633b0b
commit 3c183eba6c
42 changed files with 259 additions and 148 deletions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -351,7 +351,8 @@ Foam::extrudedMesh::extrudedMesh
sz,
facei,
0,
boundaryMesh()
boundaryMesh(),
wallPolyPatch::typeName
);
facei += sz;
@ -362,7 +363,8 @@ Foam::extrudedMesh::extrudedMesh
extrudePatch.size(),
facei,
1,
boundaryMesh()
boundaryMesh(),
polyPatch::typeName
);
facei += extrudePatch.size();
@ -373,7 +375,8 @@ Foam::extrudedMesh::extrudedMesh
extrudePatch.size(),
facei,
2,
boundaryMesh()
boundaryMesh(),
polyPatch::typeName
);
addPatches(patches);

View File

@ -213,7 +213,8 @@ int main(int argc, char *argv[])
poly2DMesh.patchSizes()[patchI],
poly2DMesh.patchStarts()[patchI],
patchI,
mesh().boundaryMesh()
mesh().boundaryMesh(),
polyPatch::typeName
);
}