|
5 | 5 |
|
6 | 6 | from pySDC.core.Errors import ParameterError, ProblemError |
7 | 7 | from pySDC.core.Problem import ptype |
8 | | -from pySDC.implementations.datatype_classes.mesh import mesh, parallel_imex_mesh, parallel_comp2_mesh |
| 8 | +from pySDC.implementations.datatype_classes.mesh import mesh, imex_mesh, comp2_mesh |
9 | 9 |
|
10 | 10 |
|
11 | 11 | # http://www.personal.psu.edu/qud2/Res/Pre/dz09sisc.pdf |
@@ -187,7 +187,7 @@ class allencahn_semiimplicit(allencahn_fullyimplicit): |
187 | 187 | Example implementing the Allen-Cahn equation in 2D with finite differences, SDC standard splitting |
188 | 188 | """ |
189 | 189 |
|
190 | | - def __init__(self, problem_params, dtype_u=mesh, dtype_f=parallel_imex_mesh): |
| 190 | + def __init__(self, problem_params, dtype_u=mesh, dtype_f=imex_mesh): |
191 | 191 | """ |
192 | 192 | Initialization routine |
193 | 193 |
|
@@ -258,7 +258,7 @@ class allencahn_semiimplicit_v2(allencahn_fullyimplicit): |
258 | 258 | Example implementing the Allen-Cahn equation in 2D with finite differences, AC splitting |
259 | 259 | """ |
260 | 260 |
|
261 | | - def __init__(self, problem_params, dtype_u=mesh, dtype_f=parallel_imex_mesh): |
| 261 | + def __init__(self, problem_params, dtype_u=mesh, dtype_f=imex_mesh): |
262 | 262 | """ |
263 | 263 | Initialization routine |
264 | 264 |
|
@@ -352,7 +352,7 @@ class allencahn_multiimplicit(allencahn_fullyimplicit): |
352 | 352 | Example implementing the Allen-Cahn equation in 2D with finite differences, SDC standard splitting |
353 | 353 | """ |
354 | 354 |
|
355 | | - def __init__(self, problem_params, dtype_u=mesh, dtype_f=parallel_comp2_mesh): |
| 355 | + def __init__(self, problem_params, dtype_u=mesh, dtype_f=comp2_mesh): |
356 | 356 | """ |
357 | 357 | Initialization routine |
358 | 358 |
|
@@ -479,7 +479,7 @@ class allencahn_multiimplicit_v2(allencahn_fullyimplicit): |
479 | 479 | Example implementing the Allen-Cahn equation in 2D with finite differences, AC splitting |
480 | 480 | """ |
481 | 481 |
|
482 | | - def __init__(self, problem_params, dtype_u=mesh, dtype_f=parallel_comp2_mesh): |
| 482 | + def __init__(self, problem_params, dtype_u=mesh, dtype_f=comp2_mesh): |
483 | 483 | """ |
484 | 484 | Initialization routine |
485 | 485 |
|
|
0 commit comments