Changes between Version 13 and Version 14 of solvers
- Timestamp:
- 10/29/20 13:28:43 (4 years ago)
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: 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. 2 3 == biconjugate gradient with block Jacobi preconditioner (Thiago's favorite) == 2 4 3 5 {{{ 4 6 #!m 5 % biconjugate gradient with block Jacobi preconditioner [Thiago's favorite]6 7 md.toolkits.DefaultAnalysis=bcgslbjacobioptions(); 7 8 }}} … … 21 22 }}} 22 23 24 == gnres with block jacobi preconditioner (Martin's favorite) == 23 25 24 26 {{{ 25 27 #!m 26 % gnres with block jacobi preconditioner [Martin's favorite]27 28 md.toolkits.DefaultAnalysis=gmresbjacobioptions(); 28 29 md.toolkits.DefaultAnalysis.ksp_max_it=1; 29 30 }}} 31 == ASM == 32 Primarily used for mass conservation but may work for other things: 30 33 {{{ 31 34 #!m 32 % ASM, used for mass conservation but may work for other things33 35 md.toolkits.DefaultAnalysis=asmoptions(); 34 36 }}} 37 38 == Recovery mode == 35 39 {{{ 36 40 #!m