Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
10ae335e
Commit
10ae335e
authored
Sep 10, 2009
by
mattijs
Browse files
added warning message - coupled bcs not handled
parent
1a9204c1
Changes
1
Hide whitespace changes
Inline
Side-by-side
applications/utilities/mesh/manipulation/mirrorMesh/mirrorFvMesh.C
View file @
10ae335e
...
...
@@ -167,6 +167,16 @@ Foam::mirrorFvMesh::mirrorFvMesh(const IOobject& io)
forAll
(
oldPatches
,
patchI
)
{
const
polyPatch
&
curPatch
=
oldPatches
[
patchI
];
if
(
curPatch
.
coupled
())
{
WarningIn
(
"mirrorFvMesh::mirrorFvMesh(const IOobject&)"
)
<<
"Found coupled patch "
<<
curPatch
.
name
()
<<
endl
<<
" Mirroring faces on coupled patches destroys"
<<
" the ordering. This might be fixed by running a dummy"
<<
" createPatch afterwards."
<<
endl
;
}
boolList
&
curInsBouFace
=
insertedBouFace
[
patchI
];
curInsBouFace
.
setSize
(
curPatch
.
size
());
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment