tDisable wall viscosities by default - 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 4c5c132c13af691323015c7bf75ebc0bcb333c57
DIR parent de8a8c95358fb31347ad8701748f50df64ad585b
HTML Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Wed, 21 Aug 2019 09:02:40 +0200
Disable wall viscosities by default
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@@ -195,7 +195,7 @@ class sim:
self.mu_r = numpy.zeros(1, dtype=numpy.float64)
# The viscosity normal to the walls [N/(m/s)]
- self.gamma_wn = numpy.ones(1, dtype=numpy.float64) * 1.0e3
+ self.gamma_wn = numpy.zeros(1, dtype=numpy.float64)
# The viscosity tangential to the walls [N/(m/s)]
self.gamma_wt = numpy.zeros(1, dtype=numpy.float64)
t@@ -3771,8 +3771,8 @@ class sim:
gamma_n = 0.0,
gamma_t = 0.0,
gamma_r = 0.0,
- gamma_wn = 1.0e4,
- gamma_wt = 1.0e4,
+ gamma_wn = 0.0,
+ gamma_wt = 0.0,
capillaryCohesion = 0):
'''
Initialize particle parameters to default values.