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
c26ef75d
Commit
c26ef75d
authored
Jul 23, 2018
by
mattijs
Browse files
ENH: snappyHexMesh: limit debug printing. See
#941
.
parent
423ed389
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mesh/snappyHexMesh/meshRefinement/meshRefinementBaffles.C
View file @
c26ef75d
...
...
@@ -2034,11 +2034,19 @@ void Foam::meshRefinement::findCellZoneTopo
if
(
debug
)
{
Pout
<<
"meshRefinement::findCellZoneTopo :"
<<
" nRegions:"
<<
regionToCellZone
.
size
()
<<
" of which visited (-1 = background, >= 0 : cellZone) :"
<<
endl
;
forAll
(
regionToCellZone
,
regionI
)
{
Pout
<<
"Region "
<<
regionI
<<
" becomes cellZone:"
<<
regionToCellZone
[
regionI
]
<<
endl
;
if
(
regionToCellZone
[
regionI
]
!=
-
2
)
{
Pout
<<
"Region "
<<
regionI
<<
" becomes cellZone:"
<<
regionToCellZone
[
regionI
]
<<
endl
;
}
}
}
...
...
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