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
e7d81dfe
Commit
e7d81dfe
authored
Jun 14, 2018
by
Mark OLESEN
Browse files
COMP: stop some icc warnings
- change "\%" -> "%" in plain string
parent
7a7ecf60
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/finiteVolume/fields/fvPatchFields/derived/pressurePIDControlInletVelocity/pressurePIDControlInletVelocityFvPatchVectorField.C
View file @
e7d81dfe
...
...
@@ -350,7 +350,7 @@ void Foam::pressurePIDControlInletVelocityFvPatchVectorField::updateCoeffs()
<<
dimensionedScalar
(
"U"
,
dimVelocity
,
newQ
/
patchA
)
<<
endl
<<
" "
<<
dimensionedScalar
(
"deltaP"
,
pDimensions
,
deltaP
)
<<
" ("
<<
mag
(
error
)
*
100
<<
"
\
% "
<<
" ("
<<
mag
(
error
)
*
100
<<
"% "
<<
(
error
<
0
?
"below"
:
"above"
)
<<
" the target)"
<<
endl
;
}
...
...
src/lagrangian/basic/particle/particle.C
View file @
e7d81dfe
...
...
@@ -714,7 +714,7 @@ Foam::scalar Foam::particle::trackToStationaryTri
if
(
debug
)
{
Info
<<
"Hit on tet face "
<<
i
<<
" at local coordinate "
<<
y0
+
mu
*
Tx1
<<
", "
<<
mu
*
detA
*
100
<<
"
\
% of the "
<<
y0
+
mu
*
Tx1
<<
", "
<<
mu
*
detA
*
100
<<
"% of the "
<<
"way along the track"
<<
endl
;
}
...
...
@@ -758,7 +758,7 @@ Foam::scalar Foam::particle::trackToStationaryTri
Info
<<
"End local coordinates = "
<<
yH
<<
endl
<<
"End global coordinates = "
<<
position
()
<<
endl
<<
"Tracking displacement = "
<<
position
()
-
x0
<<
endl
<<
muH
*
detA
*
100
<<
"
\
% of the step from "
<<
stepFraction_
<<
" to "
<<
muH
*
detA
*
100
<<
"% of the step from "
<<
stepFraction_
<<
" to "
<<
stepFraction_
+
fraction
<<
" completed"
<<
endl
<<
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