Skip to content

Commit e72d23c

Browse files
author
Daniel Ruprecht
committed
parameter setting for full 3000 second run
1 parent dc7f40e commit e72d23c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

examples/boussinesq_2d_imex/playground.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@
2828

2929
# This comes as read-in for the level class
3030
lparams = {}
31-
lparams['restol'] = 1E-14
31+
lparams['restol'] = 1E-8
3232

3333
swparams = {}
3434
swparams['collocation_class'] = collclass.CollGaussLobatto
3535
swparams['num_nodes'] = 3
3636
swparams['do_LU'] = True
3737

3838
sparams = {}
39-
sparams['maxiter'] = 4
39+
sparams['maxiter'] = 12
4040

4141
# setup parameters "in time"
4242
t0 = 0
43-
#Tend = 3000
44-
#Nsteps = 500
45-
Tend = 30
46-
Nsteps = 5
43+
Tend = 3000
44+
Nsteps = 500
45+
#Tend = 30
46+
#Nsteps = 5
4747
dt = Tend/float(Nsteps)
4848

4949
# This comes as read-in for the problem class
@@ -58,7 +58,7 @@
5858
pparams['order_upw'] = [5, 1]
5959
pparams['gmres_maxiter'] = [50, 50]
6060
pparams['gmres_restart'] = [20, 20]
61-
pparams['gmres_tol'] = [1e-6, 1e-6]
61+
pparams['gmres_tol'] = [1e-8, 1e-8]
6262

6363
# This comes as read-in for the transfer operations
6464
tparams = {}

0 commit comments

Comments
 (0)