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
80b5d3a1
Commit
80b5d3a1
authored
Feb 12, 2020
by
mattijs
Browse files
ENH: blockMesh: protect face projection from misses. Fixes
#1591
.
parent
ec3de712
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mesh/blockMesh/blockFaces/projectFace/projectFace.C
View file @
80b5d3a1
...
...
@@ -247,7 +247,14 @@ void Foam::blockFaces::projectFace::project
}
if
(
iter
>
0
&&
(
iResidual
+
jResidual
)
/
initialResidual
<
relTol
)
if
(
iter
>
0
&&
(
initialResidual
<
ROOTVSMALL
||
((
iResidual
+
jResidual
)
/
initialResidual
<
relTol
)
)
)
{
break
;
}
...
...
Kutalmış Berçin
@kuti
mentioned in issue
#1591 (closed)
·
Jul 07, 2021
mentioned in issue
#1591 (closed)
mentioned in issue #1591
Toggle commit list
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