Changes between Version 10 and Version 11 of solvers


Ignore:
Timestamp:
10/29/20 11:35:16 (4 years ago)
Author:
tsantos
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • solvers

    v10 v11  
    77}}}
    88
    9 Here is an example where bcg is used only for the stress balance analysis. The direct solver (MUMPS) is used for the rest (mass transport analysis, etc). Also, the recovery solver (MUMPS) is not called if bcg fails in a Picard iteration (linear solver). The only criterion is the mechanical equilibrium, which controls the non-linear solver as a whole. This scheme may compromise the monotonicity of the non-linear solver, but it is faster than calling MUMPS every time bgc fails.
     9Here is an example where biconjugate gradient with block Jacobi preconditioner (bcg) is used only for the stress balance analysis. The direct solver (MUMPS) is used for the rest (mass transport analysis, etc). Also, the recovery solver (MUMPS) is not called if bcg fails in a Picard iteration (linear solver). The only criterion is the mechanical equilibrium, which controls the non-linear solver as a whole. This scheme may compromise the monotonicity of the non-linear solver, but it is faster than calling MUMPS every time bgc fails.
    1010
     11Note: SSA is very stable, so bcg should convert fast. For HO(3D), bcg may not converge even after 50 iterations. In this case, look at the stress balance convergence (md.verbose=verbose('convergence',true,'solution',true);) and check if it is necessary to relax a little bit the restol value. The scheme below have being used for SSA (~250,000 elements) and for HO (~1,000,000 elements).
    1112{{{
    1213#!m
     
    1920md.stressbalance.abstol=NaN; % no need
    2021}}}
    21 Note: SSA is very stable, so bcg should convert fast. For HO(3D), bcg may not converge even after 50 iterations.
    22 In this case, look at the stress balance convergence (md.verbose=verbose('convergence',true,'solution',true);)
    23 and check if it is necessary to relax a little bit the restol value.
    24 The scheme above have being used for SSA (~250,000 elements) and for HO (~1,000,000 elements).
     22
    2523
    2624{{{