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
|
|
|
|
2015-04-24 13:37:13 +05:30
|
|
|
import os,sys,string,math,operator
|
2014-07-10 14:57:51 +05:30
|
|
|
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-12-19 00:56:52 +05:30
|
|
|
scriptName = os.path.splitext(scriptID.split()[1])[0]
|
2011-12-21 22:55:31 +05:30
|
|
|
|
2015-04-24 13:37:13 +05:30
|
|
|
#--------------------------------------------------------------------------------------------------
|
|
|
|
#> @brief calculates curl field using differentation in Fourier space
|
|
|
|
#> @todo enable odd resolution
|
|
|
|
#--------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def curlFFT(geomdim,field):
|
|
|
|
grid = np.array(np.shape(field)[0:3])
|
|
|
|
wgt = 1.0/np.array(grid).prod()
|
|
|
|
|
|
|
|
if len(np.shape(field)) == 4:
|
|
|
|
dataType = 'vector'
|
|
|
|
elif len(np.shape(field)) == 5:
|
|
|
|
dataType = 'tensor'
|
|
|
|
|
|
|
|
field_fourier=np.fft.fftpack.rfftn(field,axes=(0,1,2))
|
|
|
|
curl_fourier=np.zeros(field_fourier.shape,'c8')
|
|
|
|
|
|
|
|
# differentiation in Fourier space
|
|
|
|
k_s=np.zeros([3],'i')
|
|
|
|
TWOPIIMG = (0.0+2.0j*math.pi)
|
|
|
|
for i in xrange(grid[0]):
|
|
|
|
k_s[0] = i
|
|
|
|
if(i > grid[0]/2 ): k_s[0] = k_s[0] - grid[0]
|
|
|
|
for j in xrange(grid[1]):
|
|
|
|
k_s[1] = j
|
|
|
|
if(j > grid[1]/2 ): k_s[1] = k_s[1] - grid[1]
|
|
|
|
for k in xrange(grid[2]/2+1):
|
|
|
|
k_s[2] = k
|
|
|
|
if(k > grid[2]/2 ): k_s[2] = k_s[2] - grid[2]
|
|
|
|
xi=np.array([k_s[2]/geomdim[2]+0.0j,k_s[1]/geomdim[1]+0.j,k_s[0]/geomdim[0]+0.j],'c8')
|
|
|
|
if dataType == 'tensor':
|
|
|
|
for l in xrange(3):
|
|
|
|
curl_fourier[i,j,k,0,l] = ( field_fourier[i,j,k,l,2]*xi[1]\
|
|
|
|
-field_fourier[i,j,k,l,1]*xi[2]) *TWOPIIMG
|
|
|
|
curl_fourier[i,j,k,1,l] = (-field_fourier[i,j,k,l,2]*xi[0]\
|
|
|
|
+field_fourier[i,j,k,l,0]*xi[2]) *TWOPIIMG
|
|
|
|
curl_fourier[i,j,k,2,l] = ( field_fourier[i,j,k,l,1]*xi[0]\
|
|
|
|
-field_fourier[i,j,k,l,0]*xi[1]) *TWOPIIMG
|
|
|
|
elif dataType == 'vector':
|
|
|
|
curl_fourier[i,j,k,0] = ( field_fourier[i,j,k,2]*xi[1]\
|
|
|
|
-field_fourier[i,j,k,1]*xi[2]) *TWOPIIMG
|
|
|
|
curl_fourier[i,j,k,1] = (-field_fourier[i,j,k,2]*xi[0]\
|
|
|
|
+field_fourier[i,j,k,0]*xi[2]) *TWOPIIMG
|
|
|
|
curl_fourier[i,j,k,2] = ( field_fourier[i,j,k,1]*xi[0]\
|
|
|
|
-field_fourier[i,j,k,0]*xi[1]) *TWOPIIMG
|
|
|
|
curl=np.fft.fftpack.irfftn(curl_fourier,axes=(0,1,2))
|
|
|
|
if dataType == 'tensor':
|
|
|
|
return curl.reshape([grid.prod(),9])
|
|
|
|
if dataType == 'vector':
|
|
|
|
return curl.reshape([grid.prod(),3])
|
|
|
|
|
|
|
|
|
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-09-12 19:44:55 +05:30
|
|
|
parser.add_option('-c','--coordinates', dest='coords', metavar='string',
|
2012-02-08 16:48:15 +05:30
|
|
|
help='column heading for coordinates [%default]')
|
2014-09-12 19:44:55 +05:30
|
|
|
parser.add_option('-v','--vector', dest='vector', action='extend', metavar='<string LIST>',
|
2011-12-21 22:55:31 +05:30
|
|
|
help='heading of columns containing vector field values')
|
2014-09-12 19:44:55 +05:30
|
|
|
parser.add_option('-t','--tensor', dest='tensor', action='extend', metavar='<string LIST>',
|
2011-12-21 22:55:31 +05:30
|
|
|
help='heading of columns containing tensor field values')
|
2015-03-11 12:52:11 +05:30
|
|
|
parser.set_defaults(coords = 'ipinitialcoord')
|
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
|
2015-04-24 13:37:13 +05:30
|
|
|
'vector': {'shape':[3],
|
|
|
|
'len':3,
|
2011-12-21 22:55:31 +05:30
|
|
|
'label':[]},
|
2015-04-24 13:37:13 +05:30
|
|
|
'tensor': {'shape':[3,3],
|
|
|
|
'len':9,
|
2011-12-21 22:55:31 +05:30
|
|
|
'label':[]},
|
|
|
|
}
|
|
|
|
|
2015-04-24 13:37:13 +05:30
|
|
|
if options.vector != None: datainfo['vector']['label'] = options.vector
|
|
|
|
if options.tensor != None: datainfo['tensor']['label'] = options.tensor
|
2011-12-21 22:55:31 +05:30
|
|
|
|
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-08-06 20:55:18 +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
|
|
|
|
2015-04-24 13:37:13 +05:30
|
|
|
# --------------- figure out columns for coordinates and vector/tensor fields to process ---------
|
|
|
|
column = defaultdict(dict)
|
|
|
|
pos = 0 # when reading in the table via data_readArray, the first key is at colum 0
|
2012-02-08 16:48:15 +05:30
|
|
|
try:
|
2015-04-24 13:37:13 +05:30
|
|
|
column['coords'] = pos
|
|
|
|
pos+=3 # advance by data len (columns) for next key
|
|
|
|
keys=['%i_%s'%(i+1,options.coords) for i in xrange(3)] # store labels for column keys
|
2012-02-08 16:48:15 +05:30
|
|
|
except ValueError:
|
2015-03-09 18:22:43 +05:30
|
|
|
try:
|
2015-04-24 13:37:13 +05:30
|
|
|
column['coords'] = pos
|
|
|
|
pos+=3 # advance by data len (columns) for next key
|
|
|
|
directions = ['x','y','z']
|
|
|
|
keys=['%s.%s'%(options.coords,directions[i]) for i in xrange(3)] # store labels for column keys
|
2015-03-09 18:22:43 +05:30
|
|
|
except ValueError:
|
2015-04-24 13:37:13 +05:30
|
|
|
file['croak'].write('no coordinate data (1_%s) found...\n'%options.coords)
|
2015-03-09 18:22:43 +05:30
|
|
|
continue
|
2012-02-08 16:48:15 +05:30
|
|
|
|
2015-04-24 13:37:13 +05:30
|
|
|
active = defaultdict(list)
|
|
|
|
for datatype,info in datainfo.items():
|
|
|
|
for label in info['label']:
|
|
|
|
key = '1_%s'%label
|
|
|
|
if key not in table.labels:
|
|
|
|
file['croak'].write('column %s not found...\n'%key)
|
|
|
|
else:
|
|
|
|
active[datatype].append(label)
|
|
|
|
column[label] = pos
|
|
|
|
pos+=datainfo[datatype]['len']
|
|
|
|
keys+=['%i_%s'%(i+1,label) for i in xrange(datainfo[datatype]['len'])] # extend ASCII header with new labels
|
|
|
|
|
|
|
|
table.data_readArray(keys)
|
|
|
|
|
|
|
|
# --------------- assemble new header (columns containing curl) -----------------------------------
|
|
|
|
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
|
|
|
|
table.head_write()
|
|
|
|
|
|
|
|
# --------------- figure out size and grid ---------------------------------------------------------
|
2014-08-06 20:55:18 +05:30
|
|
|
coords = [{},{},{}]
|
2015-04-24 13:37:13 +05:30
|
|
|
for i in xrange(table.data.shape[0]):
|
2012-02-08 16:48:15 +05:30
|
|
|
for j in xrange(3):
|
2015-04-24 13:37:13 +05:30
|
|
|
coords[j][str(table.data[i,j])] = True # remember coordinate along x,y,z
|
2014-08-06 20:55:18 +05:30
|
|
|
grid = np.array([len(coords[0]),\
|
|
|
|
len(coords[1]),\
|
|
|
|
len(coords[2]),],'i') # grid is number of distinct coordinates found
|
|
|
|
size = grid/np.maximum(np.ones(3,'d'),grid-1.0)* \
|
|
|
|
np.array([max(map(float,coords[0].keys()))-min(map(float,coords[0].keys())),\
|
|
|
|
max(map(float,coords[1].keys()))-min(map(float,coords[1].keys())),\
|
|
|
|
max(map(float,coords[2].keys()))-min(map(float,coords[2].keys())),\
|
|
|
|
],'d') # size from bounding box, corrected for cell-centeredness
|
|
|
|
for i, points in enumerate(grid):
|
|
|
|
if points == 1:
|
|
|
|
mask = np.ones(3,dtype=bool)
|
|
|
|
mask[i]=0
|
|
|
|
size[i] = min(size[mask]/grid[mask]) # third spacing equal to smaller of other spacing
|
2012-02-08 16:48:15 +05:30
|
|
|
|
2014-07-10 14:57:51 +05:30
|
|
|
|
|
|
|
# ------------------------------------------ process value field -----------------------------------
|
2015-04-24 13:37:13 +05:30
|
|
|
curl = defaultdict(dict)
|
|
|
|
for datatype,labels in active.items(): # loop over vector,tensor
|
|
|
|
for label in labels: # loop over all requested curls
|
|
|
|
curl[datatype][label] = curlFFT(size[::-1], # we need to reverse order here, because x is fastest,ie rightmost, but leftmost in our x,y,z notation
|
|
|
|
table.data[:,column[label]:column[label]+datainfo[datatype]['len']].\
|
|
|
|
reshape([grid[2],grid[1],grid[0]]+datainfo[datatype]['shape']))
|
2014-08-06 20:55:18 +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
|
|
|
|
for datatype,labels in active.items(): # loop over vector,tensor
|
|
|
|
for label in labels: # loop over all requested norms
|
2015-04-24 13:37:13 +05:30
|
|
|
table.data_append(list(curl[datatype][label][idx,:]))
|
|
|
|
idx+=1
|
2014-08-06 20:55:18 +05:30
|
|
|
outputAlive = table.data_write() # output processed line
|
2012-01-20 02:11:56 +05:30
|
|
|
|
2014-08-06 20:55:18 +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-08-22 22:28:53 +05:30
|
|
|
table.input_close() # close input ASCII table
|
|
|
|
table.output_close() # close output ASCII table
|
2014-07-16 22:11:04 +05:30
|
|
|
os.rename(file['name']+'_tmp',file['name']) # overwrite old one with tmp new
|