Removed bPrime update on reverseSweep in symGaussSeidel preconditioner

This commit is contained in:
Vuko Vukcevic 2015-05-20 12:26:21 +02:00 committed by Hrvoje Jasak
parent 5c260e9115
commit 239cb5d376

View file

@ -203,11 +203,7 @@ void Foam::symGaussSeidelPrecon::precondition
// Finish current x
curX /= diagPtr[rowI];
// Distribute the neighbour side using current x
for (register label curCoeff = fStart; curCoeff < fEnd; curCoeff++)
{
bPrimePtr[uPtr[curCoeff]] -= lowerPtr[curCoeff]*curX;
}
// No need to update bPrime on reverse sweep. VV, 20/May/2015.
}
}
}
@ -325,12 +321,7 @@ void Foam::symGaussSeidelPrecon::preconditionT
// Finish current x
curX /= diagPtr[rowI];
// Distribute the neighbour side using current x
for (register label curCoeff = fStart; curCoeff < fEnd; curCoeff++)
{
// Transpose multiplication. HJ, 10/Jul/2007
bPrimePtr[uPtr[curCoeff]] -= upperPtr[curCoeff]*curX;
}
// No need to update bPrime on reverse sweep. VV, 20/May/2015.
}
}
}