mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
ENH: polyPatch: adding constraint patches to group
This commit is contained in:
@ -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);
|
||||
|
||||
@ -213,7 +213,8 @@ int main(int argc, char *argv[])
|
||||
poly2DMesh.patchSizes()[patchI],
|
||||
poly2DMesh.patchStarts()[patchI],
|
||||
patchI,
|
||||
mesh().boundaryMesh()
|
||||
mesh().boundaryMesh(),
|
||||
polyPatch::typeName
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user