We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9ab05d commit d638602Copy full SHA for d638602
examples/boussinesq_2d_imex/rungmrescounter.py
@@ -63,7 +63,7 @@
63
pparams['order_upw'] = [5]
64
pparams['gmres_maxiter'] = [500]
65
pparams['gmres_restart'] = [10]
66
- pparams['gmres_tol'] = [1e-3]
+ pparams['gmres_tol'] = [1e-5]
67
68
# This comes as read-in for the transfer operations
69
tparams = {}
@@ -102,6 +102,9 @@
102
for i in range(0,Nsteps):
103
udirk = dirkp.timestep(udirk, dt)
104
105
+ Pref = P
106
+ # For reference solution, increase GMRES tolerance
107
+ Pref.gmes_tol = 1e-6
108
dirkref = dirk(P, 4)
109
uref = u0
110
dt_ref = dt/10.0
0 commit comments