tuse results from tall experiments - 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 42c93360b3a79ad65eb8e72511ccf7b7d677bbf8
 (DIR) parent ceea3e1b575916a5a5e1a3427795212a1649d7c5
 (HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
       Date:   Mon,  1 Sep 2014 13:21:44 +0200
       
       use results from tall experiments
       
       Diffstat:
         M python/consolidation-curve.py       |      12 +++++++-----
       
       1 file changed, 7 insertions(+), 5 deletions(-)
       ---
 (DIR) diff --git a/python/consolidation-curve.py b/python/consolidation-curve.py
       t@@ -10,14 +10,16 @@ import matplotlib.pyplot as plt
        
        c_phi = 1.0
        #c_grad_p_list = [1.0, 0.1, 0.01, 0.001]
       -#c_grad_p_list = [1.0, 0.1, 0.01]
       -c_grad_p_list = [1.0, 0.1]
       +c_grad_p_list = [1.0, 0.1, 0.01]
       +#c_grad_p_list = [1.0, 0.1]
        #c_grad_p_list = [1.0]
        sigma0 = 10.0e3
        #sigma0 = 5.0e3
        
       -t = [[], []]
       -H = [[], []]
       +#t = [[], []]
       +#H = [[], []]
       +t = [[], [], []]
       +H = [[], [], []]
        #t = [[], [], [], []]
        #H = [[], [], [], []]
        
       t@@ -25,7 +27,7 @@ c = 0
        for c_grad_p in c_grad_p_list:
        
            sid = 'cons-sigma0=' + str(sigma0) + '-c_phi=' + \
       -                     str(c_phi) + '-c_grad_p=' + str(c_grad_p)
       +                     str(c_phi) + '-c_grad_p=' + str(c_grad_p) + '-tall'
            if os.path.isfile('../output/' + sid + '.status.dat'):
                sim = sphere.sim(sid, fluid=True)
                t[c] = numpy.ones(sim.status())