diff --git a/lib/damask/util.py b/lib/damask/util.py index 42cb82729..1baaaaea8 100644 --- a/lib/damask/util.py +++ b/lib/damask/util.py @@ -100,20 +100,6 @@ def execute(cmd, if process.returncode != 0: raise RuntimeError('{} failed with returncode {}'.format(cmd,process.returncode)) return out,error -# ----------------------------- -def gridLocation(idx,res): - return ( idx % res[0], \ - ( idx // res[0]) % res[1], \ - ( idx // res[0] // res[1]) % res[2] ) - - -# ----------------------------- -def gridIndex(location,res): - return ( location[0] % res[0] + \ - ( location[1] % res[1]) * res[0] + \ - ( location[2] % res[2]) * res[1] * res[0] ) - - # ----------------------------- class extendableOption(Option): """