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

Update partitioned-heat-conduction to pySDC 5.5.0 #566

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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