Skip to content

Commit c4918f6

Browse files
author
Daniel Ruprecht
committed
correct parameter for fwsw convergence test
1 parent 8252b51 commit c4918f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/acoustic_1d_imex/runconvergence.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
pparams['cadv'] = 0.05
3636
pparams['cs'] = 1.00
3737
pparams['order_adv'] = 5
38-
pparams['waveno'] = 5
38+
pparams['waveno'] = 1
3939

4040
# This comes as read-in for the transfer operations
4141
tparams = {}
@@ -47,14 +47,14 @@
4747
description['problem_params'] = pparams
4848
description['dtype_u'] = mesh
4949
description['dtype_f'] = rhs_imex_mesh
50-
description['collocation_class'] = collclass.CollGaussRadau_Right
50+
description['collocation_class'] = collclass.CollGaussLobatto
5151
description['sweeper_class'] = imex_1st_order
5252
description['level_params'] = lparams
5353
description['hook_class'] = plot_solution
5454
#description['transfer_class'] = mesh_to_mesh_1d
5555
#description['transfer_params'] = tparams
5656

57-
Nsteps = [20, 25, 30, 35, 40, 45, 50, 55, 60]
57+
Nsteps = [20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80]
5858

5959
for order in [2, 3, 4]:
6060

0 commit comments

Comments
 (0)