Skip to content

Commit 63e6407

Browse files
authored
split multigrid docs out into their own section (#239)
1 parent 641dad5 commit 63e6407

File tree

4 files changed

+30
-30
lines changed

4 files changed

+30
-30
lines changed

docs/source/index.rst

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,24 @@ new ideas.
4242

4343
.. toctree::
4444
:maxdepth: 1
45-
:caption: Solvers
45+
:caption: Multigrid
46+
:hidden:
47+
48+
multigrid
49+
multigrid_basics
50+
multigrid-constant-coefficients
51+
multigrid-variable-coeff
52+
multigrid-general-linear
53+
54+
.. toctree::
55+
:maxdepth: 1
56+
:caption: Hydro Solvers
4657
:hidden:
4758

4859
advection_basics
4960
burgers_basics
5061
compressible_basics
5162
compressible_compare
52-
multigrid
5363
diffusion_basics
5464
incompressible_basics
5565
incompressible_viscous_basics

docs/source/multigrid.rst

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,3 @@ to square grids with zoning a power of 2.
3838
since there is no time-dependence in pure elliptic problems. Instead,
3939
there are a few scripts in the multigrid/ subdirectory that
4040
demonstrate its use.
41-
42-
43-
.. toctree::
44-
:hidden:
45-
46-
multigrid_basics
47-
multigrid-constant-coefficients
48-
multigrid-variable-coeff
49-
multigrid-general-linear
50-
multigrid_exercises

docs/source/multigrid_basics.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,21 @@ Left is the original u velocity, middle is the modified field after
9595
adding the gradient of the scalar, and right is the recovered field.
9696

9797

98+
Exercises
99+
---------
100+
101+
Explorations
102+
^^^^^^^^^^^^
103+
104+
* Try doing just smoothing, no multigrid. Show that it still converges
105+
second order if you use enough iterations, but that the amount of
106+
time needed to get a solution is much greater.
107+
108+
Extensions
109+
^^^^^^^^^^
110+
111+
* Add a different bottom solver to the multigrid algorithm
112+
113+
* Make the multigrid solver work for non-square domains
114+
115+
* Implement the full-multigrid algorithm instead of just V-cycles

docs/source/multigrid_exercises.rst

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)