<P>
I have a very large Multi-block EnSight files (16 million cells, more than 2GB disk space) which I want to visualize using ParaView on a Linux cluster. Since paraview does not have a Parallel EnSight reader, it fails to read and load the file even while running on a parallel mode. So I have decided to write a small vtk script which will read the EnSight file and write it into an Exodus file. Here is the script for that<BR>
<BR>
import vtk<BR>
<BR>
reader = vtk.vtkEnSightGoldReader()<BR>
reader.SetCaseFileName(&quot;ensight.case&quot;)<BR>
reader.Update()<BR>
<BR>
writer = vtk.vtkExodusIIWriter()<BR>
writer.SetInputConnection(reader.GetOutputPort())<BR>
writer.SetFileName(&quot;exodus.ex2&quot;)<BR>
writer.Write()<BR>
<BR>
When I run the program I get the following error :<BR>
<BR>
raashid@ICC-PUNE-DSK-20:~/EnSight$ python ensight_exodus_old.py <BR>
ERROR: In /build/buildd/vtk-5.0.3/Filtering/vtkStreamingDemandDrivenPipeline.cxx, line 557<BR>
vtkStreamingDemandDrivenPipeline (0x81bf808): No maximum number of pieces has been set in the information for output port 0 on algorithm vtkEnSightGoldReader(0x82d6810).<BR>
<BR>
ERROR: In /build/buildd/vtk-5.0.3/Filtering/vtkStreamingDemandDrivenPipeline.cxx, line 557<BR>
vtkStreamingDemandDrivenPipeline (0x81bf808): No maximum number of pieces has been set in the information for output port 0 on algorithm vtkEnSightGoldReader(0x82d6810).<BR>
<BR>
Even though an exodus file is generated but the resulting geometry is incomplete. Please suggest me how to eliminate this error and convert the EnSight file properly.&nbsp; 
</P>
<br><br>
<Table border=0 Width=644 Height=57 cellspacing=0 cellpadding=0 style='font-family:Verdana;font-size:11px;line-height:15px;'><TR><td><a href='http://adworks.rediff.com/cgi-bin/AdWorks/click.cgi/www.rediff.com/signature-home.htm/1050715198@Middle5/2030902_2023692/2030754/1?PARTNER=3&OAS_QUERY=null' target=new ><img src ='http://imadworks.rediff.com/cgi-bin/AdWorks/adimage.cgi/2030902_2023692/creative_2030754.gif'  alt='Times Jobs'  border=0></a></td></TR></Table>