Introduction
Introduction Statistics Contact Development Disclaimer Help
timprove plot - sphere - GPU-based 3D discrete element method algorithm with op…
git clone git://src.adamsgaard.dk/sphere
Log
Files
Refs
LICENSE
---
commit 1afc9f2c50d345630db1786a339a60bdd2998b96
parent c3f43ac112b3dbefc930e2c82e437b6def40446b
Author: Anders Damsgaard <[email protected]>
Date: Tue, 9 Sep 2014 14:47:55 +0200
improve plot
Diffstat:
M python/shear-results-forces.py | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
---
diff --git a/python/shear-results-forces.py b/python/shear-results-forces.py
t@@ -82,17 +82,21 @@ for s in numpy.arange(len(steps)):
ax1.plot(xdisp[s], zpos_p[s], '.')
ax2.plot(f_pf[s], zpos_p[s], '.')
- ax3.plot(dev_p[s], zpos_c[s], '.')
+ ax3.plot(dev_p[s], zpos_c[s])
+ max_z = numpy.max(zpos_p)
+ ax1.set_ylim([0, max_z])
+ ax2.set_ylim([0, max_z])
+ ax3.set_ylim([0, max_z])
#plt.plot(dpdz[c], K[c], 'o-', label='$c$ = %.2f' % (cvals[c]))
#plt.semilogx(dpdz[c], K[c], 'o-', label='$c$ = %.2f' % (cvals[c]))
#plt.semilogy(dpdz[c], K[c], 'o-', label='$c$ = %.2f' % (cvals[c]))
#plt.loglog(dpdz[c], K[c], 'o-', label='$c$ = %.2f' % (cvals[c]))
ax1.set_ylabel('Vertical position $z$ [m]')
- ax1.set_xlabel('Horizontal particle displacement [m]')
- ax2.set_xlabel('Average fluid pressure $\\bar{p_f}$ [Pa]')
- ax3.set_xlabel('Average fluid-particle interaction force '
- + '$||\\bar{\\boldsymbol{f_{pf}}}||$ [N]')
+ #ax1.set_xlabel('Horizontal particle displacement [m]')
+ #ax2.set_xlabel('Average fluid pressure $\\bar{p_f}$ [Pa]')
+ #ax3.set_xlabel('Average fluid-particle interaction force '
+ #+ '$||\\bar{\\boldsymbol{f_{pf}}}||$ [N]')
plt.setp(ax2.get_yticklabels(), visible=False)
plt.setp(ax3.get_yticklabels(), visible=False)
#ax1.grid()
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.