2019-02-14 06:09:54 +05:30
|
|
|
#!/usr/bin/env python3
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2019-06-14 16:33:30 +05:30
|
|
|
import os
|
2019-12-22 20:46:04 +05:30
|
|
|
import sys
|
2020-01-02 16:01:33 +05:30
|
|
|
from io import StringIO
|
2014-12-19 00:56:52 +05:30
|
|
|
from optparse import OptionParser
|
2019-06-14 16:33:30 +05:30
|
|
|
|
|
|
|
import vtk
|
2016-09-09 03:35:49 +05:30
|
|
|
from vtk.util import numpy_support
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2019-06-14 16:33:30 +05:30
|
|
|
import damask
|
|
|
|
|
|
|
|
|
2016-01-27 22:36:00 +05:30
|
|
|
scriptName = os.path.splitext(os.path.basename(__file__))[0]
|
|
|
|
scriptID = ' '.join([scriptName,damask.version])
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2019-06-14 16:33:30 +05:30
|
|
|
|
2014-12-19 00:56:52 +05:30
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
# --------------------------------------------------------------------
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-09-09 03:35:49 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption,
|
2019-02-17 02:50:10 +05:30
|
|
|
usage='%prog options [ASCIItable(s)]',
|
2019-12-22 20:46:04 +05:30
|
|
|
description = "Add scalars, vectors, tensors, and/or an RGB tuple from ASCIItable "
|
|
|
|
+ "VTK point cloud (.vtp).",
|
2016-09-09 03:35:49 +05:30
|
|
|
version = scriptID)
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
parser.add_option( '--vtk',
|
|
|
|
dest = 'vtk',
|
|
|
|
type = 'string', metavar = 'string',
|
2013-11-27 01:49:27 +05:30
|
|
|
help = 'VTK file name')
|
2016-04-14 03:33:40 +05:30
|
|
|
parser.add_option('-r', '--render',
|
|
|
|
dest = 'render',
|
|
|
|
action = 'store_true',
|
|
|
|
help = 'open output in VTK render window')
|
2016-09-15 05:29:26 +05:30
|
|
|
parser.add_option('-d', '--data',
|
|
|
|
dest = 'data',
|
2016-04-14 03:33:40 +05:30
|
|
|
action = 'extend', metavar = '<string LIST>',
|
2016-09-15 05:29:26 +05:30
|
|
|
help = 'scalar/vector value(s) label(s)')
|
2016-09-01 22:17:26 +05:30
|
|
|
parser.add_option('-t', '--tensor',
|
|
|
|
dest = 'tensor',
|
|
|
|
action = 'extend', metavar = '<string LIST>',
|
|
|
|
help = 'tensor (3x3) value label(s)')
|
2019-12-22 20:46:04 +05:30
|
|
|
parser.add_option('-c', '--color',
|
|
|
|
dest = 'color',
|
|
|
|
action = 'extend', metavar = '<string LIST>',
|
|
|
|
help = 'RGB color tuple label')
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-09-15 05:29:26 +05:30
|
|
|
parser.set_defaults(data = [],
|
2016-09-01 22:17:26 +05:30
|
|
|
tensor = [],
|
2016-04-14 03:33:40 +05:30
|
|
|
color = [],
|
|
|
|
)
|
2013-11-27 01:49:27 +05:30
|
|
|
|
|
|
|
(options, filenames) = parser.parse_args()
|
2019-12-22 20:46:04 +05:30
|
|
|
if filenames == []: filenames = [None]
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2019-12-22 20:46:04 +05:30
|
|
|
if not options.vtk: parser.error('No VTK file specified.')
|
2016-04-14 03:33:40 +05:30
|
|
|
if not os.path.exists(options.vtk): parser.error('VTK file does not exist.')
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2019-02-26 05:18:40 +05:30
|
|
|
vtk_file,vtk_ext = os.path.splitext(options.vtk)
|
|
|
|
|
|
|
|
if vtk_ext == '.vtp':
|
2016-04-19 00:38:29 +05:30
|
|
|
reader = vtk.vtkXMLPolyDataReader()
|
|
|
|
reader.SetFileName(options.vtk)
|
|
|
|
reader.Update()
|
|
|
|
Polydata = reader.GetOutput()
|
2019-02-26 05:18:40 +05:30
|
|
|
elif vtk_ext == '.vtk':
|
2016-04-19 00:38:29 +05:30
|
|
|
reader = vtk.vtkGenericDataObjectReader()
|
|
|
|
reader.SetFileName(options.vtk)
|
|
|
|
reader.Update()
|
|
|
|
Polydata = reader.GetPolyDataOutput()
|
|
|
|
else:
|
2017-08-17 00:48:29 +05:30
|
|
|
parser.error('unsupported VTK file type extension.')
|
2016-04-19 00:38:29 +05:30
|
|
|
|
|
|
|
Npoints = Polydata.GetNumberOfPoints()
|
|
|
|
Ncells = Polydata.GetNumberOfCells()
|
|
|
|
Nvertices = Polydata.GetNumberOfVerts()
|
2013-11-27 01:49:27 +05:30
|
|
|
|
|
|
|
if Npoints != Ncells or Npoints != Nvertices:
|
2017-08-17 00:48:29 +05:30
|
|
|
parser.error('number of points, cells, and vertices in VTK differ from each other.')
|
2016-04-14 03:33:40 +05:30
|
|
|
|
2017-08-17 00:48:29 +05:30
|
|
|
damask.util.croak('{}: {} points/vertices/cells...'.format(options.vtk,Npoints))
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
for name in filenames:
|
2019-12-22 20:46:04 +05:30
|
|
|
damask.util.report(scriptName,name)
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2019-12-22 20:46:04 +05:30
|
|
|
table = damask.Table.from_ASCII(StringIO(''.join(sys.stdin.read())) if name is None else name)
|
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
VTKarray = {}
|
2019-12-22 20:46:04 +05:30
|
|
|
for data in options.data:
|
|
|
|
VTKarray[data] = numpy_support.numpy_to_vtk(table.get(data).copy(),
|
|
|
|
deep=True,array_type=vtk.VTK_DOUBLE)
|
|
|
|
VTKarray[data].SetName(data)
|
|
|
|
|
|
|
|
for color in options.color:
|
|
|
|
VTKarray[color] = numpy_support.numpy_to_vtk((table.get(color)*255).astype(int).copy(),
|
|
|
|
deep=True,array_type=vtk.VTK_UNSIGNED_CHAR)
|
|
|
|
VTKarray[color].SetName(color)
|
|
|
|
|
|
|
|
for tensor in options.tensor:
|
|
|
|
data = damask.mechanics.symmetric(table.get(tensor).reshape((-1,3,3))).reshape((-1,9))
|
|
|
|
VTKarray[tensor] = numpy_support.numpy_to_vtk(data.copy(),
|
|
|
|
deep=True,array_type=vtk.VTK_DOUBLE)
|
|
|
|
VTKarray[tensor].SetName(tensor)
|
|
|
|
|
2013-11-27 01:49:27 +05:30
|
|
|
|
2020-01-02 16:01:33 +05:30
|
|
|
for data in VTKarray:
|
|
|
|
Polydata.GetPointData().AddArray(VTKarray[data])
|
2016-09-09 03:35:49 +05:30
|
|
|
Polydata.Modified()
|
|
|
|
|
2020-01-02 16:01:33 +05:30
|
|
|
# ------------------------------------------ output result ---------------------------------------
|
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
writer = vtk.vtkXMLPolyDataWriter()
|
|
|
|
writer.SetDataModeToBinary()
|
|
|
|
writer.SetCompressorTypeToZLib()
|
2019-03-09 05:10:50 +05:30
|
|
|
writer.SetFileName(vtk_file+'.'+writer.GetDefaultFileExtension())
|
2019-02-17 02:50:10 +05:30
|
|
|
writer.SetInputData(Polydata)
|
2016-04-14 03:33:40 +05:30
|
|
|
writer.Write()
|
|
|
|
|
2016-09-01 22:17:26 +05:30
|
|
|
# ------------------------------------------ render result ---------------------------------------
|
2016-04-14 03:33:40 +05:30
|
|
|
|
|
|
|
if options.render:
|
|
|
|
mapper = vtk.vtkDataSetMapper()
|
|
|
|
mapper.SetInputData(Polydata)
|
|
|
|
actor = vtk.vtkActor()
|
|
|
|
actor.SetMapper(mapper)
|
|
|
|
|
|
|
|
# Create the graphics structure. The renderer renders into the
|
2016-09-09 03:35:49 +05:30
|
|
|
# render window. The render window interactively captures mouse events
|
2016-04-14 03:33:40 +05:30
|
|
|
# and will perform appropriate camera or actor manipulation
|
|
|
|
# depending on the nature of the events.
|
|
|
|
|
|
|
|
ren = vtk.vtkRenderer()
|
|
|
|
|
|
|
|
renWin = vtk.vtkRenderWindow()
|
|
|
|
renWin.AddRenderer(ren)
|
|
|
|
|
|
|
|
ren.AddActor(actor)
|
|
|
|
ren.SetBackground(1, 1, 1)
|
|
|
|
renWin.SetSize(200, 200)
|
|
|
|
|
|
|
|
iren = vtk.vtkRenderWindowInteractor()
|
|
|
|
iren.SetRenderWindow(renWin)
|
2016-09-01 22:17:26 +05:30
|
|
|
|
2016-04-14 03:33:40 +05:30
|
|
|
iren.Initialize()
|
|
|
|
renWin.Render()
|
|
|
|
iren.Start()
|