tfix x axis limits - 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 d3bb81a40174dfb91af6e86033020917a20d00f0
 (DIR) parent e1aa9f42516ab032223e885c5bc92af787f72893
 (HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
       Date:   Mon,  9 Feb 2015 14:18:22 +0100
       
       fix x axis limits
       
       Diffstat:
         M python/halfshear-darcy-internals.py |       6 ++++--
       
       1 file changed, 4 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/python/halfshear-darcy-internals.py b/python/halfshear-darcy-internals.py
       t@@ -175,9 +175,11 @@ ax[0].set_ylim([0, max_z])
        ax[0].set_xlim([0, 0.5])
        
        if k_c == 3.5e-15:
       -    ax[1].set_xlim([1e-14, 1e-12])
       +    #ax[1].set_xlim([1e-14, 1e-12])
       +    ax[1].set_xlim([1e-16, 1e-14])
        elif k_c == 3.5e-13:
       -    ax[1].set_xlim([1e-12, 1e-10])
       +    #ax[1].set_xlim([1e-12, 1e-10])
       +    ax[1].set_xlim([1e-14, 1e-12])
        
        ax[0].set_ylabel('Vertical position $z$ [m]')
        ax[0].set_xlabel('$\\bar{\\boldsymbol{x}}^x_\\text{p}$ [m]')