tdisable viscosities during consolidation and shear - 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 5faf8deaee3d79487ba1d43a6babd6d0f2faa7f6
(DIR) parent 15c6647b60beb142a837e63b6f047b619910b5ac
(HTM) Author: Anders Damsgaard Christensen <adc@geo.au.dk>
Date: Mon, 12 Sep 2016 13:03:10 -0700
disable viscosities during consolidation and shear
Diffstat:
M python/creep-master.py | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/python/creep-master.py b/python/creep-master.py
t@@ -6,7 +6,7 @@ import numpy
### EXPERIMENT SETUP ###
initialization = False
-consolidation = True
+consolidation = False
shearing = True
creeping = True
rendering = False
t@@ -92,6 +92,10 @@ cons.periodicBoundariesXY()
# Setup consolidation experiment
cons.consolidate(normal_stress = N)
+# Disable wall viscosities
+cons.gamma_wn[0] = 0.0
+cons.gamma_wt[0] = 0.0
+
cons.rho[0] = rho_g
cons.g[2] = g
t@@ -134,6 +138,10 @@ shear.periodicBoundariesXY()
shear.rho = rho_g
shear.g[2] = g
+# Disable particle viscosities
+shear.gamma_n[0] = 0.0
+shear.gamma_t[0] = 0.0
+
# Setup shear experiment
shear.shear(shear_strain_rate = 0.1)