Re: [Libmesh-users] Exodus_IO::write_timestep() and refinement

2016-02-11 Thread Paul T. Bauman
On Thu, Feb 11, 2016 at 2:57 PM, Salazar De Troya, Miguel < salazardet...@llnl.gov> wrote: > Hello > > Does Exodus_IO::write_timestep() support writing on the same file after a > refinement half through the simulation? For instance, doing this: > > ExodusII_IO exio(mesh); > for (unsigned int i_st

Re: [Libmesh-users] Exodus_IO::write_timestep() and refinement

2016-02-11 Thread John Peterson
On Thu, Feb 11, 2016 at 12:57 PM, Salazar De Troya, Miguel < salazardet...@llnl.gov> wrote: > Hello > > Does Exodus_IO::write_timestep() support writing on the same file after a > refinement half through the simulation? For instance, doing this: > No, you can only write a single mesh per Exodus

[Libmesh-users] Exodus_IO::write_timestep() and refinement

2016-02-11 Thread Salazar De Troya, Miguel
Hello Does Exodus_IO::write_timestep() support writing on the same file after a refinement half through the simulation? For instance, doing this: ExodusII_IO exio(mesh); for (unsigned int i_step = 0; i_step<100; i_step) { exio.write_timestep("transient_data.exo", eq_sys, i_step, i_step*.01);