1The global algorithm uses two criteria to check if a satisfying
2equilibrium has been found: one on strains, the other on stresses.
3
4This criterium on stresses checks that the residual of the Newton
5Algorithm is low enought. By default, this value is equal to 1.e-3,
6which is a convenient value if stresses are expressed in Pa.
7
8The `@StressEpsilon` keyword let the user specifiy the criterium value
9used for the criterium on stressess.
10
11It is followed by the criterium value.
12
13## Example
14
15~~~~ {.cpp}
16@StressEpsilon 1.e2;
17~~~~~~~~
18