Skip to content
GitLab
Menu
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
f941955f
Commit
f941955f
authored
Dec 11, 2012
by
laurence
Browse files
STYLE: Code cleanup
parent
e81813a9
Changes
2
Hide whitespace changes
Inline
Side-by-side
applications/utilities/mesh/manipulation/checkMesh/checkTopology.C
View file @
f941955f
...
...
@@ -235,7 +235,7 @@ Foam::label Foam::checkTopology
if
(
nOneCells
>
0
)
{
Info
<<
" <<Writing "
<<
nOneCells
<<
" cells with
with
zero or one non-boundary face to set "
<<
" cells with zero or one non-boundary face to set "
<<
oneCells
.
name
()
<<
endl
;
oneCells
.
instance
()
=
mesh
.
pointsInstance
();
...
...
@@ -247,7 +247,7 @@ Foam::label Foam::checkTopology
if
(
nTwoCells
>
0
)
{
Info
<<
" <<Writing "
<<
nTwoCells
<<
" cells with
with
two non-boundary faces to set "
<<
" cells with two non-boundary faces to set "
<<
twoCells
.
name
()
<<
endl
;
twoCells
.
instance
()
=
mesh
.
pointsInstance
();
...
...
applications/utilities/mesh/manipulation/checkMesh/printMeshStats.C
View file @
f941955f
...
...
@@ -155,11 +155,11 @@ void Foam::printMeshStats(const polyMesh& mesh, const bool allTopology)
Info
<<
" Breakdown of polyhedra by number of faces:"
<<
nl
<<
" faces"
<<
" number of cells"
<<
endl
;
labelList
sortedKeys
=
polyhedralFaces
.
sortedToc
();
const
labelList
sortedKeys
=
polyhedralFaces
.
sortedToc
();
forAll
(
sortedKeys
,
keyI
)
{
label
nFaces
=
sortedKeys
[
keyI
];
const
label
nFaces
=
sortedKeys
[
keyI
];
Info
<<
setf
(
std
::
ios
::
right
)
<<
setw
(
13
)
<<
nFaces
<<
" "
<<
polyhedralFaces
[
nFaces
]
<<
nl
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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