tfix order of matplotlib settings - 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 d70a7d3f40c472e7e958fd7dfff108c8899fdf3e
 (DIR) parent f108f37f154c3fd25467dc2a4b69931e35bf4d49
 (HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
       Date:   Tue, 12 May 2015 21:22:12 +0200
       
       fix order of matplotlib settings
       
       Diffstat:
         M python/halfshear-darcy-rate-depend… |       7 ++++---
       
       1 file changed, 4 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/python/halfshear-darcy-rate-dependence.py b/python/halfshear-darcy-rate-dependence.py
       t@@ -2,9 +2,6 @@
        import matplotlib
        matplotlib.use('Agg')
        #matplotlib.rcParams.update({'font.size': 18, 'font.family': 'serif'})
       -matplotlib.rcParams.update({'font.size': 7, 'font.family': 'sans-serif'})
       -matplotlib.rc('text', usetex=True)
       -matplotlib.rcParams['text.latex.preamble']=[r"\usepackage{amsmath}"]
        import shutil
        
        import os
       t@@ -14,6 +11,10 @@ import sphere
        import matplotlib.pyplot as plt
        import scipy.optimize
        
       +matplotlib.rcParams.update({'font.size': 7, 'font.family': 'sans-serif'})
       +matplotlib.rc('text', usetex=True)
       +matplotlib.rcParams['text.latex.preamble']=[r"\usepackage{amsmath}"]
       +
        sids =\
                ['halfshear-darcy-sigma0=80000.0-k_c=3.5e-13-mu=1.04e-07-ss=10000.0-A=70000.0-f=0.2',
                 'halfshear-darcy-sigma0=80000.0-k_c=3.5e-15-mu=1.04e-07-ss=10000.0-A=70000.0-f=0.2',