DAMASK_EICMD/processing/pre/geom_clean.py

43 lines
1.3 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2019-05-25 14:06:46 +05:30
import os
import sys
from io import StringIO
from optparse import OptionParser
2019-05-26 15:41:30 +05:30
import damask
scriptName = os.path.splitext(os.path.basename(__file__))[0]
scriptID = ' '.join([scriptName,damask.version])
2019-05-26 15:41:30 +05:30
#--------------------------------------------------------------------------------------------------
# MAIN
#--------------------------------------------------------------------------------------------------
2019-02-17 12:30:26 +05:30
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [geomfile(s)]', description = """
2019-05-26 15:41:30 +05:30
Smooth microstructure by selecting most frequent index within given stencil at each location.
""", version=scriptID)
parser.add_option('-s','--stencil',
dest = 'stencil',
type = 'int', metavar = 'int',
help = 'size of smoothing stencil [%default]')
2019-05-25 14:06:46 +05:30
parser.set_defaults(stencil = 3)
(options, filenames) = parser.parse_args()
if filenames == []: filenames = [None]
for name in filenames:
damask.util.report(scriptName,name)
2019-05-30 17:37:49 +05:30
geom = damask.Geom.from_file(StringIO(''.join(sys.stdin.read())) if name is None else name)
damask.util.croak(geom.clean(options.stencil))
geom.add_comments(scriptID + ' ' + ' '.join(sys.argv[1:]))
2019-11-24 23:32:19 +05:30
geom.to_file(sys.stdout if name is None else name,pack=False)