tswitch device and fluid parameter placement - 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 05e481fc347acc1487d844d222d703a24f413b1c
 (DIR) parent 4da059b618b35b112bd4e4237cd778555a22e408
 (HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
       Date:   Wed, 11 Feb 2015 15:11:00 +0100
       
       switch device and fluid parameter placement
       
       Diffstat:
         M python/halfshear-imper-ss-cont.sh   |       4 ++--
         M python/halfshear-per-ss-cont.sh     |       4 ++--
         M python/sphere.py                    |       2 +-
       
       3 files changed, 5 insertions(+), 5 deletions(-)
       ---
 (DIR) diff --git a/python/halfshear-imper-ss-cont.sh b/python/halfshear-imper-ss-cont.sh
       t@@ -39,9 +39,9 @@ nvidia-smi
        rm CMakeCache.txt
        cmake . && make
        cd python
       -python continue_sim.py halfshear-darcy-sigma0=20000.0-k_c=3.5e-15-mu=1.797e-06-ss=10000.0-shear 0 1 &
       +python continue_sim.py halfshear-darcy-sigma0=20000.0-k_c=3.5e-15-mu=1.797e-06-ss=10000.0-shear 1 0 &
        python continue_sim.py halfshear-darcy-sigma0=20000.0-k_c=3.5e-15-mu=1.797e-06-ss=12500.0-shear 1 1 &
       -python continue_sim.py halfshear-darcy-sigma0=20000.0-k_c=3.5e-15-mu=1.797e-06-ss=15000.0-shear 2 1 &
       +python continue_sim.py halfshear-darcy-sigma0=20000.0-k_c=3.5e-15-mu=1.797e-06-ss=15000.0-shear 1 2 &
        wait
        
        #cp $WORKDIR/output/* $ORIGDIR/output/
 (DIR) diff --git a/python/halfshear-per-ss-cont.sh b/python/halfshear-per-ss-cont.sh
       t@@ -39,9 +39,9 @@ nvidia-smi
        rm CMakeCache.txt
        cmake . && make
        cd python
       -python continue_sim.py halfshear-darcy-sigma0=20000.0-k_c=3.5e-13-mu=1.797e-06-ss=10000.0-shear 0 1 &
       +python continue_sim.py halfshear-darcy-sigma0=20000.0-k_c=3.5e-13-mu=1.797e-06-ss=10000.0-shear 1 0 &
        python continue_sim.py halfshear-darcy-sigma0=20000.0-k_c=3.5e-13-mu=1.797e-06-ss=12500.0-shear 1 1 &
       -python continue_sim.py halfshear-darcy-sigma0=20000.0-k_c=3.5e-13-mu=1.797e-06-ss=15000.0-shear 2 1 &
       +python continue_sim.py halfshear-darcy-sigma0=20000.0-k_c=3.5e-13-mu=1.797e-06-ss=15000.0-shear 1 2 &
        wait
        
        #cp $WORKDIR/output/* $ORIGDIR/output/
 (DIR) diff --git a/python/sphere.py b/python/sphere.py
       t@@ -6238,7 +6238,7 @@ class sim:
                        #ax.set_title(sb.id())
        
                        cb = plt.colorbar(im1)
       -                cb.set_label('$\\bar{\phi}$ [-]')
       +                cb.set_label('Mean horizontal porosity $\\bar{\phi}$ [-]')
                        cb.solids.set_rasterized(True)
                        plt.tight_layout()
                        plt.subplots_adjust(wspace = .05)