Changes between Version 13 and Version 14 of solvers


Ignore:
Timestamp:
10/29/20 13:28:43 (4 years ago)
Author:
Mathieu Morlighem
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • solvers

    v13 v14  
    1 This list of solvers that have worked fairly consistently, try them out locally and if the recovery solver is not activated, you should be safe for longer transient runs:
     1This list of solvers that have worked fairly consistently, '''try them out locally''' and if the recovery solver is not activated, you should be safe for longer transient runs.
     2
     3== biconjugate gradient with block Jacobi preconditioner (Thiago's favorite) ==
    24
    35{{{
    46#!m
    5 % biconjugate gradient with block Jacobi preconditioner [Thiago's favorite]
    67md.toolkits.DefaultAnalysis=bcgslbjacobioptions();
    78}}}
     
    2122}}}
    2223
     24==  gnres with block jacobi preconditioner (Martin's favorite) ==
    2325
    2426{{{
    2527#!m
    26 % gnres with block jacobi preconditioner [Martin's favorite]
    2728md.toolkits.DefaultAnalysis=gmresbjacobioptions();
    2829md.toolkits.DefaultAnalysis.ksp_max_it=1;
    2930}}}
     31== ASM ==
     32Primarily used for mass conservation but may work for other things:
    3033{{{
    3134#!m
    32 % ASM, used for mass conservation but may work for other things
    3335md.toolkits.DefaultAnalysis=asmoptions();
    3436}}}
     37
     38== Recovery mode ==
    3539{{{
    3640#!m