tremove xticks on middle plot - 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 6be1e771dcded074721d931b936af786d18b462d
(DIR) parent 18c620d69ca54e3b0de0faf91314ea164f0f0d2c
(HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Tue, 10 Feb 2015 20:58:24 +0100
remove xticks on middle plot
Diffstat:
M python/sphere.py | 2 ++
1 file changed, 2 insertions(+), 0 deletions(-)
---
(DIR) diff --git a/python/sphere.py b/python/sphere.py
t@@ -5972,6 +5972,7 @@ class sim:
# Plot stresses
if (outformat != 'txt'):
+ fig = plt.figure(figsuze=(8,12))
#shearinfo = "$\\tau_p$ = {:.3} Pa at $\gamma$ = {:.3}".format(\
#self.tau_p, self.tau_p_shearstrain)
t@@ -6066,6 +6067,7 @@ class sim:
ax5.set_xlim(xlim)
plt.setp(ax1.get_xticklabels(), visible=False)
+ plt.setp(ax5.get_xticklabels(), visible=False)
fig.tight_layout()
plt.subplots_adjust(hspace=0.05)