Skip to content
5 changes: 4 additions & 1 deletion partitioned-heat-conduction/solver-fenics/heat_pySDC.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,14 @@
u = 1 + x^2 + alpha*y^2 + \beta*t
f = beta - 2 - 2*alpha


This variant of this tutorial example uses the open-source library pySDC for time-stepping.
pySDC can be installed via `pip install pySDC`.
If you want to use the developer version, the source code repository can be cloned from "https://github.com/Parallel-in-Time/pySDC".
For more information on pySDC, see also "https://parallel-in-time.org/pySDC/"

For information on the partitioned heat conduction problem using pySDC methods see
* "Eppacher, Tobias. Parallel-in-Time Integration with preCICE. Bachelor's thesis at Technical University of Munich, 2024. URL: https://mediatum.ub.tum.de/1755012"

"""

from __future__ import print_function, division
Expand Down