2012-02-07 18:39:10 +05:30
|
|
|
#!/usr/bin/env python
|
2014-04-02 00:11:14 +05:30
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
2011-12-21 22:55:31 +05:30
|
|
|
|
2014-07-10 14:57:51 +05:30
|
|
|
import os,re,sys,math,string
|
|
|
|
import numpy as np
|
2014-07-16 22:11:04 +05:30
|
|
|
from collections import defaultdict
|
2014-07-10 14:57:51 +05:30
|
|
|
from optparse import OptionParser
|
|
|
|
import damask
|
2011-12-21 22:55:31 +05:30
|
|
|
|
2014-08-06 18:57:09 +05:30
|
|
|
scriptID = string.replace('$Id$','\n','\\n')
|
2014-07-10 14:57:51 +05:30
|
|
|
scriptName = scriptID.split()[1]
|
2011-12-21 22:55:31 +05:30
|
|
|
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
2014-07-10 14:57:51 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [file[s]]', description = """
|
2011-12-21 22:55:31 +05:30
|
|
|
Add column(s) containing curl of requested column(s).
|
|
|
|
Operates on periodic ordered three-dimensional data sets.
|
|
|
|
Deals with both vector- and tensor-valued fields.
|
|
|
|
|
2014-08-06 18:57:09 +05:30
|
|
|
""", version = scriptID)
|
2011-12-21 22:55:31 +05:30
|
|
|
|
2014-07-25 00:17:09 +05:30
|
|
|
parser.add_option('-c','--coordinates', dest='coords', action='store', type='string', metavar='string',
|
2012-02-08 16:48:15 +05:30
|
|
|
help='column heading for coordinates [%default]')
|
2014-07-25 00:17:09 +05:30
|
|
|
parser.add_option('-v','--vector', dest='vector', action='extend', type='string', metavar='<string LIST>',
|
2011-12-21 22:55:31 +05:30
|
|
|
help='heading of columns containing vector field values')
|
2014-07-25 00:17:09 +05:30
|
|
|
parser.add_option('-t','--tensor', dest='tensor', action='extend', type='string', metavar='<string LIST>',
|
2011-12-21 22:55:31 +05:30
|
|
|
help='heading of columns containing tensor field values')
|
2012-02-08 16:48:15 +05:30
|
|
|
parser.set_defaults(coords = 'ip')
|
2011-12-21 22:55:31 +05:30
|
|
|
parser.set_defaults(vector = [])
|
|
|
|
parser.set_defaults(tensor = [])
|
|
|
|
|
|
|
|
(options,filenames) = parser.parse_args()
|
|
|
|
|
|
|
|
if len(options.vector) + len(options.tensor) == 0:
|
|
|
|
parser.error('no data column specified...')
|
|
|
|
|
2014-07-10 14:57:51 +05:30
|
|
|
datainfo = { # list of requested labels per datatype
|
2011-12-21 22:55:31 +05:30
|
|
|
'vector': {'len':3,
|
|
|
|
'label':[]},
|
|
|
|
'tensor': {'len':9,
|
|
|
|
'label':[]},
|
|
|
|
}
|
|
|
|
|
|
|
|
if options.vector != None: datainfo['vector']['label'] += options.vector
|
|
|
|
if options.tensor != None: datainfo['tensor']['label'] += options.tensor
|
|
|
|
|
2014-07-10 14:57:51 +05:30
|
|
|
# ------------------------------------------ setup file handles ------------------------------------
|
2011-12-21 22:55:31 +05:30
|
|
|
files = []
|
2014-07-16 22:11:04 +05:30
|
|
|
for name in filenames:
|
|
|
|
if os.path.exists(name):
|
|
|
|
files.append({'name':name, 'input':open(name), 'output':open(name+'_tmp','w'), 'croak':sys.stderr})
|
2011-12-21 22:55:31 +05:30
|
|
|
|
2014-07-10 14:57:51 +05:30
|
|
|
#--- loop over input files ------------------------------------------------------------------------
|
2011-12-21 22:55:31 +05:30
|
|
|
for file in files:
|
2014-07-16 22:11:04 +05:30
|
|
|
file['croak'].write('\033[1m'+scriptName+'\033[0m: '+file['name']+'\n')
|
2011-12-21 22:55:31 +05:30
|
|
|
|
2014-07-16 22:11:04 +05:30
|
|
|
table = damask.ASCIItable(file['input'],file['output'],True) # make unbuffered ASCII_table
|
2014-07-10 14:57:51 +05:30
|
|
|
table.head_read() # read ASCII header info
|
2014-08-06 18:57:09 +05:30
|
|
|
table.info_append(scriptID + '\t' + ' '.join(sys.argv[1:]))
|
2011-12-21 22:55:31 +05:30
|
|
|
|
2014-07-10 14:57:51 +05:30
|
|
|
# --------------- figure out dimension and resolution ----------------------------------------------
|
2012-02-08 16:48:15 +05:30
|
|
|
try:
|
2014-07-10 14:57:51 +05:30
|
|
|
locationCol = table.labels.index('%s.x'%options.coords) # columns containing location data
|
2012-02-08 16:48:15 +05:30
|
|
|
except ValueError:
|
2014-08-06 18:57:09 +05:30
|
|
|
file['croak'].write('no coordinate data (%s.x) found...\n'%options.coords)
|
2012-02-08 16:48:15 +05:30
|
|
|
continue
|
|
|
|
|
|
|
|
grid = [{},{},{}]
|
2014-07-16 22:11:04 +05:30
|
|
|
while table.data_read(): # read next data line of ASCII table
|
2012-02-08 16:48:15 +05:30
|
|
|
for j in xrange(3):
|
2014-07-16 22:11:04 +05:30
|
|
|
grid[j][str(table.data[locationCol+j])] = True # remember coordinate along x,y,z
|
2014-07-10 14:57:51 +05:30
|
|
|
resolution = np.array([len(grid[0]),\
|
2014-07-16 22:11:04 +05:30
|
|
|
len(grid[1]),\
|
|
|
|
len(grid[2]),],'i') # resolution is number of distinct coordinates found
|
2014-07-10 14:57:51 +05:30
|
|
|
dimension = resolution/np.maximum(np.ones(3,'d'),resolution-1.0)* \
|
|
|
|
np.array([max(map(float,grid[0].keys()))-min(map(float,grid[0].keys())),\
|
2014-07-16 22:11:04 +05:30
|
|
|
max(map(float,grid[1].keys()))-min(map(float,grid[1].keys())),\
|
|
|
|
max(map(float,grid[2].keys()))-min(map(float,grid[2].keys())),\
|
|
|
|
],'d') # dimension from bounding box, corrected for cell-centeredness
|
2012-02-08 16:48:15 +05:30
|
|
|
if resolution[2] == 1:
|
|
|
|
dimension[2] = min(dimension[:2]/resolution[:2])
|
|
|
|
N = resolution.prod()
|
|
|
|
|
2014-07-16 22:11:04 +05:30
|
|
|
# --------------- figure out columns to process --------------------------------------------------
|
|
|
|
active = defaultdict(list)
|
|
|
|
column = defaultdict(dict)
|
|
|
|
values = defaultdict(dict)
|
|
|
|
curl = defaultdict(dict)
|
2011-12-21 22:55:31 +05:30
|
|
|
|
|
|
|
for datatype,info in datainfo.items():
|
|
|
|
for label in info['label']:
|
2014-08-04 23:23:41 +05:30
|
|
|
key = '1_%s'%label
|
2012-01-20 02:11:56 +05:30
|
|
|
if key not in table.labels:
|
2014-07-22 01:25:05 +05:30
|
|
|
file['croak'].write('column %s not found...\n'%key)
|
2011-12-21 22:55:31 +05:30
|
|
|
else:
|
|
|
|
active[datatype].append(label)
|
2014-07-10 14:57:51 +05:30
|
|
|
column[datatype][label] = table.labels.index(key) # remember columns of requested data
|
|
|
|
values[datatype][label] = np.array([0.0 for i in xrange(N*datainfo[datatype]['len'])]).\
|
2012-02-08 16:48:15 +05:30
|
|
|
reshape(list(resolution)+[datainfo[datatype]['len']//3,3])
|
2014-07-10 14:57:51 +05:30
|
|
|
curl[datatype][label] = np.array([0.0 for i in xrange(N*datainfo[datatype]['len'])]).\
|
2012-02-08 16:48:15 +05:30
|
|
|
reshape(list(resolution)+[datainfo[datatype]['len']//3,3])
|
2011-12-21 22:55:31 +05:30
|
|
|
|
|
|
|
# ------------------------------------------ assemble header ---------------------------------------
|
2014-07-22 01:25:05 +05:30
|
|
|
for datatype,labels in active.items(): # loop over vector,tensor
|
|
|
|
for label in labels:
|
|
|
|
table.labels_append(['%i_curlFFT(%s)'%(i+1,label)
|
|
|
|
for i in xrange(datainfo[datatype]['len'])]) # extend ASCII header with new labels
|
2012-01-20 02:11:56 +05:30
|
|
|
table.head_write()
|
2011-12-21 22:55:31 +05:30
|
|
|
|
2014-07-10 14:57:51 +05:30
|
|
|
# ------------------------------------------ read value field --------------------------------------
|
2012-02-08 16:48:15 +05:30
|
|
|
table.data_rewind()
|
2011-12-21 22:55:31 +05:30
|
|
|
idx = 0
|
2014-07-10 14:57:51 +05:30
|
|
|
while table.data_read(): # read next data line of ASCII table
|
2014-07-16 22:11:04 +05:30
|
|
|
(x,y,z) = damask.util.gridLocation(idx,resolution) # figure out (x,y,z) position from line count
|
2011-12-21 22:55:31 +05:30
|
|
|
idx += 1
|
2014-07-10 14:57:51 +05:30
|
|
|
for datatype,labels in active.items(): # loop over vector,tensor
|
|
|
|
for label in labels: # loop over all requested curls
|
|
|
|
values[datatype][label][x,y,z] = np.array(
|
|
|
|
map(float,table.data[column[datatype][label]:
|
|
|
|
column[datatype][label]+datainfo[datatype]['len']]),'d') \
|
|
|
|
.reshape(datainfo[datatype]['len']//3,3)
|
|
|
|
|
|
|
|
# ------------------------------------------ process value field -----------------------------------
|
|
|
|
for datatype,labels in active.items(): # loop over vector,tensor
|
|
|
|
for label in labels: # loop over all requested curls
|
2012-08-27 13:34:47 +05:30
|
|
|
curl[datatype][label] = damask.core.math.curlFFT(dimension,values[datatype][label])
|
2012-01-20 02:11:56 +05:30
|
|
|
|
2014-07-10 14:57:51 +05:30
|
|
|
# ------------------------------------------ process data ---------------------------------------
|
2012-01-20 02:11:56 +05:30
|
|
|
table.data_rewind()
|
|
|
|
idx = 0
|
2014-07-16 22:11:04 +05:30
|
|
|
outputAlive = True
|
2014-07-10 14:57:51 +05:30
|
|
|
while outputAlive and table.data_read(): # read next data line of ASCII table
|
2014-07-16 22:11:04 +05:30
|
|
|
(x,y,z) = damask.util.gridLocation(idx,resolution) # figure out (x,y,z) position from line count
|
2012-01-20 02:11:56 +05:30
|
|
|
idx += 1
|
2014-07-10 14:57:51 +05:30
|
|
|
for datatype,labels in active.items(): # loop over vector,tensor
|
|
|
|
for label in labels: # loop over all requested norms
|
2012-01-20 02:11:56 +05:30
|
|
|
table.data_append(list(curl[datatype][label][x,y,z].reshape(datainfo[datatype]['len'])))
|
2014-07-10 14:57:51 +05:30
|
|
|
outputAlive = table.data_write() # output processed line
|
2012-01-20 02:11:56 +05:30
|
|
|
|
2011-12-21 22:55:31 +05:30
|
|
|
# ------------------------------------------ output result ---------------------------------------
|
2014-07-10 14:57:51 +05:30
|
|
|
outputAlive and table.output_flush() # just in case of buffered ASCII table
|
2011-12-21 22:55:31 +05:30
|
|
|
|
2014-07-10 14:57:51 +05:30
|
|
|
file['input'].close() # close input ASCII table (works for stdin)
|
|
|
|
file['output'].close() # close output ASCII table (works for stdout)
|
2014-07-16 22:11:04 +05:30
|
|
|
os.rename(file['name']+'_tmp',file['name']) # overwrite old one with tmp new
|