> 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
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
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
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