Dear all,
I have noticed that bview2D fails to load certain snapshots, such as the one attached, giving a "floating point exception" after some fields have been loaded.
Also, this is only related to some particular snapshots, as using an MRE of the kind works with no problem.
#include "navier-stokes/centered.h"
scalar s[];
int main () { init_grid (1 << 6); run(); }
event init (i = 0) {
foreach()
s[] = sqrt(sq(x)+sq(y));
}
event end_timestep (i = 1) { dump(); }
Has anyone else encountered this problem and maybe found a solution?
Thanks!
Riccardo