Re: [Paraview] Writing XML VTK Binary files from C++

2017-12-03 Thread Stegmeier, Nicholas
k Olesen <mark.ole...@esi-group.com> Sent: Friday, December 1, 2017 1:34:58 AM To: Stegmeier, Nicholas; paraview@paraview.org Subject: Re: [Paraview] Writing XML VTK Binary files from C++ When you say "writing binary", you need to distinguish between three possibilities. 1) writing binary &q

Re: [Paraview] Writing XML VTK Binary files from C++

2017-12-01 Thread Stegmeier, Nicholas
sen Cc: Stegmeier, Nicholas; paraview@paraview.org Subject: Re: [Paraview] Writing XML VTK Binary files from C++ Another approach is to use VTK itself to write the files. Since VTK 6 it is straightforward to configure a VTK build consisting of only the IO/ParallelXML module and its required depend

Re: [Paraview] Writing XML VTK Binary files from C++

2017-12-01 Thread David E DeMarle
Another approach is to use VTK itself to write the files. Since VTK 6 it is straightforward to configure a VTK build consisting of only the IO/ParallelXML module and its required dependencies. To do so, in cmake, turn of testing, all groups and turn on Module_vtkIOParallelXML, and you should be

Re: [Paraview] Writing XML VTK Binary files from C++

2017-11-30 Thread Mark Olesen
When you say "writing binary", you need to distinguish between three possibilities. 1) writing binary "inline" (actually base64 encoded) 2) writing binary "append" (actually base64 encoded) 3) writing raw binary "append" (really raw binary) Since you already have ASCII writing working and its

[Paraview] Writing XML VTK Binary files from C++

2017-11-30 Thread Stegmeier, Nicholas
Hello, I am new to Paraview and C++ coming from a mostly mathematics background. I am emailing to get resources or help on writing binary XML VTK files from C++. I have finally succeeded in using the ASCII XML VTK format for a 2D rectilinear CFD application. My ".pvtr" file is shown below.