HI. I have this code on c++.
File file("poisson.vtu");
while (t <= te)
{
solve(a==L, u, bcs);
file << u;
u0 = u;
t = t + dt;
}
In each iteration fenics create new file poisson_p0_000000.vtu, poisson_p0_000001.vtu and etc. How i can overwrite poisson_p0_000000.vtu in each step and don't create new files?