File: nonlinearsolvertable.html

package info (click to toggle)
petsc 3.7.5%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 163,864 kB
  • ctags: 618,438
  • sloc: ansic: 515,133; python: 29,793; makefile: 20,458; fortran: 18,998; cpp: 6,515; f90: 3,914; sh: 1,012; xml: 621; objc: 445; csh: 240; java: 13
file content (173 lines) | stat: -rw-r--r-- 5,189 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173

 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html>
  <head> <link rel="canonical" href="http://www.mcs.anl.gov/petsc/petsc-current/docs/nonlinearsolvertable.html" />
    <meta http-equiv="content-type" content="text/html;charset=utf-8">
    <title>Summary of Nonlinear Solvers Available from PETSc</title>
  </head>
  <body bgcolor="#ffffff">
   <div id="version" align=right><b>petsc-3.7.5 2017-01-01</b></div>
   <div id="bugreport" align=right><a href="mailto:petsc-maint@mcs.anl.gov?subject=Typo or Error in Documentation &body=Please describe the typo or error in the documentation: petsc-3.7.5 v3.7.5 docs/nonlinearsolvertable.html "><small>Report Typos and Errors</small></a></div>

    <h1>Summary of Nonlinear Solvers Available from PETSc</h1>

    

    <!--This controls the style for the 6th and 7th column-->
    <style type="text/css">
      tr > td:nth-child(6), tr > td:nth-child(7) {
        text-align: center;
      }
    </style>

    <div align="center" id="main" >

      <h2>Summary of Nonlinear Solvers Available from PETSc</h2>
<h3>See the paper <a href="http://www.mcs.anl.gov/papers/P2010-0112.pdf">Composing Scalable Nonlinear Algebraic Solvers</a> or the PETSc users manual for details on the algorithms</h3>
      <h3>Requests and contributions welcome</h3>

      <table border="1" summary="Summary of Nonlinear Solvers Available from PETSc">

        <thead>
          <tr>
            <th>Algorithm</th>
            <th><a href="manualpages/SNES/SNESType.html">Name of solver</a></th>
          </tr>
            <th></th>
        </thead>

        <!-- The tfoot *must* be before tbody!!!! -->
        <tfoot>
          <tr>
            <td colspan="7">

              <p>
                <a name="nolinesearch">*</a> Does not support a line search</a>
              </p>

            </td>
          </tr>
        </tfoot>

        <tbody>
          <tr>
            <td>Newton's method</td>
            <td>
              <a href="manualpages/SNES/SNESNEWTONLS.html">newtonls</a>
            </td>
            <th>Use -snes_mf for matrix-free linear solvers</th>
          </tr>

          <tr>
            <td>Newton's method with trust region<a href="#nolinesearch">*</a></td>
            <td>
              <a href="manualpages/SNES/SNESNEWTONTR.html">newtontr</a>
            </td>
            <th></th>
          </tr>

          <tr>
            <td>Single linearization<a href="#nolinesearch">*</a></td>
            <td>
              <a href="manualpages/SNES/SNESKSPONLY.html">ksponly</a>
            </td>
            <th>Essentially one step of Newtwon without a line search</th>
          </tr>

          <tr>
            <td>Quasi-Newton method (BFGS)</td>
            <td>
              <a href="manualpages/SNES/SNESQN.html">qn</a>
            </td>
            <th></th>
          </tr>

          <tr>
            <td>Nonlinear CG</td>
            <td>
              <a href="manualpages/SNES/SNESNCG.html">ncg</a>
            </td>
            <th>Requires nearly symmetric Jacobian for good convergence</th>
          </tr>

          <tr>
            <td>Nonlinear GMRES</td>
            <td>
              <a href="manualpages/SNES/SNESNGMRES.html">ngmres</a>
            </td>
            <th></th>
          </tr>

          <tr>
            <td>Anderson mixing</td>
            <td>
              <a href="manualpages/SNES/SNESANDERSON.html">anderson</a>
            </td>
            <th></th>
          </tr>

          <tr>
            <td>Nonlinear Richardson</td>
            <td>
              <a href="manualpages/SNES/SNESNRICHARDSON.html">nrichardson</a>
            </td>
            <th></th>
          </tr>

          <tr>
            <td>Nonlinear Gauss-Siedel<a href="#nolinesearch">*</td>
            <td>
              <a href="manualpages/SNES/SNESNGS.html">ngs</a>
            </td>
            <th></th>
          </tr>

          <tr>
            <td>Full Approximation Scheme (nonlinear multigrid)</td>
            <td>
              <a href="manualpages/SNES/SNESFAS.html">fas</a>
            </td>
            <th></th>
          </tr>

          <tr>
            <td>Nonlinear additive Schwarz method<a href="#nolinesearch">*</td>
            <td>
              <a href="manualpages/SNES/SNESNASM.html">nasm</a>
            </td>
            <th></th>
          </tr>

          <tr>
            <td>Nonlinear additive Schwarz preconditioned inexact Newton (ASPIN) methods</td>
            <td>
              <a href="manualpages/SNES/SNESASPIN.html">aspin</a>
            </td>
            <th></th>
          </tr>

          <tr>
            <td>Composite; combine several nonlinear solvers</td>
            <td>
              <a href="manualpages/SNES/SNESCOMPOSITE.html">composite</a>
            </td>
            <th></th>
          </tr>

          <tr>
            <td>Preconditioned nonlinear solver/td>
            <td>
              <a href="manualpages/SNES/SNESGetNPC.html">SNESGetNPC()</a>
            </td>
            <th>Can be combined to accelerate many of the solvers</th>
          </tr>

        </tbody>
      </table>


    </div>

    
  </body>
</html>