Introduction
Introduction Statistics Contact Development Disclaimer Help
tdefaultParams now uses mu values instead of phi angles as arguments - sphere -…
git clone git://src.adamsgaard.dk/sphere
Log
Files
Refs
LICENSE
---
commit 300b48a861b358885539b2ab4d4f6b7fb8fb41b1
parent 03f15c4126707713021223f8c2fb19d12a9329b2
Author: Anders Damsgaard <[email protected]>
Date: Mon, 19 Nov 2012 09:09:55 +0100
defaultParams now uses mu values instead of phi angles as arguments
Diffstat:
M python/sphere.py | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
---
diff --git a/python/sphere.py b/python/sphere.py
t@@ -2,7 +2,7 @@
import math
import numpy
import matplotlib as mpl
-#mpl.use('Agg')
+mpl.use('Agg')
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
import subprocess
t@@ -752,9 +752,9 @@ class Spherebin:
self.time_file_dt[0] = file_dt
self.time_step_count[0] = 0
- def defaultParams(self, ang_s = 28,
- ang_d = 28,
- ang_r = 0,
+ def defaultParams(self, mu_s = 0.6,
+ mu_d = 0.6,
+ mu_r = 0,
rho = 2600,
k_n = 1.16e9,
k_t = 1.16e9,
t@@ -797,13 +797,16 @@ class Spherebin:
self.gamma_r = numpy.ones(1, dtype=numpy.float64) * gamma_r
# Contact static shear friction coefficient
- self.mu_s = numpy.ones(1, dtype=numpy.float64) * numpy.tan(numpy.radians(a…
+ #self.mu_s = numpy.ones(1, dtype=numpy.float64) * numpy.tan(numpy.radians(…
+ self.mu_s = numpy.ones(1, dtype=numpy.float64) * mu_s
# Contact dynamic shear friction coefficient
- self.mu_d = numpy.ones(1, dtype=numpy.float64) * numpy.tan(numpy.radians(a…
+ #self.mu_d = numpy.ones(1, dtype=numpy.float64) * numpy.tan(numpy.radians(…
+ self.mu_d = numpy.ones(1, dtype=numpy.float64) * mu_d
# Contact rolling friction coefficient
- self.mu_r = numpy.ones(1, dtype=numpy.float64) * numpy.tan(numpy.radians(a…
+ #self.mu_r = numpy.ones(1, dtype=numpy.float64) * numpy.tan(numpy.radians(…
+ self.mu_r = numpy.ones(1, dtype=numpy.float64) * mu_r
# Wall viscosities
self.gamma_wn[0] = gamma_wn # normal
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.