2018-11-17 12:42:12 +05:30
|
|
|
#!/usr/bin/env python3
|
2012-09-13 15:42:00 +05:30
|
|
|
|
2019-05-25 13:44:53 +05:30
|
|
|
import os
|
|
|
|
import sys
|
2014-11-18 13:30:45 +05:30
|
|
|
from optparse import OptionParser
|
2019-05-25 13:44:53 +05:30
|
|
|
from io import StringIO
|
2019-05-27 00:06:41 +05:30
|
|
|
|
2019-05-25 13:44:53 +05:30
|
|
|
import damask
|
2012-09-13 15:42:00 +05:30
|
|
|
|
2019-05-27 00:06:41 +05:30
|
|
|
|
2016-01-27 22:36:00 +05:30
|
|
|
scriptName = os.path.splitext(os.path.basename(__file__))[0]
|
|
|
|
scriptID = ' '.join([scriptName,damask.version])
|
2013-07-10 14:45:42 +05:30
|
|
|
|
2019-05-27 00:06:41 +05:30
|
|
|
|
2013-05-13 16:57:59 +05:30
|
|
|
#--------------------------------------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
#--------------------------------------------------------------------------------------------------
|
2012-09-13 15:42:00 +05:30
|
|
|
|
2019-05-27 00:06:41 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [geomfile(s)]', description = """
|
|
|
|
Translate microstructure indices (shift or substitute) and/or geometry origin.
|
2014-11-18 13:30:45 +05:30
|
|
|
|
|
|
|
""", version=scriptID)
|
2012-09-13 15:42:00 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-o', '--origin',
|
|
|
|
dest = 'origin',
|
|
|
|
type = 'float', nargs = 3, metavar = ' '.join(['float']*3),
|
|
|
|
help = 'offset from old to new origin of grid')
|
|
|
|
parser.add_option('-m', '--microstructure',
|
|
|
|
dest = 'microstructure',
|
|
|
|
type = 'int', metavar = 'int',
|
2019-05-27 00:06:41 +05:30
|
|
|
help = 'offset from old to new microstructure indices (after substitution)')
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-s', '--substitute',
|
|
|
|
dest = 'substitute',
|
|
|
|
action = 'extend', metavar = '<string LIST>',
|
|
|
|
help = 'substitutions of microstructure indices from,to,from,to,...')
|
|
|
|
|
|
|
|
parser.set_defaults(origin = (0.0,0.0,0.0),
|
|
|
|
microstructure = 0,
|
2019-05-25 13:44:53 +05:30
|
|
|
substitute = []
|
2015-08-08 00:33:26 +05:30
|
|
|
)
|
2012-09-13 15:42:00 +05:30
|
|
|
|
|
|
|
(options, filenames) = parser.parse_args()
|
|
|
|
|
2019-05-28 06:44:09 +05:30
|
|
|
sub = list(map(int,options.substitute))
|
2015-08-08 00:33:26 +05:30
|
|
|
|
2019-05-30 14:56:47 +05:30
|
|
|
|
2015-08-21 01:12:05 +05:30
|
|
|
if filenames == []: filenames = [None]
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
for name in filenames:
|
2015-09-24 22:22:58 +05:30
|
|
|
damask.util.report(scriptName,name)
|
2019-05-25 13:44:53 +05:30
|
|
|
|
2019-05-28 06:44:09 +05:30
|
|
|
geom = damask.Geom.from_file(StringIO(''.join(sys.stdin.read())) if name is None else name)
|
2019-05-25 13:44:53 +05:30
|
|
|
|
2019-05-30 14:56:47 +05:30
|
|
|
substituted = geom.get_microstructure()
|
2019-05-29 11:19:43 +05:30
|
|
|
for old,new in zip(sub[0::2],sub[1::2]): substituted[substituted==old] = new # substitute microstructure indices
|
2019-05-28 06:44:09 +05:30
|
|
|
substituted += options.microstructure # constant shift
|
2019-05-25 13:44:53 +05:30
|
|
|
|
2019-05-28 06:44:09 +05:30
|
|
|
damask.util.croak(geom.update(substituted,origin=geom.get_origin()+options.origin))
|
|
|
|
geom.add_comments(scriptID + ' ' + ' '.join(sys.argv[1:]))
|
2019-05-27 00:06:41 +05:30
|
|
|
|
2019-05-25 13:44:53 +05:30
|
|
|
if name is None:
|
|
|
|
sys.stdout.write(str(geom.show()))
|
|
|
|
else:
|
|
|
|
geom.to_file(name)
|