[vtk-developers] convert unstructured grid data to exodusII

张江 zhangjiang.dudu at gmail.com
Sat Jun 25 00:42:40 EDT 2016


Hi,

Currently I want to convert an unstructured grid data to exodusII format. The input unstructured grid data has a cell type of wedge.
But when I execute the following code, the output data contains TETRA cell type. Can anybody explain this? 

vtkUnstructuredGridReader *reader = vtkUnstructuredGridReader::New();
reader->SetFileName(“input.vtk");
  
reader->Update();

vtkUnstructuredGrid *grid = reader->GetOutput();

vtkExodusIIWriter *writer = vtkExodusIIWriter::New();
writer->SetInputData(grid);
writer->SetFileName(“output.e");
writer->Write();
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://public.kitware.com/pipermail/vtk-developers/attachments/20160624/13d6c26e/attachment-0001.html>


More information about the vtk-developers mailing list