tcorrect run calls - sphere - GPU-based 3D discrete element method algorithm with optional fluid coupling
 (HTM) git clone git://src.adamsgaard.dk/sphere
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit f7d218421aee00f614ea84e6cda77fe3013dcf67
 (DIR) parent e1d35e9d6107dbbe53b9c8b5c62827bb2e0caf71
 (HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
       Date:   Thu, 23 Oct 2014 11:59:11 +0200
       
       correct run calls
       
       Diffstat:
         M tests/cfd_tests_neumann-c=0.1.py    |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/tests/cfd_tests_neumann-c=0.1.py b/tests/cfd_tests_neumann-c=0.1.py
       t@@ -21,8 +21,8 @@ orig.c_v[0] = 0.1
        #orig.c_phi[0] = 0.1
        py = sphere.sim(sid = orig.sid, fluid = True)
        orig.bc_bot[0] = 1      # No-flow BC at bottom (Neumann)
       -orig.run(dry=True)
       -#orig.run(verbose=False)
       +#orig.run(dry=True)
       +orig.run(verbose=False)
        #orig.run(device=2)
        #orig.writeVTKall()
        py.readlast(verbose = False)
       t@@ -55,7 +55,7 @@ orig.g[2] = -10.0
        orig.c_v[0] = 0.1
        orig.bc_bot[0] = 1      # No-flow BC at bottom (Neumann)
        #orig.run(dry=True)
       -orig.run(verbose=True)
       +orig.run(verbose=False)
        #orig.run(device=2)
        orig.writeVTKall()
        py.readlast(verbose = False)