File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
partitioned-heat-conduction Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 28
28
;;
29
29
sdc)
30
30
# 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
33
33
echo " Running simulation with pySDC+FEniCS implementation"
34
34
python3 ../solver-fenics/heat_pySDC.py Dirichlet
35
35
;;
Original file line number Diff line number Diff line change 10
10
from my_enums import ProblemType
11
11
12
12
13
- from pySDC .core .Problem import ptype
13
+ from pySDC .core .problem import Problem
14
14
from pySDC .implementations .datatype_classes .fenics_mesh import fenics_mesh , rhs_fenics_mesh
15
15
16
16
17
- class fenics_heat_2d (ptype ):
17
+ class fenics_heat_2d (Problem ):
18
18
dtype_u = fenics_mesh
19
19
dtype_f = rhs_fenics_mesh
20
20
You can’t perform that action at this time.
0 commit comments