From 2ab2b1f235646fc01540cea96c55e703b711dfa6 Mon Sep 17 00:00:00 2001 From: Alexandru Fikl Date: Fri, 4 Sep 2020 19:29:17 -0500 Subject: [PATCH] reduce time to make surface advection example faster --- examples/advection/surface.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/advection/surface.py b/examples/advection/surface.py index 2d9c8d12..c0bb772c 100644 --- a/examples/advection/surface.py +++ b/examples/advection/surface.py @@ -104,9 +104,9 @@ def main(ctx_factory, dim=2, order=4, product_tag=None, visualize=False): resolution = 64 if dim == 2 else 1 # cfl - dt_factor = 1.0 + dt_factor = 2.0 # final time - final_time = 2.0 * np.pi + final_time = np.pi # velocity field sym_x = sym.nodes(dim) -- GitLab