From: robert <rob...@un...> - 2012-06-07 15:07:55
|
But you're right, just installed paraview on a lab-computer and there it worked fine. thanks On 06/07/2012 04:47 PM, Paul T. Bauman wrote: > On Thu, Jun 7, 2012 at 9:42 AM, robert <rob...@un... > <mailto:rob...@un...>> wrote: > > is there a size limit for writing exodus files and reading them with > paraview? > > > To my knowledge, you are only limited by the memory on your computer. > I've used ParaView to visualize solutions with 20+ variables and > several million elements on my laptop no problem. > > TetGenIO TG(mesh); > TG.read ("main_ldio.1.ele"); > mesh.write("tryfunwrite.e"); > > > The code is incomplete, but you're writing the mesh (which I'm > assuming is a Mesh object) and that will be written in ``libMesh" > format. If you want Exodus, you need to use an ExodusII object. > > Paul |