Re: [Paraview] Visualize quadratic multi cell type in a model

2013-07-30 Thread Marco Nawijn
I was just wondering if there is a reason why the XDMF celltype codes are not the same as the ones for VTK? For example in VTK (through the python interface) I get for the quadratic triangle cell type the following: >>> from vtk import * >>> t = vtkQuadraticTriangle() >>> t.GetNumberOfPoints() 6L

Re: [Paraview] Visualize quadratic multi cell type in a model

2013-07-30 Thread Felipe Bordeu Weldt
from ./VTK/ThirdParty/xdmf2/vtkxdmf2/libsrc/XdmfTopology.h // Topologies #define XDMF_NOTOPOLOGY 0x0 #define XDMF_POLYVERTEX 0x1 #define XDMF_POLYLINE 0x2 #define XDMF_POLYGON0x3 #define XDMF_TRI0x4 #define XDMF_QUAD 0x5 #define XDMF_TET0x6

[Paraview] Visualize quadratic multi cell type in a model

2013-07-29 Thread Babak Poursartip
Hello, I would like to visualize a model which has a mixture of quadratic elements "Quad_8" and "Tri_6" in it. I use the following lines for "linear elements" and everything is fine, but the case of "Quadratic elements" it does not work. 6 0 1 2 7 3 4 4 5 6 7 9 8 9 10 11 12 13 14 15 from: h