Introduction
Introduction Statistics Contact Development Disclaimer Help
tBugfixes in porosity() - sphere - GPU-based 3D discrete element method algorit…
git clone git://src.adamsgaard.dk/sphere
Log
Files
Refs
LICENSE
---
commit 6810a726d594e10b7fed5301c841e07303c0241d
parent 1c6319ca9e7ffc2f677b46a368bd94c84a24b543
Author: Anders Damsgaard <[email protected]>
Date: Thu, 6 Sep 2012 10:51:36 +0200
Bugfixes in porosity()
Diffstat:
M python/sphere.py | 16 +++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)
---
diff --git a/python/sphere.py b/python/sphere.py
t@@ -780,7 +780,7 @@ class Spherebin:
def porosity(self, lower_corner,
upper_corner,
- grid = numpy.array([10,10,10]),
+ grid = numpy.array([10,10,10], int),
precisionfactor = 10):
""" Calculate the porosity inside each grid cell.
Specify the lower and upper corners of the volume to evaluate.
t@@ -804,19 +804,17 @@ class Spherebin:
grid[2]*precisionfactor), bool)
# Side length of fine grid cells
- csl_fine = numpy.array([(upper_corner[0]-lower_corner[0]) / fine_grid[0], \
- (upper_corner[1]-lower_corner[1]) / fine_grid[1], \
- (upper_corner[2]-lower_corner[2]) / fine_grid[2] ])
+ csl_fine = numpy.array([(upper_corner[0]-lower_corner[0]) / (grid[0]*preci…
+ (upper_corner[1]-lower_corner[1]) / (grid[1]*preci…
+ (upper_corner[2]-lower_corner[2]) / (grid[2]*preci…
# Volume of fine grid vells
Vc_fine = csl_fine[0] * csl_fine[1] * csl_fine[2]
-
-
# Iterate over fine grid cells
- for ix in range(fine_grid[0]):
- for iy in range(fine_grid[1]):
- for iz in range(fine_grid[2]):
+ for ix in range(grid[0]*precisionfactor):
+ for iy in range(grid[1]*precisionfactor):
+ for iz in range(grid[2]*precisionfactor):
# Coordinates of cell centre
cpos = numpy.array([ix*csl_fine[0] + 0.5*csl_fine[0], \
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.