tchange line styles - sphere - GPU-based 3D discrete element method algorithm with optional fluid coupling
HTML git clone git://src.adamsgaard.dk/sphere
DIR Log
DIR Files
DIR Refs
DIR LICENSE
---
DIR commit e7347a2b105dd2f226eb765ce7a1ab45cb6fdc60
DIR parent 5b3238dad8b0f33d60bebbe7dbdb400259f11ca9
HTML Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Thu, 22 Jan 2015 10:30:23 +0100
change line styles
Diffstat:
M python/sphere.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
DIR diff --git a/python/sphere.py b/python/sphere.py
t@@ -5954,10 +5954,10 @@ class sim:
if self.w_sigma0_A > 1.0e-3:
ax3.plot(time, self.sigma_eff/1000.0,
'-k', label="$\\sigma'$")
- ax3.plot(time, self.tau_eff/1000.0,
- '--k', label="$\\tau'$")
ax3.plot(time, numpy.ones_like(time)*self.w_tau_x/1000.0,
- ':k', label="$\\tau_0$")
+ '--k', label="$\\tau$")
+ ax3.plot(time, self.tau_eff/1000.0,
+ ':k', label="$\\tau'$")
ax3.set_ylabel('Stress [kPa]')
ax3.legend()
else: