2019-02-15 03:26:39 +05:30
|
|
|
#!/usr/bin/env python3
|
2013-01-22 04:45:23 +05:30
|
|
|
|
2019-06-14 16:33:30 +05:30
|
|
|
import os
|
|
|
|
import sys
|
2014-08-07 00:36:33 +05:30
|
|
|
from optparse import OptionParser
|
2019-06-14 16:33:30 +05:30
|
|
|
|
|
|
|
import numpy as np
|
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
import damask
|
2013-01-22 04:45:23 +05:30
|
|
|
|
2019-06-14 16:33:30 +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-01-22 04:45:23 +05:30
|
|
|
|
2019-06-14 16:33:30 +05:30
|
|
|
|
2013-01-22 04:45:23 +05:30
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
2019-02-17 02:50:10 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [ASCIItable(s)]', description = """
|
2013-01-22 15:26:36 +05:30
|
|
|
Blows up each value to a surrounding data block of size 'packing' thus increasing the former resolution
|
2014-08-07 00:36:33 +05:30
|
|
|
to resolution*packing.
|
2013-01-22 04:45:23 +05:30
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
""", version = scriptID)
|
2013-01-22 04:45:23 +05:30
|
|
|
|
2016-04-16 03:57:23 +05:30
|
|
|
parser.add_option('-c','--coordinates',
|
2016-04-27 02:19:58 +05:30
|
|
|
dest = 'pos', metavar = 'string',
|
2016-04-16 03:57:23 +05:30
|
|
|
help = 'column label of coordinates [%default]')
|
|
|
|
parser.add_option('-p','--packing',
|
|
|
|
dest = 'packing', type = 'int', nargs = 3, metavar = 'int int int',
|
|
|
|
help = 'dimension of packed group [%default]')
|
|
|
|
parser.add_option('-g','--grid',
|
|
|
|
dest = 'resolution', type = 'int', nargs = 3, metavar = 'int int int',
|
2019-02-16 19:23:56 +05:30
|
|
|
help = 'grid in x,y,z (optional)')
|
2016-04-16 03:57:23 +05:30
|
|
|
parser.add_option('-s','--size',
|
|
|
|
dest = 'dimension', type = 'float', nargs = 3, metavar = 'int int int',
|
2019-02-16 19:23:56 +05:30
|
|
|
help = 'size in x,y,z (optional)')
|
2016-04-27 02:19:58 +05:30
|
|
|
parser.set_defaults(pos = 'pos',
|
2016-04-16 03:57:23 +05:30
|
|
|
packing = (2,2,2),
|
|
|
|
grid = (0,0,0),
|
|
|
|
size = (0.0,0.0,0.0),
|
|
|
|
)
|
2013-01-22 04:45:23 +05:30
|
|
|
|
|
|
|
(options,filenames) = parser.parse_args()
|
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
options.packing = np.array(options.packing)
|
2016-04-16 03:57:23 +05:30
|
|
|
prefix = 'blowUp{}x{}x{}_'.format(*options.packing)
|
2013-01-22 04:45:23 +05:30
|
|
|
|
2015-09-01 02:52:44 +05:30
|
|
|
# --- loop over input files -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
if filenames == []: filenames = [None]
|
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
for name in filenames:
|
2016-04-16 03:57:23 +05:30
|
|
|
try: table = damask.ASCIItable(name = name,
|
|
|
|
outname = os.path.join(os.path.dirname(name),
|
|
|
|
prefix+os.path.basename(name)) if name else name,
|
|
|
|
buffered = False)
|
2015-09-01 02:52:44 +05:30
|
|
|
except: continue
|
2015-09-24 14:54:42 +05:30
|
|
|
damask.util.report(scriptName,name)
|
2015-09-01 02:52:44 +05:30
|
|
|
|
|
|
|
# ------------------------------------------ read header ------------------------------------------
|
|
|
|
|
|
|
|
table.head_read()
|
|
|
|
|
|
|
|
# ------------------------------------------ sanity checks ----------------------------------------
|
|
|
|
|
2016-04-16 03:57:23 +05:30
|
|
|
errors = []
|
|
|
|
remarks = []
|
|
|
|
|
2016-05-17 05:25:06 +05:30
|
|
|
if table.label_dimension(options.pos) != 3: errors.append('coordinates "{}" are not a vector.'.format(options.pos))
|
2016-04-16 03:57:23 +05:30
|
|
|
|
|
|
|
colElem = table.label_index('elem')
|
|
|
|
|
|
|
|
if remarks != []: damask.util.croak(remarks)
|
|
|
|
if errors != []:
|
|
|
|
damask.util.croak(errors)
|
2016-03-01 22:55:14 +05:30
|
|
|
table.close(dismiss = True)
|
|
|
|
continue
|
2013-01-22 04:45:23 +05:30
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
# --------------- figure out size and grid ---------------------------------------------------------
|
2015-09-01 02:52:44 +05:30
|
|
|
|
2016-04-27 02:19:58 +05:30
|
|
|
table.data_readArray(options.pos)
|
2016-04-24 19:52:07 +05:30
|
|
|
table.data_rewind()
|
2015-09-01 02:52:44 +05:30
|
|
|
|
2018-07-19 20:04:04 +05:30
|
|
|
grid,size = damask.util.coordGridAndSize(table.data)
|
2013-01-22 04:45:23 +05:30
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
packing = np.array(options.packing,'i')
|
|
|
|
outSize = grid*packing
|
2013-01-22 04:45:23 +05:30
|
|
|
|
2016-04-16 03:57:23 +05:30
|
|
|
# ------------------------------------------ assemble header --------------------------------------
|
|
|
|
|
|
|
|
table.info_append(scriptID + '\t' + ' '.join(sys.argv[1:]))
|
2013-01-22 04:45:23 +05:30
|
|
|
table.head_write()
|
|
|
|
|
2014-08-07 00:36:33 +05:30
|
|
|
# ------------------------------------------ process data -------------------------------------------
|
2016-04-16 03:57:23 +05:30
|
|
|
|
2016-05-17 05:25:06 +05:30
|
|
|
data = np.zeros(outSize.tolist()+[len(table.labels(raw = True))])
|
2014-08-07 00:36:33 +05:30
|
|
|
p = np.zeros(3,'i')
|
2013-01-22 04:45:23 +05:30
|
|
|
|
2016-10-25 00:46:29 +05:30
|
|
|
for p[2] in range(grid[2]):
|
|
|
|
for p[1] in range(grid[1]):
|
|
|
|
for p[0] in range(grid[0]):
|
2013-01-22 04:45:23 +05:30
|
|
|
d = p*packing
|
|
|
|
table.data_read()
|
|
|
|
data[d[0]:d[0]+packing[0],
|
2014-04-01 23:22:31 +05:30
|
|
|
d[1]:d[1]+packing[1],
|
2016-04-16 03:57:23 +05:30
|
|
|
d[2]:d[2]+packing[2],
|
2014-08-07 00:36:33 +05:30
|
|
|
: ] = np.tile(np.array(table.data_asFloat(),'d'),packing.tolist()+[1]) # tile to match blowUp voxel size
|
|
|
|
elementSize = size/grid/packing
|
2013-01-22 04:45:23 +05:30
|
|
|
elem = 1
|
2016-10-25 00:46:29 +05:30
|
|
|
for c in range(outSize[2]):
|
|
|
|
for b in range(outSize[1]):
|
|
|
|
for a in range(outSize[0]):
|
2018-07-19 20:04:04 +05:30
|
|
|
data[a,b,c,table.label_indexrange(options.pos)] = [a+0.5,b+0.5,c+0.5]*elementSize
|
2016-04-16 03:57:23 +05:30
|
|
|
if colElem != -1: data[a,b,c,colElem] = elem
|
2013-01-22 04:45:23 +05:30
|
|
|
table.data = data[a,b,c,:].tolist()
|
2014-08-07 00:36:33 +05:30
|
|
|
outputAlive = table.data_write() # output processed line
|
2013-01-22 04:45:23 +05:30
|
|
|
elem += 1
|
|
|
|
|
2015-09-01 02:52:44 +05:30
|
|
|
# ------------------------------------------ output finalization -----------------------------------
|
2013-01-22 04:45:23 +05:30
|
|
|
|
2015-09-01 02:52:44 +05:30
|
|
|
table.close() # close input ASCII table (works for stdin)
|