tFix call to shear function - 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 5f03b9fa9d946daf18bb119e7c181bcfe41a31d6
(DIR) parent 924e5cc96c8508c17abff1b91dfc96baf9a21e0e
(HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Mon, 9 Dec 2019 08:04:00 +0100
Fix call to shear function
Diffstat:
M python/hansen-zoet.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
(DIR) diff --git a/python/hansen-zoet.py b/python/hansen-zoet.py
t@@ -5,7 +5,7 @@ import sphere
### EXPERIMENT SETUP ###
initialization = False
-consolidation = True
+consolidation = False
shearing = True
rendering = False
plots = True
t@@ -127,12 +127,12 @@ for N in Nlist:
shear.periodicBoundariesXY()
# Setup shear experiment
- shear.shear(shear_strain_rate = 0.05, periodic = init.periodic)
+ shear.shear(shear_strain_rate = 0.10)
shear.adaptiveGrid()
#shear.initFluid(mu=17.87e-4, p=0.0, hydrostatic=True, cfd_solver=1)
# Set duration of simulation
- shear.initTemporal(total = 20.0)
+ shear.initTemporal(total = 10.0)
if (shearing == True):