Re: [Libmesh-users] Problem when dumping an adaptive mesh into VTK files

2016-07-10 Thread John Peterson
> On Jul 10, 2016, at 8:37 AM, Junchao Zhang wrote: > > I did use unique names. I followed libmesh examples and used > > file_name << "out." > << std::setw(3) > << std::setfill('0') > << std::right > << t

Re: [Libmesh-users] Problem when dumping an adaptive mesh into VTK files

2016-07-10 Thread Junchao Zhang
I did use unique names. I followed libmesh examples and used file_name << "out." << std::setw(3) << std::setfill('0') << std::right << t_step+1 << ".vtk"; Inspired by your reply, I avoided using dot in file

Re: [Libmesh-users] Problem when dumping an adaptive mesh into VTK files

2016-07-09 Thread John Peterson
On Thu, Jul 7, 2016 at 4:29 PM, Junchao Zhang wrote: > I called VTKIO(mesh).write_equation_systems (file_name.str(), > equation_systems) in a libmesh example code to dump an adaptive mesh with > solutions to VTK files. I ran three time steps and dumped the mesh every > time step. I got those file

[Libmesh-users] Problem when dumping an adaptive mesh into VTK files

2016-07-07 Thread Junchao Zhang
I called VTKIO(mesh).write_equation_systems (file_name.str(), equation_systems) in a libmesh example code to dump an adaptive mesh with solutions to VTK files. I ran three time steps and dumped the mesh every time step. I got those files out.001.pvtu out.002.pvtu out.003.pvtu out_0.vtu I am not s