Skip to content

Commit 8bef300

Browse files
committed
updated doc
1 parent 7b37653 commit 8bef300

File tree

6 files changed

+35
-1
lines changed

6 files changed

+35
-1
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959

6060
# General information about the project.
6161
project = 'pySDC'
62-
copyright = '2016, Robert Speck'
62+
copyright = '2017, Robert Speck'
6363
author = 'Robert Speck'
6464

6565
# The version info for the project you're documenting, acts as replacement for

docs/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ Projects
7878
projects/parallelSDC.rst
7979
projects/node_failure.rst
8080
projects/fwsw.rst
81+
projects/asymp_conv.rst
8182
projects/RDC.rst
8283

8384
Tests
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.. include:: /../../projects/AsympConv/README.rst
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Results:
2+
3+
.. image:: ../../../data/conv_test_niter_NS3.png
4+
:width: 19%
5+
6+
.. image:: ../../../data/conv_test_niter_NS2.png
7+
:width: 19%
8+
9+
.. image:: ../../../data/conv_test_niter_Linf_diffusion.png
10+
:width: 19%
11+
12+
.. image:: ../../../data/conv_test_niter_Linf_advection.png
13+
:width: 19%
14+

projects/AsympConv/README.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Asymptotic convergence of PFASST
2+
================================
3+
4+
This project investigates the impact of the convergence results described in the paper "Asymptotic convergence of PFASST for linear problems".
5+
We use 1D heat equation and advection equation to show how PFASST converges in the stiff as well as in the non-stiff limit.
6+
Note that due to the long runtime, not all results are not generated via Travis.
7+
8+
Organisation of the project
9+
---------------------------
10+
11+
- ``conv_test_to0.py`` and ``conv_test_toinf.py``: plots spectral radius of the smoother's iteration matrix for different eigenvalues. See Figures 1 and 2 in the paper.
12+
- ``smoother_specrad_heatmap.py``: generates heatmap of the spectral radius of the smoother's iteration matrix for different eigenvalues in the test equation. See Figure 3.
13+
- ``PFASST_conv_tests.py`` and ``PFASST_conv_Linf.py``: runs PFASST for advection and diffusion checking teh iteration counts until convergence. See Figures 4 and 5.
14+
15+
.. include:: doc_asympconv.rst

pySDC/helpers/visualization_tools.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
import matplotlib
2+
matplotlib.use('Agg')
3+
14
from pySDC.helpers.stats_helper import filter_stats
25

36
import numpy as np

0 commit comments

Comments
 (0)