Skip to content

Commit 0225e42

Browse files
Update partitioned-heat-conduction to pySDC 5.5.0 (#566)
1 parent 88873b3 commit 0225e42

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

partitioned-heat-conduction/dirichlet-fenics/run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ else
2828
;;
2929
sdc)
3030
# install pySDC + its dependencies only if needed
31-
pip install git+https://github.com/Parallel-in-Time/pySDC@5.4.3
32-
pip install pySDC~=5.4
31+
pip install git+https://github.com/Parallel-in-Time/pySDC@5.5.0
32+
pip install pySDC~=5.5
3333
echo "Running simulation with pySDC+FEniCS implementation"
3434
python3 ../solver-fenics/heat_pySDC.py Dirichlet
3535
;;

partitioned-heat-conduction/solver-fenics/heat_pySDC_problem_class.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
from my_enums import ProblemType
1111

1212

13-
from pySDC.core.Problem import ptype
13+
from pySDC.core.problem import Problem
1414
from pySDC.implementations.datatype_classes.fenics_mesh import fenics_mesh, rhs_fenics_mesh
1515

1616

17-
class fenics_heat_2d(ptype):
17+
class fenics_heat_2d(Problem):
1818
dtype_u = fenics_mesh
1919
dtype_f = rhs_fenics_mesh
2020

0 commit comments

Comments
 (0)