BUG: isoAdvection using 'vof2IsoTol' instead of 'isoFaceTol' (closes #740)
This commit is contained in:
parent
4d4c5910ed
commit
94afd9e9b2
@ -80,7 +80,7 @@ Foam::isoAdvection::isoAdvection
|
||||
|
||||
// Tolerances and solution controls
|
||||
nAlphaBounds_(dict_.lookupOrDefault<label>("nAlphaBounds", 3)),
|
||||
vof2IsoTol_(dict_.lookupOrDefault<scalar>("vof2IsoTol", 1e-8)),
|
||||
isoFaceTol_(dict_.lookupOrDefault<scalar>("isoFaceTol", 1e-8)),
|
||||
surfCellTol_(dict_.lookupOrDefault<scalar>("surfCellTol", 1e-8)),
|
||||
gradAlphaBasedNormal_
|
||||
(
|
||||
@ -249,7 +249,7 @@ void Foam::isoAdvection::timeIntegratedFlux()
|
||||
(
|
||||
celli,
|
||||
alpha1In_[celli],
|
||||
vof2IsoTol_,
|
||||
isoFaceTol_,
|
||||
maxIter
|
||||
);
|
||||
|
||||
|
@ -119,7 +119,7 @@ class isoAdvection
|
||||
label nAlphaBounds_;
|
||||
|
||||
//- Tolerance for search of isoFace giving specified VOF value
|
||||
scalar vof2IsoTol_;
|
||||
scalar isoFaceTol_;
|
||||
|
||||
//- Tolerance for marking of surface cells:
|
||||
// Those with surfCellTol_ < alpha1 < 1 - surfCellTol_
|
||||
|
Loading…
Reference in New Issue
Block a user