Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,8 @@
"\n",
"callbacks = CallbackSet(summary_callback, save_solution, stepsize_callback)\n",
"\n",
"time_int_tol = 1e-6\n",
"sol = solve(ode, CarpenterKennedy2N54();\n",
" abstol = time_int_tol,\n",
" reltol = time_int_tol,\n",
" dt = setup[\"dt\"],\n",
"sol = solve(ode, CarpenterKennedy2N54(williamson_condition=false);\n",
" dt = 1, # required by DiffEqODE solver, but effectively unused given CFL constraint above\n",
" ode_default_options()..., callback = callbacks);\n",
"\n",
"summary_callback()"
Expand Down
Loading