tadjust max. permeability value accordingly - 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 629b0c945feb44b5d12abbd98e5e47f67cbab702
(DIR) parent 686048360a86c7bfc8b4774e76ec8e2f63b197a2
(HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Thu, 6 Nov 2014 14:43:55 +0100
adjust max. permeability value accordingly
Diffstat:
M python/sphere.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/python/sphere.py b/python/sphere.py
t@@ -2792,7 +2792,7 @@ class sim:
# components
#self.hydraulicPermeability()
#alpha_max = numpy.max(self.k/(self.beta_f*0.9*self.mu))
- k_max = 2.7e-8 # hardcoded in darcy.cuh
+ k_max = 2.7e-10 # hardcoded in darcy.cuh
phi_min = 0.1 # hardcoded in darcy.cuh
alpha_max = k_max/(self.beta_f*phi_min*self.mu)
print(alpha_max)