Newton method for plastic dilation #5953
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds dilation-relevant terms to the Newton solver for both AMG and GMG methods. It has also modified the Drucker-Prager model to allow the user to specify a dilation angle.
I have carried out experiments on the strip-footing problem with the following parameter file:
strip_footing.prm.txt
strip_footing.cc.txt
It turns out that when using Picard method (and also the Defect Correction method) the relative residual can only be reduced to ~0.01, while the Newton solver can reduce the residual to ~0.0001 within 30 iterations. The different convergence behavior is reflected in the effective viscosity, as shown below.
However, the plastic dilation model is far from the best shape, because (1) the Newton solver only converges when "Newton residual scaling method" is turned on; (2) it cannot produce shear bands as sharp as elASPECT. Currently I don't know why.
There is another problem about the plastic dilation model: it works correctly only when the material is compressible. This can be explained by the derivation in the following pdf (Remark 1):
dilation.pdf
However, I tried to modify the effective viscosity by Eq. (26), but the result is incorrect. Again, I don't know why.
Anyway, I think this PR has made some progress. Please let me know if it is worth being merged @naliboff @bobmyhill @cedrict .