mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
seulex: changed monotonicity check to correspond to original implementation
Resolves bug-report https://bugs.openfoam.org/view.php?id=2972
This commit is contained in:
@ -153,7 +153,7 @@ bool Foam::seulex::seul
|
||||
|
||||
LUBacksubstitute(a_, pivotIndices_, dy_);
|
||||
|
||||
const scalar denom = min(1, dy1 + small);
|
||||
const scalar denom = max(1, dy1);
|
||||
scalar dy2 = 0;
|
||||
for (label i=0; i<n_; i++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user