treenable run - 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 045eaa1f467680b4d07656b9ffe5151b83e21494
DIR parent 18cdc6391837e9d947e7f7407e956bb986010f40
HTML Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Wed, 30 Jul 2014 12:22:25 +0200
reenable run
Diffstat:
M python/permeability-starter.py | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
---
DIR diff --git a/python/permeability-starter.py b/python/permeability-starter.py
t@@ -12,16 +12,14 @@ for dp_str in sys.argv[4:]:
device = int(sys.argv[1])
c_phi = float(sys.argv[2])
c_grad_p = float(sys.argv[3])
- print('permeability-dp=' + str(dp) + '-c_phi=' + str(c_phi) + \
- '-c_grad_p=' + str(c_grad_p))
- '''
# Read initial configuration
sim = sphere.sim('diffusivity-relax')
sim.readlast()
sim.sid = 'permeability-dp=' + str(dp) + '-c_phi=' + str(c_phi) + \
'-c_grad_p=' + str(c_grad_p)
+ print(sim.sid)
sim.cleanup()
sim.g[2] = 0.0
t@@ -50,4 +48,3 @@ for dp_str in sys.argv[4:]:
sim.run(dry=True)
sim.run(device=device)
#sim.writeVTKall()
- '''