Skip to content

Commit

Permalink
Update partitioned-heat-conduction to pySDC 5.5.0 (#566)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminRodenberg authored Sep 2, 2024
1 parent 88873b3 commit 0225e42
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions partitioned-heat-conduction/dirichlet-fenics/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ else
;;
sdc)
# install pySDC + its dependencies only if needed
pip install git+https://github.com/Parallel-in-Time/pySDC@5.4.3
pip install pySDC~=5.4
pip install git+https://github.com/Parallel-in-Time/pySDC@5.5.0
pip install pySDC~=5.5
echo "Running simulation with pySDC+FEniCS implementation"
python3 ../solver-fenics/heat_pySDC.py Dirichlet
;;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
from my_enums import ProblemType


from pySDC.core.Problem import ptype
from pySDC.core.problem import Problem
from pySDC.implementations.datatype_classes.fenics_mesh import fenics_mesh, rhs_fenics_mesh


class fenics_heat_2d(ptype):
class fenics_heat_2d(Problem):
dtype_u = fenics_mesh
dtype_f = rhs_fenics_mesh

Expand Down

0 comments on commit 0225e42

Please sign in to comment.