2019-04-13 14:41:32 +05:30
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2019-09-14 04:31:30 +05:30
|
|
|
import os
|
2019-04-13 14:41:32 +05:30
|
|
|
import argparse
|
2019-09-14 04:31:30 +05:30
|
|
|
|
|
|
|
import numpy as np
|
|
|
|
import vtk
|
2019-04-17 23:27:16 +05:30
|
|
|
from vtk.util import numpy_support
|
2019-04-13 14:41:32 +05:30
|
|
|
|
2019-09-14 04:31:30 +05:30
|
|
|
import damask
|
|
|
|
|
2019-04-13 14:41:32 +05:30
|
|
|
scriptName = os.path.splitext(os.path.basename(__file__))[0]
|
|
|
|
scriptID = ' '.join([scriptName,damask.version])
|
|
|
|
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
|
|
|
|
#ToDo: We need to decide on a way of handling arguments of variable lentght
|
|
|
|
#https://stackoverflow.com/questions/15459997/passing-integer-lists-to-python
|
|
|
|
|
|
|
|
#parser.add_argument('--version', action='version', version='%(prog)s {}'.format(scriptID))
|
|
|
|
parser.add_argument('filenames', nargs='+',
|
|
|
|
help='DADF5 files')
|
2019-05-07 17:00:05 +05:30
|
|
|
parser.add_argument('-d','--dir', dest='dir',default='postProc',metavar='string',
|
|
|
|
help='name of subdirectory to hold output')
|
2019-05-16 03:57:06 +05:30
|
|
|
parser.add_argument('--mat', nargs='+',
|
2019-09-16 03:32:16 +05:30
|
|
|
help='labels for materialpoint',dest='mat')
|
2019-05-16 03:57:06 +05:30
|
|
|
parser.add_argument('--con', nargs='+',
|
2019-09-16 03:32:16 +05:30
|
|
|
help='labels for constituent',dest='con')
|
2019-04-13 14:41:32 +05:30
|
|
|
|
|
|
|
options = parser.parse_args()
|
|
|
|
|
2019-05-16 03:57:06 +05:30
|
|
|
if options.mat is None: options.mat=[]
|
|
|
|
if options.con is None: options.con=[]
|
2019-04-13 14:41:32 +05:30
|
|
|
|
|
|
|
# --- loop over input files ------------------------------------------------------------------------
|
|
|
|
|
|
|
|
for filename in options.filenames:
|
2019-04-18 15:28:17 +05:30
|
|
|
results = damask.DADF5(filename)
|
2019-04-13 14:41:32 +05:30
|
|
|
|
2019-04-18 15:28:17 +05:30
|
|
|
if results.structured: # for grid solvers use rectilinear grid
|
2019-04-13 14:41:32 +05:30
|
|
|
rGrid = vtk.vtkRectilinearGrid()
|
|
|
|
coordArray = [vtk.vtkDoubleArray(),
|
|
|
|
vtk.vtkDoubleArray(),
|
|
|
|
vtk.vtkDoubleArray(),
|
|
|
|
]
|
|
|
|
|
2019-04-18 15:28:17 +05:30
|
|
|
rGrid.SetDimensions(*(results.grid+1))
|
2019-04-13 14:41:32 +05:30
|
|
|
for dim in [0,1,2]:
|
2019-04-18 15:28:17 +05:30
|
|
|
for c in np.linspace(0,results.size[dim],1+results.grid[dim]):
|
2019-04-13 14:41:32 +05:30
|
|
|
coordArray[dim].InsertNextValue(c)
|
|
|
|
|
|
|
|
rGrid.SetXCoordinates(coordArray[0])
|
|
|
|
rGrid.SetYCoordinates(coordArray[1])
|
|
|
|
rGrid.SetZCoordinates(coordArray[2])
|
|
|
|
|
|
|
|
|
2019-04-18 15:28:17 +05:30
|
|
|
for i,inc in enumerate(results.increments):
|
|
|
|
print('Output step {}/{}'.format(i+1,len(results.increments)))
|
|
|
|
vtk_data = []
|
2019-09-14 10:19:22 +05:30
|
|
|
results.visible['increments'] = [inc]
|
2019-05-16 15:14:03 +05:30
|
|
|
|
2019-09-14 10:11:35 +05:30
|
|
|
results.materialpoint_set([])
|
|
|
|
results.constituent_set(results.constituents)
|
2019-05-16 03:57:06 +05:30
|
|
|
for label in options.con:
|
2019-05-16 15:14:03 +05:30
|
|
|
|
2019-09-14 10:11:35 +05:30
|
|
|
for o in results.constituent_output_iter():
|
2019-04-18 15:28:17 +05:30
|
|
|
if o != 'generic':
|
2019-09-14 10:11:35 +05:30
|
|
|
for c in results.constituent_iter():
|
2019-04-18 15:28:17 +05:30
|
|
|
x = results.get_dataset_location(label)
|
|
|
|
if len(x) == 0:
|
|
|
|
continue
|
|
|
|
array = results.read_dataset(x,0)
|
|
|
|
shape = [array.shape[0],np.product(array.shape[1:])]
|
|
|
|
vtk_data.append(numpy_support.numpy_to_vtk(num_array=array.reshape(shape),deep=True,array_type= vtk.VTK_DOUBLE))
|
|
|
|
vtk_data[-1].SetName('1_'+x[0].split('/',1)[1])
|
|
|
|
rGrid.GetCellData().AddArray(vtk_data[-1])
|
|
|
|
else:
|
2019-07-16 05:37:04 +05:30
|
|
|
x = results.get_dataset_location(label)
|
|
|
|
if len(x) == 0:
|
|
|
|
continue
|
|
|
|
array = results.read_dataset(x,0)
|
|
|
|
shape = [array.shape[0],np.product(array.shape[1:])]
|
|
|
|
vtk_data.append(numpy_support.numpy_to_vtk(num_array=array.reshape(shape),deep=True,array_type= vtk.VTK_DOUBLE))
|
|
|
|
vtk_data[-1].SetName('1_'+x[0].split('/')[1]+'/generic/'+label)
|
|
|
|
rGrid.GetCellData().AddArray(vtk_data[-1])
|
|
|
|
|
2019-09-14 10:11:35 +05:30
|
|
|
results.constituent_set([])
|
|
|
|
results.materialpoint_set(results.materialpoints)
|
2019-07-16 05:37:04 +05:30
|
|
|
for label in options.mat:
|
2019-09-14 10:11:35 +05:30
|
|
|
for o in results.materialpoint_output_iter():
|
2019-07-16 05:37:04 +05:30
|
|
|
if o != 'generic':
|
2019-09-14 10:11:35 +05:30
|
|
|
for m in results.materialpoint_iter():
|
2019-07-16 05:37:04 +05:30
|
|
|
x = results.get_dataset_location(label)
|
|
|
|
if len(x) == 0:
|
|
|
|
continue
|
|
|
|
array = results.read_dataset(x,0)
|
|
|
|
shape = [array.shape[0],np.product(array.shape[1:])]
|
|
|
|
vtk_data.append(numpy_support.numpy_to_vtk(num_array=array.reshape(shape),deep=True,array_type= vtk.VTK_DOUBLE))
|
|
|
|
vtk_data[-1].SetName('1_'+x[0].split('/',1)[1])
|
|
|
|
rGrid.GetCellData().AddArray(vtk_data[-1])
|
|
|
|
else:
|
2019-04-18 15:28:17 +05:30
|
|
|
x = results.get_dataset_location(label)
|
|
|
|
if len(x) == 0:
|
|
|
|
continue
|
|
|
|
array = results.read_dataset(x,0)
|
|
|
|
shape = [array.shape[0],np.product(array.shape[1:])]
|
|
|
|
vtk_data.append(numpy_support.numpy_to_vtk(num_array=array.reshape(shape),deep=True,array_type= vtk.VTK_DOUBLE))
|
|
|
|
vtk_data[-1].SetName('1_'+x[0].split('/')[1]+'/generic/'+label)
|
|
|
|
rGrid.GetCellData().AddArray(vtk_data[-1])
|
|
|
|
|
|
|
|
if results.structured:
|
2019-04-13 14:41:32 +05:30
|
|
|
writer = vtk.vtkXMLRectilinearGridWriter()
|
|
|
|
|
2019-05-07 17:00:05 +05:30
|
|
|
|
|
|
|
dirname = os.path.abspath(os.path.join(os.path.dirname(filename),options.dir))
|
|
|
|
try:
|
|
|
|
os.mkdir(dirname)
|
|
|
|
except FileExistsError:
|
|
|
|
pass
|
2019-05-08 21:01:18 +05:30
|
|
|
file_out = '{}_inc{:04d}.{}'.format(filename.split('.')[0],inc['inc'],writer.GetDefaultFileExtension())
|
2019-05-07 17:00:05 +05:30
|
|
|
|
2019-04-13 14:41:32 +05:30
|
|
|
writer.SetCompressorTypeToZLib()
|
|
|
|
writer.SetDataModeToBinary()
|
2019-05-07 17:00:05 +05:30
|
|
|
writer.SetFileName(os.path.join(dirname,file_out))
|
2019-04-18 15:28:17 +05:30
|
|
|
if results.structured:
|
2019-04-13 14:41:32 +05:30
|
|
|
writer.SetInputData(rGrid)
|
|
|
|
|
|
|
|
writer.Write()
|