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
|
|
|
|
2016-03-01 22:55:14 +05:30
|
|
|
import os,sys,math
|
2014-07-10 14:57:51 +05:30
|
|
|
import numpy as np
|
|
|
|
from optparse import OptionParser
|
|
|
|
import damask
|
2011-12-21 22:55:31 +05:30
|
|
|
|
2016-01-27 22:36:00 +05:30
|
|
|
scriptName = os.path.splitext(os.path.basename(__file__))[0]
|
|
|
|
scriptID = ' '.join([scriptName,damask.version])
|
2011-12-21 22:55:31 +05:30
|
|
|
|
2015-04-24 13:37:13 +05:30
|
|
|
def curlFFT(geomdim,field):
|
2016-03-17 00:25:56 +05:30
|
|
|
grid = np.array(np.shape(field)[2::-1])
|
2016-03-17 00:42:53 +05:30
|
|
|
N = grid.prod() # field size
|
|
|
|
n = np.array(np.shape(field)[3:]).prod() # data size
|
2015-04-24 13:37:13 +05:30
|
|
|
|
2016-03-17 00:25:56 +05:30
|
|
|
if n == 3: dataType = 'vector'
|
|
|
|
elif n == 9: dataType = 'tensor'
|
2015-04-24 13:37:13 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
field_fourier = np.fft.fftpack.rfftn(field,axes=(0,1,2))
|
|
|
|
curl_fourier = np.zeros(field_fourier.shape,'c16')
|
2015-04-24 13:37:13 +05:30
|
|
|
|
|
|
|
# differentiation in Fourier space
|
2015-08-08 00:33:26 +05:30
|
|
|
k_s = np.zeros([3],'i')
|
2016-03-17 00:25:56 +05:30
|
|
|
TWOPIIMG = 2.0j*math.pi
|
2015-12-15 11:46:47 +05:30
|
|
|
for i in xrange(grid[2]):
|
2015-04-24 13:37:13 +05:30
|
|
|
k_s[0] = i
|
2016-03-17 00:42:53 +05:30
|
|
|
if grid[2]%2 == 0 and i == grid[2]//2: k_s[0] = 0 # for even grid, set Nyquist freq to 0 (Johnson, MIT, 2011)
|
2016-03-17 00:25:56 +05:30
|
|
|
elif i > grid[2]//2: k_s[0] -= grid[2]
|
2015-09-05 17:21:36 +05:30
|
|
|
|
2015-04-24 13:37:13 +05:30
|
|
|
for j in xrange(grid[1]):
|
|
|
|
k_s[1] = j
|
2016-03-17 00:42:53 +05:30
|
|
|
if grid[1]%2 == 0 and j == grid[1]//2: k_s[1] = 0 # for even grid, set Nyquist freq to 0 (Johnson, MIT, 2011)
|
2016-03-17 00:25:56 +05:30
|
|
|
elif j > grid[1]//2: k_s[1] -= grid[1]
|
2015-09-05 17:21:36 +05:30
|
|
|
|
2015-12-15 11:46:47 +05:30
|
|
|
for k in xrange(grid[0]//2+1):
|
2015-04-24 13:37:13 +05:30
|
|
|
k_s[2] = k
|
2016-03-17 00:42:53 +05:30
|
|
|
if grid[0]%2 == 0 and k == grid[0]//2: k_s[2] = 0 # for even grid, set Nyquist freq to 0 (Johnson, MIT, 2011)
|
2016-03-17 00:25:56 +05:30
|
|
|
|
2016-03-17 00:42:53 +05:30
|
|
|
xi = (k_s/geomdim)[2::-1].astype('c16') # reversing the field input order
|
2015-09-05 17:21:36 +05:30
|
|
|
|
2015-04-24 13:37:13 +05:30
|
|
|
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
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
return np.fft.fftpack.irfftn(curl_fourier,axes=(0,1,2)).reshape([N,n])
|
2015-04-24 13:37:13 +05:30
|
|
|
|
|
|
|
|
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
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-c','--coordinates',
|
|
|
|
dest = 'coords',
|
2016-04-16 03:57:23 +05:30
|
|
|
type = 'string', metavar = 'string',
|
|
|
|
help = 'column label of coordinates [%default]')
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-v','--vector',
|
|
|
|
dest = 'vector',
|
|
|
|
action = 'extend', metavar = '<string LIST>',
|
2016-04-16 03:57:23 +05:30
|
|
|
help = 'column label(s) of vector field values')
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-t','--tensor',
|
|
|
|
dest = 'tensor',
|
|
|
|
action = 'extend', metavar = '<string LIST>',
|
2016-04-16 03:57:23 +05:30
|
|
|
help = 'column label(s) of tensor field values')
|
2015-08-08 00:33:26 +05:30
|
|
|
|
2016-04-16 03:57:23 +05:30
|
|
|
parser.set_defaults(coords = 'pos',
|
2015-08-08 00:33:26 +05:30
|
|
|
)
|
2011-12-21 22:55:31 +05:30
|
|
|
|
|
|
|
(options,filenames) = parser.parse_args()
|
|
|
|
|
2016-03-02 01:14:43 +05:30
|
|
|
if options.vector is None and options.tensor is None:
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.error('no data column specified.')
|
|
|
|
|
|
|
|
# --- loop over input files -------------------------------------------------------------------------
|
|
|
|
|
2015-08-13 14:02:09 +05:30
|
|
|
if filenames == []: filenames = [None]
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
for name in filenames:
|
2016-03-17 00:25:56 +05:30
|
|
|
try: table = damask.ASCIItable(name = name,buffered = False)
|
|
|
|
except: continue
|
2015-09-24 14:54:42 +05:30
|
|
|
damask.util.report(scriptName,name)
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
# ------------------------------------------ read header ------------------------------------------
|
|
|
|
|
|
|
|
table.head_read()
|
|
|
|
|
|
|
|
# ------------------------------------------ sanity checks ----------------------------------------
|
|
|
|
|
|
|
|
items = {
|
|
|
|
'tensor': {'dim': 9, 'shape': [3,3], 'labels':options.tensor, 'active':[], 'column': []},
|
|
|
|
'vector': {'dim': 3, 'shape': [3], 'labels':options.vector, 'active':[], 'column': []},
|
|
|
|
}
|
|
|
|
errors = []
|
|
|
|
remarks = []
|
|
|
|
column = {}
|
|
|
|
|
|
|
|
if table.label_dimension(options.coords) != 3: errors.append('coordinates {} are not a vector.'.format(options.coords))
|
2015-12-15 11:46:47 +05:30
|
|
|
else: colCoord = table.label_index(options.coords)
|
2015-05-10 16:59:11 +05:30
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
for type, data in items.iteritems():
|
2015-08-13 14:02:09 +05:30
|
|
|
for what in (data['labels'] if data['labels'] is not None else []):
|
2015-08-08 00:33:26 +05:30
|
|
|
dim = table.label_dimension(what)
|
|
|
|
if dim != data['dim']: remarks.append('column {} is not a {}.'.format(what,type))
|
2015-04-24 13:37:13 +05:30
|
|
|
else:
|
2015-08-08 00:33:26 +05:30
|
|
|
items[type]['active'].append(what)
|
|
|
|
items[type]['column'].append(table.label_index(what))
|
2015-04-24 13:37:13 +05:30
|
|
|
|
2015-09-24 14:54:42 +05:30
|
|
|
if remarks != []: damask.util.croak(remarks)
|
2015-08-08 00:33:26 +05:30
|
|
|
if errors != []:
|
2015-09-24 14:54:42 +05:30
|
|
|
damask.util.croak(errors)
|
2015-08-08 00:33:26 +05:30
|
|
|
table.close(dismiss = True)
|
|
|
|
continue
|
|
|
|
|
|
|
|
# ------------------------------------------ assemble header --------------------------------------
|
2015-04-24 13:37:13 +05:30
|
|
|
|
2015-05-10 16:59:11 +05:30
|
|
|
table.info_append(scriptID + '\t' + ' '.join(sys.argv[1:]))
|
2015-08-08 00:33:26 +05:30
|
|
|
for type, data in items.iteritems():
|
|
|
|
for label in data['active']:
|
|
|
|
table.labels_append(['{}_curlFFT({})'.format(i+1,label) for i in xrange(data['dim'])]) # extend ASCII header with new labels
|
2015-04-24 13:37:13 +05:30
|
|
|
table.head_write()
|
|
|
|
|
|
|
|
# --------------- figure out size and grid ---------------------------------------------------------
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
table.data_readArray()
|
|
|
|
|
2015-12-15 11:46:47 +05:30
|
|
|
coords = [np.unique(table.data[:,colCoord+i]) for i in xrange(3)]
|
|
|
|
mincorner = np.array(map(min,coords))
|
|
|
|
maxcorner = np.array(map(max,coords))
|
|
|
|
grid = np.array(map(len,coords),'i')
|
|
|
|
size = grid/np.maximum(np.ones(3,'d'), grid-1.0) * (maxcorner-mincorner) # size from edge to edge = dim * n/(n-1)
|
|
|
|
size = np.where(grid > 1, size, min(size[grid > 1]/grid[grid > 1]))
|
2014-07-10 14:57:51 +05:30
|
|
|
|
|
|
|
# ------------------------------------------ process value field -----------------------------------
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
stack = [table.data]
|
|
|
|
for type, data in items.iteritems():
|
|
|
|
for i,label in enumerate(data['active']):
|
2016-03-17 00:42:53 +05:30
|
|
|
# we need to reverse order here, because x is fastest,ie rightmost, but leftmost in our x,y,z notation
|
|
|
|
stack.append(curlFFT(size[::-1],
|
2016-03-17 00:25:56 +05:30
|
|
|
table.data[:,data['column'][i]:data['column'][i]+data['dim']].
|
|
|
|
reshape([grid[2],grid[1],grid[0]]+data['shape'])))
|
2015-05-10 16:59:11 +05:30
|
|
|
|
|
|
|
# ------------------------------------------ output result -----------------------------------------
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
if len(stack) > 1: table.data = np.hstack(tuple(stack))
|
2015-05-10 16:59:11 +05:30
|
|
|
table.data_writeArray('%.12g')
|
2015-08-08 00:33:26 +05:30
|
|
|
|
|
|
|
# ------------------------------------------ output finalization -----------------------------------
|
|
|
|
|
|
|
|
table.close() # close input ASCII table (works for stdin)
|