Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pointers to higher-order time-stepping schemes #560

Closed
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