tchange color of shear stress - 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 8dc9a7244241f9443212f55d765edabedbadbe52
(DIR) parent 73fc14153c9b57e66bc392fa2f53590b3b9cee57
(HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Sat, 31 Jan 2015 10:22:15 +0100
change color of shear stress
Diffstat:
M python/sphere.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/python/sphere.py b/python/sphere.py
t@@ -5961,9 +5961,9 @@ class sim:
'--k', label="$\\sigma'$")
lns2 = ax3.plot(time,
numpy.ones_like(time)*sb.w_tau_x/1000.0,
- '--k', label="$\\tau$")
+ '-r', label="$\\tau$")
lns3 = ax3.plot(time, self.tau_eff/1000.0,
- ':k', label="$\\tau'$")
+ '--r', label="$\\tau'$")
ax3.set_ylabel('Stress [kPa]')
#ax3.legend(loc='upper left')
else: