2016-07-18 23:05:35 +05:30
|
|
|
#!/usr/bin/env python2.7
|
2012-09-05 20:45:11 +05:30
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
|
|
|
|
2016-03-02 02:53:30 +05:30
|
|
|
import os,sys,math
|
2014-08-25 18:23:11 +05:30
|
|
|
import numpy as np
|
|
|
|
from optparse import OptionParser
|
2013-06-30 06:09:48 +05:30
|
|
|
import damask
|
2012-09-05 20:45:11 +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
|
|
|
|
2013-05-13 18:40:31 +05:30
|
|
|
#--------------------------------------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
#--------------------------------------------------------------------------------------------------
|
2012-09-05 20:45:11 +05:30
|
|
|
|
2014-08-25 18:23:11 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [file[s]]', description = """
|
2012-10-30 21:17:11 +05:30
|
|
|
Unpack geometry files containing ranges "a to b" and/or "n of x" multiples (exclusively in one line).
|
2012-09-05 20:45:11 +05:30
|
|
|
|
2015-11-16 16:22:56 +05:30
|
|
|
""", version = scriptID)
|
2012-09-05 20:45:11 +05:30
|
|
|
|
2016-03-21 00:31:47 +05:30
|
|
|
parser.add_option('-1', '--onedimensional',
|
|
|
|
dest = 'oneD',
|
|
|
|
action = 'store_true',
|
|
|
|
help = 'output geom file with one-dimensional data arrangement')
|
|
|
|
|
|
|
|
parser.set_defaults(oneD = False,
|
|
|
|
)
|
|
|
|
|
2012-09-05 20:45:11 +05:30
|
|
|
(options, filenames) = parser.parse_args()
|
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# --- loop over input files -------------------------------------------------------------------------
|
|
|
|
|
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-08-21 01:12:05 +05:30
|
|
|
try:
|
|
|
|
table = damask.ASCIItable(name = name,
|
|
|
|
buffered = False, labeled = False)
|
|
|
|
except: continue
|
2015-09-24 21:04:27 +05:30
|
|
|
damask.util.report(scriptName,name)
|
2013-06-30 06:09:48 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# --- interpret header ----------------------------------------------------------------------------
|
2014-02-04 05:14:29 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
table.head_read()
|
|
|
|
info,extra_header = table.head_getGeom()
|
|
|
|
|
2015-09-24 21:04:27 +05:30
|
|
|
damask.util.croak(['grid a b c: %s'%(' x '.join(map(str,info['grid']))),
|
2015-08-08 00:33:26 +05:30
|
|
|
'size x y z: %s'%(' x '.join(map(str,info['size']))),
|
|
|
|
'origin x y z: %s'%(' : '.join(map(str,info['origin']))),
|
|
|
|
'homogenization: %i'%info['homogenization'],
|
|
|
|
'microstructures: %i'%info['microstructures'],
|
|
|
|
])
|
|
|
|
|
|
|
|
errors = []
|
|
|
|
if np.any(info['grid'] < 1): errors.append('invalid grid a b c.')
|
|
|
|
if np.any(info['size'] <= 0.0): errors.append('invalid size x y z.')
|
|
|
|
if errors != []:
|
2015-09-24 21:04:27 +05:30
|
|
|
damask.util.croak(errors)
|
2015-08-08 00:33:26 +05:30
|
|
|
table.close(dismiss = True)
|
|
|
|
continue
|
2013-06-30 06:09:48 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
# --- write header ---------------------------------------------------------------------------------
|
2013-06-30 06:09:48 +05:30
|
|
|
|
2014-08-25 18:23:11 +05:30
|
|
|
table.labels_clear()
|
|
|
|
table.info_clear()
|
|
|
|
table.info_append(extra_header+[
|
2014-01-20 20:11:56 +05:30
|
|
|
scriptID + ' ' + ' '.join(sys.argv[1:]),
|
2015-08-08 00:33:26 +05:30
|
|
|
"grid\ta {grid[0]}\tb {grid[1]}\tc {grid[2]}".format(grid=info['grid']),
|
|
|
|
"size\tx {size[0]}\ty {size[1]}\tz {size[2]}".format(size=info['size']),
|
|
|
|
"origin\tx {origin[0]}\ty {origin[1]}\tz {origin[2]}".format(origin=info['origin']),
|
|
|
|
"homogenization\t{homog}".format(homog=info['homogenization']),
|
|
|
|
"microstructures\t{microstructures}".format(microstructures=info['microstructures']),
|
2013-06-30 06:09:48 +05:30
|
|
|
])
|
2014-08-25 18:23:11 +05:30
|
|
|
table.head_write()
|
2013-06-30 06:09:48 +05:30
|
|
|
|
|
|
|
# --- write microstructure information ------------------------------------------------------------
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
microstructure = table.microstructure_read(info['grid']) # read microstructure
|
|
|
|
formatwidth = int(math.floor(math.log10(microstructure.max())+1)) # efficient number printing format
|
2016-03-21 00:31:47 +05:30
|
|
|
table.data = microstructure if options.oneD else \
|
|
|
|
microstructure.reshape((info['grid'][0],info['grid'][1]*info['grid'][2]),order='F').transpose()
|
2014-08-25 18:23:11 +05:30
|
|
|
table.data_writeArray('%%%ii'%(formatwidth),delimiter = ' ')
|
2013-06-30 06:09:48 +05:30
|
|
|
|
2013-05-13 18:40:31 +05:30
|
|
|
#--- output finalization --------------------------------------------------------------------------
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
table.close() # close ASCII table
|