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
05b6a09b
Commit
05b6a09b
authored
Apr 11, 2013
by
laurence
Browse files
STYLE: Print min before average
parent
10c2e2fa
Changes
1
Show whitespace changes
Inline
Side-by-side
src/OpenFOAM/meshes/primitiveMesh/primitiveMeshCheck/primitiveMeshCheck.C
View file @
05b6a09b
...
...
@@ -843,8 +843,9 @@ bool Foam::primitiveMesh::checkFaceFlatness
{
if
(
nSummed
>
0
)
{
Info
<<
" Face flatness (1 = flat, 0 = butterfly) : average = "
<<
sumFlatness
/
nSummed
<<
" min = "
<<
minFlatness
<<
endl
;
Info
<<
" Face flatness (1 = flat, 0 = butterfly) : min = "
<<
minFlatness
<<
" average = "
<<
sumFlatness
/
nSummed
<<
endl
;
}
}
...
...
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