This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/applications/solvers/solidMechanics/elasticNonLinTLSolidFoam/calculateRelativeResidual.H
2012-09-11 16:42:55 +01:00

22 lines
402 B
C++

{
scalarField magU = mag(U.internalField() - U.oldTime().internalField());
forAll(magU, cellI)
{
if (magU[cellI] < SMALL)
{
magU[cellI] = SMALL;
}
}
relativeResidual =
gMax
(
mag
(
U.internalField()
- U.prevIter().internalField()
)
/magU
);
}