Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
94afd9e9
Commit
94afd9e9
authored
Feb 23, 2018
by
Mark Olesen
Browse files
BUG: isoAdvection using 'vof2IsoTol' instead of 'isoFaceTol' (closes
#740
)
parent
4d4c5910
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/finiteVolume/fvMatrices/solvers/isoAdvection/isoAdvection/isoAdvection.C
View file @
94afd9e9
...
...
@@ -80,7 +80,7 @@ Foam::isoAdvection::isoAdvection
// Tolerances and solution controls
nAlphaBounds_
(
dict_
.
lookupOrDefault
<
label
>
(
"nAlphaBounds"
,
3
)),
vof2Iso
Tol_
(
dict_
.
lookupOrDefault
<
scalar
>
(
"
vof2Iso
Tol"
,
1e-8
)),
isoFace
Tol_
(
dict_
.
lookupOrDefault
<
scalar
>
(
"
isoFace
Tol"
,
1e-8
)),
surfCellTol_
(
dict_
.
lookupOrDefault
<
scalar
>
(
"surfCellTol"
,
1e-8
)),
gradAlphaBasedNormal_
(
...
...
@@ -249,7 +249,7 @@ void Foam::isoAdvection::timeIntegratedFlux()
(
celli
,
alpha1In_
[
celli
],
vof2Iso
Tol_
,
isoFace
Tol_
,
maxIter
);
...
...
src/finiteVolume/fvMatrices/solvers/isoAdvection/isoAdvection/isoAdvection.H
View file @
94afd9e9
...
...
@@ -119,7 +119,7 @@ class isoAdvection
label
nAlphaBounds_
;
//- Tolerance for search of isoFace giving specified VOF value
scalar
vof2Iso
Tol_
;
scalar
isoFace
Tol_
;
//- Tolerance for marking of surface cells:
// Those with surfCellTol_ < alpha1 < 1 - surfCellTol_
...
...
Write
Preview
Markdown
is supported
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