24 lines
426 B
C
24 lines
426 B
C
{
|
|
scalarField magDU = mag(DU.internalField());
|
|
|
|
forAll(magDU, cellI)
|
|
{
|
|
if (magDU[cellI] < SMALL)
|
|
{
|
|
magDU[cellI] = SMALL;
|
|
}
|
|
}
|
|
|
|
relativeResidual =
|
|
gMax
|
|
(
|
|
mag
|
|
(
|
|
DU.internalField()
|
|
- DU.prevIter().internalField()
|
|
)
|
|
/magDU
|
|
);
|
|
|
|
// resid = (DU - DU.prevIter())/mag(DU);
|
|
}
|