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/elasticPlasticSolidFoam/aitkenRelaxation.H

35 lines
783 B
C++
Raw Normal View History

// aitken acceleration
if(iCorr == 0)
{
aitkenInitialRes = gMax(mag(DU.internalField()));
}
aitkenDelta.storePrevIter();
// update delta
aitkenDelta = (DU - DU.prevIter()) / aitkenInitialRes;
// update relaxation factor
if(iCorr == 0)
{
aitkenTheta = 0.1;
}
else
{
vectorField b = aitkenDelta.internalField() - aitkenDelta.prevIter().internalField();
//scalar sumMagB = gSum(mag(b));
scalar sumMagB = gSum(magSqr(b));
if(sumMagB < SMALL)
{
//Warning << "Aitken under-relaxation: denominator less then SMALL"
// << endl;
sumMagB += SMALL;
}
aitkenTheta = -aitkenTheta*
gSum(aitkenDelta.prevIter().internalField() & b)/sumMagB;
}
// correction to the latest DU
DU += aitkenTheta*aitkenDelta*aitkenInitialRes;