URI:
       __init__.py - 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
       ---
       __init__.py (424B)
       ---
            1 '''sphere: discrete element method simulation interface. See sphere.sim.'''
            2 import numpy  # consumer scripts rely on `from sphere import *`
            3               # providing numpy (e.g. the tests via pytestutils)
            4 from .common import VERSION, legend_alpha, py_mpl, py_vtk, V_sphere
            5 from .core import sim
            6 from .runner import (cleanup, convert, render, run, status, thinsectionVideo,
            7                      torqueScriptParallel3, video)